diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d5940a908..33da1b0bcd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Logs +## v1.0.53 +* Refreshes the terraform module to be in sync with the latest Cisco Intersight model (build 18012) + ## v1.0.52 * Refreshes the terraform module to be in sync with the latest Cisco Intersight model (build 17956) diff --git a/GNUmakefile b/GNUmakefile index 2c02f4f88f..617b49f85d 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,5 +1,5 @@ PKG_NAME=intersight -VERSION=1.0.52 +VERSION=1.0.53 TEST?=$$(go list ./... |grep -v 'vendor') GOFMT_FILES?=$$(find . -name '*.go' |grep -v vendor) WEBSITE_REPO=github.com/hashicorp/terraform-website diff --git a/examples/sample_modules/os_install/main.tf b/examples/sample_modules/os_install/main.tf index b67a65a3fe..f18991da0a 100644 --- a/examples/sample_modules/os_install/main.tf +++ b/examples/sample_modules/os_install/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { intersight = { source = "CiscoDevNet/intersight" - version = "1.0.52" + version = "1.0.53" } } } diff --git a/examples/sample_modules/server_configurations/main.tf b/examples/sample_modules/server_configurations/main.tf index 1f4655b0f7..648f440bfa 100644 --- a/examples/sample_modules/server_configurations/main.tf +++ b/examples/sample_modules/server_configurations/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { intersight = { source = "CiscoDevNet/intersight" - version = "1.0.52" + version = "1.0.53" } } } diff --git a/examples/sample_modules/server_deployment/main.tf b/examples/sample_modules/server_deployment/main.tf index 27f346b8ee..b89f59b419 100644 --- a/examples/sample_modules/server_deployment/main.tf +++ b/examples/sample_modules/server_deployment/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { intersight = { source = "CiscoDevNet/intersight" - version = "1.0.52" + version = "1.0.53" } } } diff --git a/intersight/data_source_intersight_network_element_summary.go b/intersight/data_source_intersight_network_element_summary.go index f6963d2c92..d69d63c67b 100644 --- a/intersight/data_source_intersight_network_element_summary.go +++ b/intersight/data_source_intersight_network_element_summary.go @@ -637,6 +637,11 @@ func getNetworkElementSummarySchema() map[string]*schema.Schema { Type: schema.TypeInt, Optional: true, }, + "user_label": { + Description: "The user defined label assigned to the server.", + Type: schema.TypeString, + Optional: true, + }, "vendor": { Description: "This field identifies the vendor of the given component.", Type: schema.TypeString, @@ -1425,6 +1430,11 @@ func dataSourceNetworkElementSummaryRead(c context.Context, d *schema.ResourceDa o.SetTotalMemory(x) } + if v, ok := d.GetOk("user_label"); ok { + x := (v.(string)) + o.SetUserLabel(x) + } + if v, ok := d.GetOk("vendor"); ok { x := (v.(string)) o.SetVendor(x) @@ -1632,6 +1642,7 @@ func dataSourceNetworkElementSummaryRead(c context.Context, d *schema.ResourceDa temp["tags"] = flattenListMoTag(s.GetTags(), d) temp["thermal"] = (s.GetThermal()) temp["total_memory"] = (s.GetTotalMemory()) + temp["user_label"] = (s.GetUserLabel()) temp["vendor"] = (s.GetVendor()) temp["nr_version"] = (s.GetVersion()) diff --git a/intersight/flatten_functions.go b/intersight/flatten_functions.go index 0e9a05661d..70517a05f3 100644 --- a/intersight/flatten_functions.go +++ b/intersight/flatten_functions.go @@ -16892,7 +16892,7 @@ func flattenMapKubernetesProxyConfig(p models.KubernetesProxyConfig, d *schema.R kubernetesproxyconfig["hostname"] = item.GetHostname() kubernetesproxyconfig["is_password_set"] = item.GetIsPasswordSet() kubernetesproxyconfig["object_type"] = item.GetObjectType() - password_x, exists := d.GetOk("docker_http_proxy") + password_x, exists := d.GetOk("http_proxy") if exists && password_x != nil { password_y := password_x.([]interface{})[0].(map[string]interface{}) kubernetesproxyconfig["password"] = password_y["password"] diff --git a/intersight/resource_intersight_workflow_template_parser.go b/intersight/resource_intersight_workflow_template_parser.go index b8cdc3158c..cc16418413 100644 --- a/intersight/resource_intersight_workflow_template_parser.go +++ b/intersight/resource_intersight_workflow_template_parser.go @@ -468,9 +468,9 @@ func resourceWorkflowTemplateParser() *schema.Resource { ForceNew: true, }, "label": { - Description: "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 have an alphanumeric character.", + Description: "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 (/), round parenthesis ( () ), or an underscore (_) and must have an alphanumeric character.", Type: schema.TypeString, - ValidateFunc: validation.StringMatch(regexp.MustCompile("^[a-zA-Z0-9]+[+\\s\\/a-zA-Z0-9_'.:-]{0,92}$"), ""), + ValidateFunc: validation.StringMatch(regexp.MustCompile("^[a-zA-Z0-9]+[+\\s\\/a-zA-Z0-9)(_'.:-]{0,92}$"), ""), Optional: true, ForceNew: true, }, @@ -482,9 +482,9 @@ func resourceWorkflowTemplateParser() *schema.Resource { ForceNew: true, }, "value": { - Description: "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 (_).", + Description: "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 ( ), round parenthesis ( () ), forward slash (/), or an underscore (_).", Type: schema.TypeString, - ValidateFunc: validation.StringMatch(regexp.MustCompile("^[a-zA-Z0-9_.:-]*[+\\s\\/a-zA-Z0-9_.:-]{1,64}$"), ""), + ValidateFunc: validation.StringMatch(regexp.MustCompile("^[a-zA-Z0-9_.:-]*[+\\s\\/a-zA-Z0-9)(_.:-]{1,64}$"), ""), Optional: true, ForceNew: true, }, diff --git a/intersight_gosdk/.openapi-generator/VERSION b/intersight_gosdk/.openapi-generator/VERSION index 7e7b8b9bc7..17f2442ff3 100644 --- a/intersight_gosdk/.openapi-generator/VERSION +++ b/intersight_gosdk/.openapi-generator/VERSION @@ -1 +1 @@ -7.7.0-SNAPSHOT +7.9.0-SNAPSHOT diff --git a/intersight_gosdk/README.md b/intersight_gosdk/README.md index 8582f2acf9..7f7461739d 100644 --- a/intersight_gosdk/README.md +++ b/intersight_gosdk/README.md @@ -22,9 +22,9 @@ Some generated SDKs perform a strict validation of the HTTP response body agains ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 1.0.11-17956 -- Package version: 1.0.11.17956 -- Generator version: 7.7.0-SNAPSHOT +- API version: 1.0.11-18012 +- Package version: 1.0.11.18012 +- Generator version: 7.9.0-SNAPSHOT - Build package: org.openapitools.codegen.languages.GoClientCodegen For more information, please visit [https://intersight.com/help](https://intersight.com/help) diff --git a/intersight_gosdk/api/openapi.yaml b/intersight_gosdk/api/openapi.yaml index 4f1af2d4f1..e4a16139bb 100644 --- a/intersight_gosdk/api/openapi.yaml +++ b/intersight_gosdk/api/openapi.yaml @@ -26,7 +26,7 @@ info: name: "Apache License, Version 2.0" url: https://www.apache.org/licenses/LICENSE-2.0.html title: Cisco Intersight - version: 1.0.11-17956 + version: 1.0.11-18012 externalDocs: description: Online documentation for the Intersight APIs url: /apidocs @@ -738731,6 +738731,7 @@ components: asset.VirtualizationAmazonWebServiceOptions: allOf: - $ref: '#/components/schemas/asset.VirtualizationCloudOptions' + deprecated: true description: Captures Virtualization Service configuration specific to AWS. title: Asset:Virtualization Amazon Web Service Options x-allOf-name: asset.VirtualizationAmazonWebServiceOptions @@ -738783,6 +738784,7 @@ components: asset.VirtualizationService: allOf: - $ref: '#/components/schemas/asset.Service' + deprecated: true description: The necessary configuration details to enable Intersight Virtualization features on the selected managed target. title: Asset:Virtualization Service @@ -899007,6 +899009,11 @@ components: readOnly: true type: integer x-omitempty: true + UserLabel: + description: The user defined label assigned to the server. + readOnly: true + type: string + x-omitempty: true Vendor: description: This field identifies the vendor of the given component. readOnly: true @@ -899120,6 +899127,7 @@ components: ObjectType: network.ElementSummary InbandIpAddress: InbandIpAddress SwitchProfileName: SwitchProfileName + UserLabel: UserLabel InterClusterLinkState: Unknown EthernetMode: EthernetMode IsUpgraded: true @@ -1025893,17 +1025901,18 @@ components: description: "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 have an\ - \ alphanumeric character." - pattern: "^[a-zA-Z0-9]+[+\\s\\/a-zA-Z0-9_'.:-]{0,92}$" + \ quote ('), forward slash (/), round parenthesis ( () ), or an underscore\ + \ (_) and must have an alphanumeric character." + pattern: "^[a-zA-Z0-9]+[+\\s\\/a-zA-Z0-9)(_'.:-]{0,92}$" type: string x-omitempty: true Value: description: "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 (_)." - pattern: "^[a-zA-Z0-9_.:-]*[+\\s\\/a-zA-Z0-9_.:-]{1,64}$" + \ space ( ), round parenthesis ( () ), forward slash (/), or an underscore\ + \ (_)." + pattern: "^[a-zA-Z0-9_.:-]*[+\\s\\/a-zA-Z0-9)(_.:-]{1,64}$" type: string x-omitempty: true required: @@ -1032287,6 +1032296,15 @@ components: minItems: 1 nullable: true type: array + PlatformType: + items: + description: Platform Type property defines target device type. Type + must match the enumerations supported for platform types. + readOnly: true + type: string + x-omitempty: true + nullable: true + type: array Selector: description: Field to hold an Intersight API along with an optional filter to narrow down the search options for target device. diff --git a/intersight_gosdk/api_aaa.go b/intersight_gosdk/api_aaa.go index ec0c5e85b7..3a447495ae 100644 --- a/intersight_gosdk/api_aaa.go +++ b/intersight_gosdk/api_aaa.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *AaaApiService) CreateAaaRetentionPolicyExecute(r ApiCreateAaaRetentionP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.aaaRetentionPolicy @@ -481,52 +481,52 @@ func (a *AaaApiService) GetAaaAuditRecordListExecute(r ApiGetAaaAuditRecordListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -910,52 +910,52 @@ func (a *AaaApiService) GetAaaRetentionConfigListExecute(r ApiGetAaaRetentionCon localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1339,52 +1339,52 @@ func (a *AaaApiService) GetAaaRetentionPolicyListExecute(r ApiGetAaaRetentionPol localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1575,7 +1575,7 @@ func (a *AaaApiService) PatchAaaRetentionPolicyExecute(r ApiPatchAaaRetentionPol localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.aaaRetentionPolicy @@ -1751,7 +1751,7 @@ func (a *AaaApiService) UpdateAaaRetentionPolicyExecute(r ApiUpdateAaaRetentionP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.aaaRetentionPolicy diff --git a/intersight_gosdk/api_access.go b/intersight_gosdk/api_access.go index ab90bad64f..ce8290ec40 100644 --- a/intersight_gosdk/api_access.go +++ b/intersight_gosdk/api_access.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *AccessApiService) CreateAccessPolicyExecute(r ApiCreateAccessPolicyRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.accessPolicy @@ -623,52 +623,52 @@ func (a *AccessApiService) GetAccessIpAddressListExecute(r ApiGetAccessIpAddress localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1206,52 +1206,52 @@ func (a *AccessApiService) GetAccessPolicyInventoryListExecute(r ApiGetAccessPol localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1481,52 +1481,52 @@ func (a *AccessApiService) GetAccessPolicyListExecute(r ApiGetAccessPolicyListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1717,7 +1717,7 @@ func (a *AccessApiService) PatchAccessPolicyExecute(r ApiPatchAccessPolicyReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.accessPolicy @@ -1893,7 +1893,7 @@ func (a *AccessApiService) UpdateAccessPolicyExecute(r ApiUpdateAccessPolicyRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.accessPolicy diff --git a/intersight_gosdk/api_adapter.go b/intersight_gosdk/api_adapter.go index 668de4a698..53ec3ebdc7 100644 --- a/intersight_gosdk/api_adapter.go +++ b/intersight_gosdk/api_adapter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *AdapterApiService) CreateAdapterConfigPolicyExecute(r ApiCreateAdapterC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.adapterConfigPolicy @@ -623,52 +623,52 @@ func (a *AdapterApiService) GetAdapterConfigPolicyListExecute(r ApiGetAdapterCon localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *AdapterApiService) GetAdapterExtEthInterfaceListExecute(r ApiGetAdapter localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1481,52 +1481,52 @@ func (a *AdapterApiService) GetAdapterHostEthInterfaceListExecute(r ApiGetAdapte localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1910,52 +1910,52 @@ func (a *AdapterApiService) GetAdapterHostFcInterfaceListExecute(r ApiGetAdapter localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2339,52 +2339,52 @@ func (a *AdapterApiService) GetAdapterHostIscsiInterfaceListExecute(r ApiGetAdap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2922,52 +2922,52 @@ func (a *AdapterApiService) GetAdapterUnitExpanderListExecute(r ApiGetAdapterUni localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3197,52 +3197,52 @@ func (a *AdapterApiService) GetAdapterUnitListExecute(r ApiGetAdapterUnitListReq localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3433,7 +3433,7 @@ func (a *AdapterApiService) PatchAdapterConfigPolicyExecute(r ApiPatchAdapterCon localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.adapterConfigPolicy @@ -3609,7 +3609,7 @@ func (a *AdapterApiService) PatchAdapterHostEthInterfaceExecute(r ApiPatchAdapte localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.adapterHostEthInterface @@ -3785,7 +3785,7 @@ func (a *AdapterApiService) PatchAdapterHostFcInterfaceExecute(r ApiPatchAdapter localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.adapterHostFcInterface @@ -3961,7 +3961,7 @@ func (a *AdapterApiService) UpdateAdapterConfigPolicyExecute(r ApiUpdateAdapterC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.adapterConfigPolicy @@ -4137,7 +4137,7 @@ func (a *AdapterApiService) UpdateAdapterHostEthInterfaceExecute(r ApiUpdateAdap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.adapterHostEthInterface @@ -4313,7 +4313,7 @@ func (a *AdapterApiService) UpdateAdapterHostFcInterfaceExecute(r ApiUpdateAdapt localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.adapterHostFcInterface diff --git a/intersight_gosdk/api_apic.go b/intersight_gosdk/api_apic.go index 4bef7cdef3..7ba1a82bd8 100644 --- a/intersight_gosdk/api_apic.go +++ b/intersight_gosdk/api_apic.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *ApicApiService) GetApicAciPodListExecute(r ApiGetApicAciPodListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -882,52 +882,52 @@ func (a *ApicApiService) GetApicApplicationEndpointGroupListExecute(r ApiGetApic localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *ApicApiService) GetApicApplicationListExecute(r ApiGetApicApplicationLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1586,52 +1586,52 @@ func (a *ApicApiService) GetApicBridgeDomainListExecute(r ApiGetApicBridgeDomain localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2015,52 +2015,52 @@ func (a *ApicApiService) GetApicExternalRoutedLayerThreeDomainListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2598,52 +2598,52 @@ func (a *ApicApiService) GetApicFabricLeafNodeInterfaceListExecute(r ApiGetApicF localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2873,52 +2873,52 @@ func (a *ApicApiService) GetApicFabricLeafNodeListExecute(r ApiGetApicFabricLeaf localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3302,52 +3302,52 @@ func (a *ApicApiService) GetApicOutListExecute(r ApiGetApicOutListRequest) (*Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3731,52 +3731,52 @@ func (a *ApicApiService) GetApicSubnetListExecute(r ApiGetApicSubnetListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4160,52 +4160,52 @@ func (a *ApicApiService) GetApicTenantListExecute(r ApiGetApicTenantListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4589,52 +4589,52 @@ func (a *ApicApiService) GetApicVpcGroupListExecute(r ApiGetApicVpcGroupListRequ localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5018,52 +5018,52 @@ func (a *ApicApiService) GetApicVrfsListExecute(r ApiGetApicVrfsListRequest) (*A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/intersight_gosdk/api_appliance.go b/intersight_gosdk/api_appliance.go index fbaa5364f4..a3f846421f 100644 --- a/intersight_gosdk/api_appliance.go +++ b/intersight_gosdk/api_appliance.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *ApplianceApiService) CreateApplianceAutoRmaPolicyExecute(r ApiCreateApp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.applianceAutoRmaPolicy @@ -291,10 +291,10 @@ func (a *ApplianceApiService) CreateApplianceBackupExecute(r ApiCreateApplianceB localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.applianceBackup @@ -473,10 +473,10 @@ func (a *ApplianceApiService) CreateApplianceBackupPolicyExecute(r ApiCreateAppl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.applianceBackupPolicy @@ -655,10 +655,10 @@ func (a *ApplianceApiService) CreateApplianceClusterInfoExecute(r ApiCreateAppli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.applianceClusterInfo @@ -837,10 +837,10 @@ func (a *ApplianceApiService) CreateApplianceClusterReplaceNodeExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.applianceClusterReplaceNode @@ -1019,10 +1019,10 @@ func (a *ApplianceApiService) CreateApplianceDataExportPolicyExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.applianceDataExportPolicy @@ -1201,10 +1201,10 @@ func (a *ApplianceApiService) CreateApplianceDeviceClaimExecute(r ApiCreateAppli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.applianceDeviceClaim @@ -1383,10 +1383,10 @@ func (a *ApplianceApiService) CreateApplianceDiagSettingExecute(r ApiCreateAppli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.applianceDiagSetting @@ -1565,10 +1565,10 @@ func (a *ApplianceApiService) CreateApplianceExternalSyslogSettingExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.applianceExternalSyslogSetting @@ -1747,10 +1747,10 @@ func (a *ApplianceApiService) CreateApplianceRemoteFileImportExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.applianceRemoteFileImport @@ -1929,10 +1929,10 @@ func (a *ApplianceApiService) CreateApplianceRestoreExecute(r ApiCreateAppliance localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.applianceRestore @@ -3011,52 +3011,52 @@ func (a *ApplianceApiService) GetApplianceAppOpStatusListExecute(r ApiGetApplian localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3440,52 +3440,52 @@ func (a *ApplianceApiService) GetApplianceAppStatusListExecute(r ApiGetAppliance localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3869,52 +3869,52 @@ func (a *ApplianceApiService) GetApplianceAutoRmaPolicyListExecute(r ApiGetAppli localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4298,52 +4298,52 @@ func (a *ApplianceApiService) GetApplianceBackupListExecute(r ApiGetApplianceBac localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4727,52 +4727,52 @@ func (a *ApplianceApiService) GetApplianceBackupMonitorListExecute(r ApiGetAppli localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5156,52 +5156,52 @@ func (a *ApplianceApiService) GetApplianceBackupPolicyListExecute(r ApiGetApplia localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5585,52 +5585,52 @@ func (a *ApplianceApiService) GetApplianceBackupRotateDataListExecute(r ApiGetAp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6014,52 +6014,52 @@ func (a *ApplianceApiService) GetApplianceCertificateSettingListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6443,52 +6443,52 @@ func (a *ApplianceApiService) GetApplianceClusterInfoListExecute(r ApiGetApplian localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6872,52 +6872,52 @@ func (a *ApplianceApiService) GetApplianceClusterInstallListExecute(r ApiGetAppl localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7301,52 +7301,52 @@ func (a *ApplianceApiService) GetApplianceClusterReplaceNodeListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7730,52 +7730,52 @@ func (a *ApplianceApiService) GetApplianceDataExportPolicyListExecute(r ApiGetAp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8159,52 +8159,52 @@ func (a *ApplianceApiService) GetApplianceDeviceCertificateListExecute(r ApiGetA localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8588,52 +8588,52 @@ func (a *ApplianceApiService) GetApplianceDeviceClaimListExecute(r ApiGetApplian localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9017,52 +9017,52 @@ func (a *ApplianceApiService) GetApplianceDeviceClusterInstallListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9446,52 +9446,52 @@ func (a *ApplianceApiService) GetApplianceDeviceStateListExecute(r ApiGetApplian localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9875,52 +9875,52 @@ func (a *ApplianceApiService) GetApplianceDeviceUpgradePolicyListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10304,52 +10304,52 @@ func (a *ApplianceApiService) GetApplianceDiagSettingListExecute(r ApiGetApplian localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10733,52 +10733,52 @@ func (a *ApplianceApiService) GetApplianceExternalSyslogSettingListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11162,52 +11162,52 @@ func (a *ApplianceApiService) GetApplianceFileGatewayListExecute(r ApiGetApplian localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11591,52 +11591,52 @@ func (a *ApplianceApiService) GetApplianceFileSystemOpStatusListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12020,52 +12020,52 @@ func (a *ApplianceApiService) GetApplianceFileSystemStatusListExecute(r ApiGetAp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12449,52 +12449,52 @@ func (a *ApplianceApiService) GetApplianceGroupOpStatusListExecute(r ApiGetAppli localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12878,52 +12878,52 @@ func (a *ApplianceApiService) GetApplianceGroupStatusListExecute(r ApiGetApplian localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13307,52 +13307,52 @@ func (a *ApplianceApiService) GetApplianceImageBundleListExecute(r ApiGetApplian localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13736,52 +13736,52 @@ func (a *ApplianceApiService) GetApplianceMetaManifestListExecute(r ApiGetApplia localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14165,52 +14165,52 @@ func (a *ApplianceApiService) GetApplianceMetricsConfigListExecute(r ApiGetAppli localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14594,52 +14594,52 @@ func (a *ApplianceApiService) GetApplianceNetworkLinkStatusListExecute(r ApiGetA localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15023,52 +15023,52 @@ func (a *ApplianceApiService) GetApplianceNodeInfoListExecute(r ApiGetApplianceN localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15452,52 +15452,52 @@ func (a *ApplianceApiService) GetApplianceNodeOpStatusListExecute(r ApiGetApplia localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15881,52 +15881,52 @@ func (a *ApplianceApiService) GetApplianceNodeStatusListExecute(r ApiGetApplianc localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16318,52 +16318,52 @@ func (a *ApplianceApiService) GetApplianceReleaseNoteListExecute(r ApiGetApplian localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16747,52 +16747,52 @@ func (a *ApplianceApiService) GetApplianceRemoteFileImportListExecute(r ApiGetAp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17176,52 +17176,52 @@ func (a *ApplianceApiService) GetApplianceRestoreListExecute(r ApiGetApplianceRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17605,52 +17605,52 @@ func (a *ApplianceApiService) GetApplianceSetupInfoListExecute(r ApiGetAppliance localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18034,52 +18034,52 @@ func (a *ApplianceApiService) GetApplianceSystemInfoListExecute(r ApiGetApplianc localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18463,52 +18463,52 @@ func (a *ApplianceApiService) GetApplianceSystemOpStatusListExecute(r ApiGetAppl localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18892,52 +18892,52 @@ func (a *ApplianceApiService) GetApplianceSystemStatusListExecute(r ApiGetApplia localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19321,52 +19321,52 @@ func (a *ApplianceApiService) GetApplianceUpgradeListExecute(r ApiGetApplianceUp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19750,52 +19750,52 @@ func (a *ApplianceApiService) GetApplianceUpgradePolicyListExecute(r ApiGetAppli localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20179,52 +20179,52 @@ func (a *ApplianceApiService) GetApplianceUpgradeTrackerListExecute(r ApiGetAppl localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20415,7 +20415,7 @@ func (a *ApplianceApiService) PatchApplianceAutoRmaPolicyExecute(r ApiPatchAppli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceAutoRmaPolicy @@ -20591,7 +20591,7 @@ func (a *ApplianceApiService) PatchApplianceBackupPolicyExecute(r ApiPatchApplia localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceBackupPolicy @@ -20767,7 +20767,7 @@ func (a *ApplianceApiService) PatchApplianceCertificateSettingExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceCertificateSetting @@ -20943,7 +20943,7 @@ func (a *ApplianceApiService) PatchApplianceClusterInfoExecute(r ApiPatchApplian localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceClusterInfo @@ -21119,7 +21119,7 @@ func (a *ApplianceApiService) PatchApplianceClusterInstallExecute(r ApiPatchAppl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceClusterInstall @@ -21295,7 +21295,7 @@ func (a *ApplianceApiService) PatchApplianceClusterReplaceNodeExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceClusterReplaceNode @@ -21471,7 +21471,7 @@ func (a *ApplianceApiService) PatchApplianceDataExportPolicyExecute(r ApiPatchAp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceDataExportPolicy @@ -21647,7 +21647,7 @@ func (a *ApplianceApiService) PatchApplianceDeviceClaimExecute(r ApiPatchApplian localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceDeviceClaim @@ -21823,7 +21823,7 @@ func (a *ApplianceApiService) PatchApplianceDeviceUpgradePolicyExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceDeviceUpgradePolicy @@ -21999,7 +21999,7 @@ func (a *ApplianceApiService) PatchApplianceDiagSettingExecute(r ApiPatchApplian localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceDiagSetting @@ -22175,7 +22175,7 @@ func (a *ApplianceApiService) PatchApplianceExternalSyslogSettingExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceExternalSyslogSetting @@ -22351,7 +22351,7 @@ func (a *ApplianceApiService) PatchApplianceMetricsConfigExecute(r ApiPatchAppli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceMetricsConfig @@ -22527,7 +22527,7 @@ func (a *ApplianceApiService) PatchApplianceSetupInfoExecute(r ApiPatchAppliance localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceSetupInfo @@ -22703,7 +22703,7 @@ func (a *ApplianceApiService) PatchApplianceUpgradeExecute(r ApiPatchApplianceUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceUpgrade @@ -22879,7 +22879,7 @@ func (a *ApplianceApiService) PatchApplianceUpgradePolicyExecute(r ApiPatchAppli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceUpgradePolicy @@ -23055,7 +23055,7 @@ func (a *ApplianceApiService) UpdateApplianceAutoRmaPolicyExecute(r ApiUpdateApp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceAutoRmaPolicy @@ -23231,7 +23231,7 @@ func (a *ApplianceApiService) UpdateApplianceBackupPolicyExecute(r ApiUpdateAppl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceBackupPolicy @@ -23407,7 +23407,7 @@ func (a *ApplianceApiService) UpdateApplianceCertificateSettingExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceCertificateSetting @@ -23583,7 +23583,7 @@ func (a *ApplianceApiService) UpdateApplianceClusterInfoExecute(r ApiUpdateAppli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceClusterInfo @@ -23759,7 +23759,7 @@ func (a *ApplianceApiService) UpdateApplianceClusterInstallExecute(r ApiUpdateAp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceClusterInstall @@ -23935,7 +23935,7 @@ func (a *ApplianceApiService) UpdateApplianceClusterReplaceNodeExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceClusterReplaceNode @@ -24111,7 +24111,7 @@ func (a *ApplianceApiService) UpdateApplianceDataExportPolicyExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceDataExportPolicy @@ -24287,7 +24287,7 @@ func (a *ApplianceApiService) UpdateApplianceDeviceClaimExecute(r ApiUpdateAppli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceDeviceClaim @@ -24463,7 +24463,7 @@ func (a *ApplianceApiService) UpdateApplianceDeviceUpgradePolicyExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceDeviceUpgradePolicy @@ -24639,7 +24639,7 @@ func (a *ApplianceApiService) UpdateApplianceDiagSettingExecute(r ApiUpdateAppli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceDiagSetting @@ -24815,7 +24815,7 @@ func (a *ApplianceApiService) UpdateApplianceExternalSyslogSettingExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceExternalSyslogSetting @@ -24991,7 +24991,7 @@ func (a *ApplianceApiService) UpdateApplianceMetricsConfigExecute(r ApiUpdateApp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceMetricsConfig @@ -25167,7 +25167,7 @@ func (a *ApplianceApiService) UpdateApplianceSetupInfoExecute(r ApiUpdateApplian localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceSetupInfo @@ -25343,7 +25343,7 @@ func (a *ApplianceApiService) UpdateApplianceUpgradeExecute(r ApiUpdateAppliance localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceUpgrade @@ -25519,7 +25519,7 @@ func (a *ApplianceApiService) UpdateApplianceUpgradePolicyExecute(r ApiUpdateApp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceUpgradePolicy diff --git a/intersight_gosdk/api_asset.go b/intersight_gosdk/api_asset.go index 6a4a3e07da..e61f89a84e 100644 --- a/intersight_gosdk/api_asset.go +++ b/intersight_gosdk/api_asset.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *AssetApiService) CreateAssetDeviceClaimExecute(r ApiCreateAssetDeviceCl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.assetDeviceClaim @@ -291,10 +291,10 @@ func (a *AssetApiService) CreateAssetDeviceContractNotificationExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.assetDeviceContractNotification @@ -473,10 +473,10 @@ func (a *AssetApiService) CreateAssetTargetExecute(r ApiCreateAssetTargetRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.assetTarget @@ -2123,52 +2123,52 @@ func (a *AssetApiService) GetAssetClusterMemberListExecute(r ApiGetAssetClusterM localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2706,52 +2706,52 @@ func (a *AssetApiService) GetAssetDeploymentDeviceListExecute(r ApiGetAssetDeplo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2981,52 +2981,52 @@ func (a *AssetApiService) GetAssetDeploymentListExecute(r ApiGetAssetDeploymentL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3410,52 +3410,52 @@ func (a *AssetApiService) GetAssetDeviceConfigurationListExecute(r ApiGetAssetDe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3839,52 +3839,52 @@ func (a *AssetApiService) GetAssetDeviceConnectorManagerListExecute(r ApiGetAsse localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4268,52 +4268,52 @@ func (a *AssetApiService) GetAssetDeviceContractInformationListExecute(r ApiGetA localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4697,52 +4697,52 @@ func (a *AssetApiService) GetAssetDeviceRegistrationListExecute(r ApiGetAssetDev localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5126,52 +5126,52 @@ func (a *AssetApiService) GetAssetSubscriptionAccountListExecute(r ApiGetAssetSu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5709,52 +5709,52 @@ func (a *AssetApiService) GetAssetSubscriptionDeviceContractInformationListExecu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5984,52 +5984,52 @@ func (a *AssetApiService) GetAssetSubscriptionListExecute(r ApiGetAssetSubscript localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6413,52 +6413,52 @@ func (a *AssetApiService) GetAssetTargetListExecute(r ApiGetAssetTargetListReque localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6649,7 +6649,7 @@ func (a *AssetApiService) PatchAssetDeviceConfigurationExecute(r ApiPatchAssetDe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.assetDeviceConfiguration @@ -6825,7 +6825,7 @@ func (a *AssetApiService) PatchAssetDeviceContractInformationExecute(r ApiPatchA localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.assetDeviceContractInformation @@ -7001,7 +7001,7 @@ func (a *AssetApiService) PatchAssetDeviceRegistrationExecute(r ApiPatchAssetDev localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.assetDeviceRegistration @@ -7177,7 +7177,7 @@ func (a *AssetApiService) PatchAssetTargetExecute(r ApiPatchAssetTargetRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.assetTarget @@ -7353,7 +7353,7 @@ func (a *AssetApiService) UpdateAssetDeviceConfigurationExecute(r ApiUpdateAsset localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.assetDeviceConfiguration @@ -7529,7 +7529,7 @@ func (a *AssetApiService) UpdateAssetDeviceContractInformationExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.assetDeviceContractInformation @@ -7705,7 +7705,7 @@ func (a *AssetApiService) UpdateAssetDeviceRegistrationExecute(r ApiUpdateAssetD localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.assetDeviceRegistration @@ -7881,7 +7881,7 @@ func (a *AssetApiService) UpdateAssetTargetExecute(r ApiUpdateAssetTargetRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.assetTarget diff --git a/intersight_gosdk/api_bios.go b/intersight_gosdk/api_bios.go index d174d818e3..64693a8c97 100644 --- a/intersight_gosdk/api_bios.go +++ b/intersight_gosdk/api_bios.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *BiosApiService) CreateBiosPolicyExecute(r ApiCreateBiosPolicyRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.biosPolicy @@ -623,52 +623,52 @@ func (a *BiosApiService) GetBiosBootDeviceListExecute(r ApiGetBiosBootDeviceList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *BiosApiService) GetBiosBootModeListExecute(r ApiGetBiosBootModeListRequ localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1481,52 +1481,52 @@ func (a *BiosApiService) GetBiosPolicyListExecute(r ApiGetBiosPolicyListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1910,52 +1910,52 @@ func (a *BiosApiService) GetBiosSystemBootOrderListExecute(r ApiGetBiosSystemBoo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2339,52 +2339,52 @@ func (a *BiosApiService) GetBiosTokenSettingsListExecute(r ApiGetBiosTokenSettin localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2768,52 +2768,52 @@ func (a *BiosApiService) GetBiosUnitListExecute(r ApiGetBiosUnitListRequest) (*B localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3197,52 +3197,52 @@ func (a *BiosApiService) GetBiosVfSelectMemoryRasConfigurationListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3433,7 +3433,7 @@ func (a *BiosApiService) PatchBiosBootModeExecute(r ApiPatchBiosBootModeRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.biosBootMode @@ -3609,7 +3609,7 @@ func (a *BiosApiService) PatchBiosPolicyExecute(r ApiPatchBiosPolicyRequest) (*B localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.biosPolicy @@ -3785,7 +3785,7 @@ func (a *BiosApiService) PatchBiosUnitExecute(r ApiPatchBiosUnitRequest) (*BiosU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.biosUnit @@ -3961,7 +3961,7 @@ func (a *BiosApiService) UpdateBiosBootModeExecute(r ApiUpdateBiosBootModeReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.biosBootMode @@ -4137,7 +4137,7 @@ func (a *BiosApiService) UpdateBiosPolicyExecute(r ApiUpdateBiosPolicyRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.biosPolicy @@ -4313,7 +4313,7 @@ func (a *BiosApiService) UpdateBiosUnitExecute(r ApiUpdateBiosUnitRequest) (*Bio localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.biosUnit diff --git a/intersight_gosdk/api_boot.go b/intersight_gosdk/api_boot.go index ec667ab142..d4ad6c4f24 100644 --- a/intersight_gosdk/api_boot.go +++ b/intersight_gosdk/api_boot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *BootApiService) CreateBootPrecisionPolicyExecute(r ApiCreateBootPrecisi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.bootPrecisionPolicy @@ -623,52 +623,52 @@ func (a *BootApiService) GetBootCddDeviceListExecute(r ApiGetBootCddDeviceListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *BootApiService) GetBootDeviceBootModeListExecute(r ApiGetBootDeviceBoot localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1481,52 +1481,52 @@ func (a *BootApiService) GetBootDeviceBootSecurityListExecute(r ApiGetBootDevice localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1910,52 +1910,52 @@ func (a *BootApiService) GetBootHddDeviceListExecute(r ApiGetBootHddDeviceListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2339,52 +2339,52 @@ func (a *BootApiService) GetBootIscsiDeviceListExecute(r ApiGetBootIscsiDeviceLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2768,52 +2768,52 @@ func (a *BootApiService) GetBootNvmeDeviceListExecute(r ApiGetBootNvmeDeviceList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3197,52 +3197,52 @@ func (a *BootApiService) GetBootPchStorageDeviceListExecute(r ApiGetBootPchStora localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3626,52 +3626,52 @@ func (a *BootApiService) GetBootPrecisionPolicyListExecute(r ApiGetBootPrecision localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4055,52 +4055,52 @@ func (a *BootApiService) GetBootPxeDeviceListExecute(r ApiGetBootPxeDeviceListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4484,52 +4484,52 @@ func (a *BootApiService) GetBootSanDeviceListExecute(r ApiGetBootSanDeviceListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4913,52 +4913,52 @@ func (a *BootApiService) GetBootSdDeviceListExecute(r ApiGetBootSdDeviceListRequ localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5342,52 +5342,52 @@ func (a *BootApiService) GetBootUefiShellDeviceListExecute(r ApiGetBootUefiShell localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5771,52 +5771,52 @@ func (a *BootApiService) GetBootUsbDeviceListExecute(r ApiGetBootUsbDeviceListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6200,52 +6200,52 @@ func (a *BootApiService) GetBootVmediaDeviceListExecute(r ApiGetBootVmediaDevice localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6436,7 +6436,7 @@ func (a *BootApiService) PatchBootCddDeviceExecute(r ApiPatchBootCddDeviceReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootCddDevice @@ -6612,7 +6612,7 @@ func (a *BootApiService) PatchBootDeviceBootModeExecute(r ApiPatchBootDeviceBoot localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootDeviceBootMode @@ -6788,7 +6788,7 @@ func (a *BootApiService) PatchBootDeviceBootSecurityExecute(r ApiPatchBootDevice localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootDeviceBootSecurity @@ -6964,7 +6964,7 @@ func (a *BootApiService) PatchBootHddDeviceExecute(r ApiPatchBootHddDeviceReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootHddDevice @@ -7140,7 +7140,7 @@ func (a *BootApiService) PatchBootIscsiDeviceExecute(r ApiPatchBootIscsiDeviceRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootIscsiDevice @@ -7316,7 +7316,7 @@ func (a *BootApiService) PatchBootNvmeDeviceExecute(r ApiPatchBootNvmeDeviceRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootNvmeDevice @@ -7492,7 +7492,7 @@ func (a *BootApiService) PatchBootPchStorageDeviceExecute(r ApiPatchBootPchStora localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootPchStorageDevice @@ -7668,7 +7668,7 @@ func (a *BootApiService) PatchBootPrecisionPolicyExecute(r ApiPatchBootPrecision localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootPrecisionPolicy @@ -7844,7 +7844,7 @@ func (a *BootApiService) PatchBootPxeDeviceExecute(r ApiPatchBootPxeDeviceReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootPxeDevice @@ -8020,7 +8020,7 @@ func (a *BootApiService) PatchBootSanDeviceExecute(r ApiPatchBootSanDeviceReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootSanDevice @@ -8196,7 +8196,7 @@ func (a *BootApiService) PatchBootSdDeviceExecute(r ApiPatchBootSdDeviceRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootSdDevice @@ -8372,7 +8372,7 @@ func (a *BootApiService) PatchBootUefiShellDeviceExecute(r ApiPatchBootUefiShell localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootUefiShellDevice @@ -8548,7 +8548,7 @@ func (a *BootApiService) PatchBootUsbDeviceExecute(r ApiPatchBootUsbDeviceReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootUsbDevice @@ -8724,7 +8724,7 @@ func (a *BootApiService) PatchBootVmediaDeviceExecute(r ApiPatchBootVmediaDevice localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootVmediaDevice @@ -8900,7 +8900,7 @@ func (a *BootApiService) UpdateBootCddDeviceExecute(r ApiUpdateBootCddDeviceRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootCddDevice @@ -9076,7 +9076,7 @@ func (a *BootApiService) UpdateBootDeviceBootModeExecute(r ApiUpdateBootDeviceBo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootDeviceBootMode @@ -9252,7 +9252,7 @@ func (a *BootApiService) UpdateBootDeviceBootSecurityExecute(r ApiUpdateBootDevi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootDeviceBootSecurity @@ -9428,7 +9428,7 @@ func (a *BootApiService) UpdateBootHddDeviceExecute(r ApiUpdateBootHddDeviceRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootHddDevice @@ -9604,7 +9604,7 @@ func (a *BootApiService) UpdateBootIscsiDeviceExecute(r ApiUpdateBootIscsiDevice localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootIscsiDevice @@ -9780,7 +9780,7 @@ func (a *BootApiService) UpdateBootNvmeDeviceExecute(r ApiUpdateBootNvmeDeviceRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootNvmeDevice @@ -9956,7 +9956,7 @@ func (a *BootApiService) UpdateBootPchStorageDeviceExecute(r ApiUpdateBootPchSto localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootPchStorageDevice @@ -10132,7 +10132,7 @@ func (a *BootApiService) UpdateBootPrecisionPolicyExecute(r ApiUpdateBootPrecisi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootPrecisionPolicy @@ -10308,7 +10308,7 @@ func (a *BootApiService) UpdateBootPxeDeviceExecute(r ApiUpdateBootPxeDeviceRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootPxeDevice @@ -10484,7 +10484,7 @@ func (a *BootApiService) UpdateBootSanDeviceExecute(r ApiUpdateBootSanDeviceRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootSanDevice @@ -10660,7 +10660,7 @@ func (a *BootApiService) UpdateBootSdDeviceExecute(r ApiUpdateBootSdDeviceReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootSdDevice @@ -10836,7 +10836,7 @@ func (a *BootApiService) UpdateBootUefiShellDeviceExecute(r ApiUpdateBootUefiShe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootUefiShellDevice @@ -11012,7 +11012,7 @@ func (a *BootApiService) UpdateBootUsbDeviceExecute(r ApiUpdateBootUsbDeviceRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootUsbDevice @@ -11188,7 +11188,7 @@ func (a *BootApiService) UpdateBootVmediaDeviceExecute(r ApiUpdateBootVmediaDevi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootVmediaDevice diff --git a/intersight_gosdk/api_bulk.go b/intersight_gosdk/api_bulk.go index 394c598faf..87b1cfeabe 100644 --- a/intersight_gosdk/api_bulk.go +++ b/intersight_gosdk/api_bulk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *BulkApiService) CreateBulkExportExecute(r ApiCreateBulkExportRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.bulkExport @@ -298,13 +298,13 @@ func (a *BulkApiService) CreateBulkMoClonerExecute(r ApiCreateBulkMoClonerReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } if r.prefer != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "Prefer", r.prefer, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "Prefer", r.prefer, "simple", "") } // body params localVarPostBody = r.bulkMoCloner @@ -490,13 +490,13 @@ func (a *BulkApiService) CreateBulkMoDeepClonerExecute(r ApiCreateBulkMoDeepClon localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } if r.prefer != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "Prefer", r.prefer, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "Prefer", r.prefer, "simple", "") } // body params localVarPostBody = r.bulkMoDeepCloner @@ -682,13 +682,13 @@ func (a *BulkApiService) CreateBulkMoMergerExecute(r ApiCreateBulkMoMergerReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } if r.prefer != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "Prefer", r.prefer, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "Prefer", r.prefer, "simple", "") } // body params localVarPostBody = r.bulkMoMerger @@ -874,13 +874,13 @@ func (a *BulkApiService) CreateBulkRequestExecute(r ApiCreateBulkRequestRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } if r.prefer != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "Prefer", r.prefer, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "Prefer", r.prefer, "simple", "") } // body params localVarPostBody = r.bulkRequest @@ -1391,52 +1391,52 @@ func (a *BulkApiService) GetBulkExportListExecute(r ApiGetBulkExportListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1820,52 +1820,52 @@ func (a *BulkApiService) GetBulkExportedItemListExecute(r ApiGetBulkExportedItem localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2249,52 +2249,52 @@ func (a *BulkApiService) GetBulkMoClonerListExecute(r ApiGetBulkMoClonerListRequ localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2678,52 +2678,52 @@ func (a *BulkApiService) GetBulkMoDeepClonerListExecute(r ApiGetBulkMoDeepCloner localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3107,52 +3107,52 @@ func (a *BulkApiService) GetBulkMoMergerListExecute(r ApiGetBulkMoMergerListRequ localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3536,52 +3536,52 @@ func (a *BulkApiService) GetBulkRequestListExecute(r ApiGetBulkRequestListReques localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3965,52 +3965,52 @@ func (a *BulkApiService) GetBulkResultListExecute(r ApiGetBulkResultListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4394,52 +4394,52 @@ func (a *BulkApiService) GetBulkSubRequestObjListExecute(r ApiGetBulkSubRequestO localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4630,7 +4630,7 @@ func (a *BulkApiService) PatchBulkExportExecute(r ApiPatchBulkExportRequest) (*B localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bulkExport @@ -4806,7 +4806,7 @@ func (a *BulkApiService) UpdateBulkExportExecute(r ApiUpdateBulkExportRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bulkExport diff --git a/intersight_gosdk/api_capability.go b/intersight_gosdk/api_capability.go index 9d501a484d..c7d6f1e3cf 100644 --- a/intersight_gosdk/api_capability.go +++ b/intersight_gosdk/api_capability.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *CapabilityApiService) CreateCapabilityActionsMetaDataExecute(r ApiCreat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityActionsMetaData @@ -291,10 +291,10 @@ func (a *CapabilityApiService) CreateCapabilityAdapterDeprecatedDefExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityAdapterDeprecatedDef @@ -473,10 +473,10 @@ func (a *CapabilityApiService) CreateCapabilityAdapterUnitDescriptorExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityAdapterUnitDescriptor @@ -655,10 +655,10 @@ func (a *CapabilityApiService) CreateCapabilityChassisDescriptorExecute(r ApiCre localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityChassisDescriptor @@ -837,10 +837,10 @@ func (a *CapabilityApiService) CreateCapabilityChassisManufacturingDefExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityChassisManufacturingDef @@ -1019,10 +1019,10 @@ func (a *CapabilityApiService) CreateCapabilityCimcFirmwareDescriptorExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityCimcFirmwareDescriptor @@ -1201,10 +1201,10 @@ func (a *CapabilityApiService) CreateCapabilityEquipmentPhysicalDefExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityEquipmentPhysicalDef @@ -1383,10 +1383,10 @@ func (a *CapabilityApiService) CreateCapabilityEquipmentSlotArrayExecute(r ApiCr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityEquipmentSlotArray @@ -1565,10 +1565,10 @@ func (a *CapabilityApiService) CreateCapabilityFanModuleDescriptorExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityFanModuleDescriptor @@ -1747,10 +1747,10 @@ func (a *CapabilityApiService) CreateCapabilityFanModuleManufacturingDefExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityFanModuleManufacturingDef @@ -1929,10 +1929,10 @@ func (a *CapabilityApiService) CreateCapabilityFexCapabilityDefExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityFexCapabilityDef @@ -2111,10 +2111,10 @@ func (a *CapabilityApiService) CreateCapabilityFexDescriptorExecute(r ApiCreateC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityFexDescriptor @@ -2293,10 +2293,10 @@ func (a *CapabilityApiService) CreateCapabilityFexManufacturingDefExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityFexManufacturingDef @@ -2475,10 +2475,10 @@ func (a *CapabilityApiService) CreateCapabilityIoCardCapabilityDefExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityIoCardCapabilityDef @@ -2657,10 +2657,10 @@ func (a *CapabilityApiService) CreateCapabilityIoCardDescriptorExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityIoCardDescriptor @@ -2839,10 +2839,10 @@ func (a *CapabilityApiService) CreateCapabilityIoCardManufacturingDefExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityIoCardManufacturingDef @@ -3021,10 +3021,10 @@ func (a *CapabilityApiService) CreateCapabilityPortGroupAggregationDefExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityPortGroupAggregationDef @@ -3203,10 +3203,10 @@ func (a *CapabilityApiService) CreateCapabilityPsuDescriptorExecute(r ApiCreateC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityPsuDescriptor @@ -3385,10 +3385,10 @@ func (a *CapabilityApiService) CreateCapabilityPsuManufacturingDefExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityPsuManufacturingDef @@ -3567,10 +3567,10 @@ func (a *CapabilityApiService) CreateCapabilityServerDescriptorExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityServerDescriptor @@ -3749,10 +3749,10 @@ func (a *CapabilityApiService) CreateCapabilityServerModelsCapabilityDefExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityServerModelsCapabilityDef @@ -3931,10 +3931,10 @@ func (a *CapabilityApiService) CreateCapabilityServerSchemaDescriptorExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityServerSchemaDescriptor @@ -4113,10 +4113,10 @@ func (a *CapabilityApiService) CreateCapabilitySiocModuleCapabilityDefExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilitySiocModuleCapabilityDef @@ -4295,10 +4295,10 @@ func (a *CapabilityApiService) CreateCapabilitySiocModuleDescriptorExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilitySiocModuleDescriptor @@ -4477,10 +4477,10 @@ func (a *CapabilityApiService) CreateCapabilitySiocModuleManufacturingDefExecute localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilitySiocModuleManufacturingDef @@ -4659,10 +4659,10 @@ func (a *CapabilityApiService) CreateCapabilitySwitchCapabilityExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilitySwitchCapability @@ -4841,10 +4841,10 @@ func (a *CapabilityApiService) CreateCapabilitySwitchDescriptorExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilitySwitchDescriptor @@ -5023,10 +5023,10 @@ func (a *CapabilityApiService) CreateCapabilitySwitchEquipmentInfoExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilitySwitchEquipmentInfo @@ -5205,10 +5205,10 @@ func (a *CapabilityApiService) CreateCapabilitySwitchManufacturingDefExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilitySwitchManufacturingDef @@ -5387,10 +5387,10 @@ func (a *CapabilityApiService) CreateCapabilityVicDescriptorExecute(r ApiCreateC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityVicDescriptor @@ -10161,52 +10161,52 @@ func (a *CapabilityApiService) GetCapabilityActionsMetaDataListExecute(r ApiGetC localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10590,52 +10590,52 @@ func (a *CapabilityApiService) GetCapabilityAdapterDeprecatedDefListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11019,52 +11019,52 @@ func (a *CapabilityApiService) GetCapabilityAdapterFirmwareRequirementListExecut localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11448,52 +11448,52 @@ func (a *CapabilityApiService) GetCapabilityAdapterUnitDescriptorListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11877,52 +11877,52 @@ func (a *CapabilityApiService) GetCapabilityAdapterUpdateConstraintMetaListExecu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12306,52 +12306,52 @@ func (a *CapabilityApiService) GetCapabilityAdapterUpgradeSupportMetaListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12735,52 +12735,52 @@ func (a *CapabilityApiService) GetCapabilityCatalogListExecute(r ApiGetCapabilit localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13164,52 +13164,52 @@ func (a *CapabilityApiService) GetCapabilityChassisDescriptorListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13593,52 +13593,52 @@ func (a *CapabilityApiService) GetCapabilityChassisManufacturingDefListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14022,52 +14022,52 @@ func (a *CapabilityApiService) GetCapabilityChassisUpgradeSupportMetaListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14451,52 +14451,52 @@ func (a *CapabilityApiService) GetCapabilityCimcFirmwareDescriptorListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14880,52 +14880,52 @@ func (a *CapabilityApiService) GetCapabilityCpuEndpointDescriptorListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15309,52 +15309,52 @@ func (a *CapabilityApiService) GetCapabilityDimmsEndpointDescriptorListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15738,52 +15738,52 @@ func (a *CapabilityApiService) GetCapabilityDrivesEndpointDescriptorListExecute( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16167,52 +16167,52 @@ func (a *CapabilityApiService) GetCapabilityEquipmentPhysicalDefListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16596,52 +16596,52 @@ func (a *CapabilityApiService) GetCapabilityEquipmentSlotArrayListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17025,52 +17025,52 @@ func (a *CapabilityApiService) GetCapabilityFanModuleDescriptorListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17454,52 +17454,52 @@ func (a *CapabilityApiService) GetCapabilityFanModuleManufacturingDefListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17883,52 +17883,52 @@ func (a *CapabilityApiService) GetCapabilityFexCapabilityDefListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18312,52 +18312,52 @@ func (a *CapabilityApiService) GetCapabilityFexDescriptorListExecute(r ApiGetCap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18741,52 +18741,52 @@ func (a *CapabilityApiService) GetCapabilityFexManufacturingDefListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19170,52 +19170,52 @@ func (a *CapabilityApiService) GetCapabilityGpuEndpointDescriptorListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19599,52 +19599,52 @@ func (a *CapabilityApiService) GetCapabilityHsuIsoFileSupportMetaListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20028,52 +20028,52 @@ func (a *CapabilityApiService) GetCapabilityIoCardCapabilityDefListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20457,52 +20457,52 @@ func (a *CapabilityApiService) GetCapabilityIoCardDescriptorListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20886,52 +20886,52 @@ func (a *CapabilityApiService) GetCapabilityIoCardManufacturingDefListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21315,52 +21315,52 @@ func (a *CapabilityApiService) GetCapabilityIomUpgradeSupportMetaListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21744,52 +21744,52 @@ func (a *CapabilityApiService) GetCapabilityPortGroupAggregationDefListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22173,52 +22173,52 @@ func (a *CapabilityApiService) GetCapabilityProcessorUnitUpdateConstraintMetaLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22602,52 +22602,52 @@ func (a *CapabilityApiService) GetCapabilityPsuDescriptorListExecute(r ApiGetCap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23031,52 +23031,52 @@ func (a *CapabilityApiService) GetCapabilityPsuManufacturingDefListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23460,52 +23460,52 @@ func (a *CapabilityApiService) GetCapabilityServerActionsMetaListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23889,52 +23889,52 @@ func (a *CapabilityApiService) GetCapabilityServerDescriptorListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24318,52 +24318,52 @@ func (a *CapabilityApiService) GetCapabilityServerModelsCapabilityDefListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24747,52 +24747,52 @@ func (a *CapabilityApiService) GetCapabilityServerSchemaDescriptorListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25176,52 +25176,52 @@ func (a *CapabilityApiService) GetCapabilityServerUpgradeSupportMetaListExecute( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25605,52 +25605,52 @@ func (a *CapabilityApiService) GetCapabilitySiocModuleCapabilityDefListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26034,52 +26034,52 @@ func (a *CapabilityApiService) GetCapabilitySiocModuleDescriptorListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26463,52 +26463,52 @@ func (a *CapabilityApiService) GetCapabilitySiocModuleManufacturingDefListExecut localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26892,52 +26892,52 @@ func (a *CapabilityApiService) GetCapabilityStorageControllerUpdateConstraintMet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27321,52 +27321,52 @@ func (a *CapabilityApiService) GetCapabilitySwitchCapabilityListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27750,52 +27750,52 @@ func (a *CapabilityApiService) GetCapabilitySwitchDescriptorListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28179,52 +28179,52 @@ func (a *CapabilityApiService) GetCapabilitySwitchEquipmentInfoListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28608,52 +28608,52 @@ func (a *CapabilityApiService) GetCapabilitySwitchManufacturingDefListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29037,52 +29037,52 @@ func (a *CapabilityApiService) GetCapabilityTemplateCatalogListExecute(r ApiGetC localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29466,52 +29466,52 @@ func (a *CapabilityApiService) GetCapabilityUpdateOrderMetaListExecute(r ApiGetC localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29895,52 +29895,52 @@ func (a *CapabilityApiService) GetCapabilityVicDescriptorListExecute(r ApiGetCap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -30131,7 +30131,7 @@ func (a *CapabilityApiService) PatchCapabilityActionsMetaDataExecute(r ApiPatchC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityActionsMetaData @@ -30307,7 +30307,7 @@ func (a *CapabilityApiService) PatchCapabilityAdapterDeprecatedDefExecute(r ApiP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityAdapterDeprecatedDef @@ -30483,7 +30483,7 @@ func (a *CapabilityApiService) PatchCapabilityAdapterUnitDescriptorExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityAdapterUnitDescriptor @@ -30659,7 +30659,7 @@ func (a *CapabilityApiService) PatchCapabilityCatalogExecute(r ApiPatchCapabilit localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityCatalog @@ -30835,7 +30835,7 @@ func (a *CapabilityApiService) PatchCapabilityChassisDescriptorExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityChassisDescriptor @@ -31011,7 +31011,7 @@ func (a *CapabilityApiService) PatchCapabilityChassisManufacturingDefExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityChassisManufacturingDef @@ -31187,7 +31187,7 @@ func (a *CapabilityApiService) PatchCapabilityCimcFirmwareDescriptorExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityCimcFirmwareDescriptor @@ -31363,7 +31363,7 @@ func (a *CapabilityApiService) PatchCapabilityEquipmentPhysicalDefExecute(r ApiP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityEquipmentPhysicalDef @@ -31539,7 +31539,7 @@ func (a *CapabilityApiService) PatchCapabilityEquipmentSlotArrayExecute(r ApiPat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityEquipmentSlotArray @@ -31715,7 +31715,7 @@ func (a *CapabilityApiService) PatchCapabilityFanModuleDescriptorExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityFanModuleDescriptor @@ -31891,7 +31891,7 @@ func (a *CapabilityApiService) PatchCapabilityFanModuleManufacturingDefExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityFanModuleManufacturingDef @@ -32067,7 +32067,7 @@ func (a *CapabilityApiService) PatchCapabilityFexCapabilityDefExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityFexCapabilityDef @@ -32243,7 +32243,7 @@ func (a *CapabilityApiService) PatchCapabilityFexDescriptorExecute(r ApiPatchCap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityFexDescriptor @@ -32419,7 +32419,7 @@ func (a *CapabilityApiService) PatchCapabilityFexManufacturingDefExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityFexManufacturingDef @@ -32595,7 +32595,7 @@ func (a *CapabilityApiService) PatchCapabilityIoCardCapabilityDefExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityIoCardCapabilityDef @@ -32771,7 +32771,7 @@ func (a *CapabilityApiService) PatchCapabilityIoCardDescriptorExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityIoCardDescriptor @@ -32947,7 +32947,7 @@ func (a *CapabilityApiService) PatchCapabilityIoCardManufacturingDefExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityIoCardManufacturingDef @@ -33123,7 +33123,7 @@ func (a *CapabilityApiService) PatchCapabilityPortGroupAggregationDefExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityPortGroupAggregationDef @@ -33299,7 +33299,7 @@ func (a *CapabilityApiService) PatchCapabilityPsuDescriptorExecute(r ApiPatchCap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityPsuDescriptor @@ -33475,7 +33475,7 @@ func (a *CapabilityApiService) PatchCapabilityPsuManufacturingDefExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityPsuManufacturingDef @@ -33651,7 +33651,7 @@ func (a *CapabilityApiService) PatchCapabilityServerActionsMetaExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityServerActionsMeta @@ -33827,7 +33827,7 @@ func (a *CapabilityApiService) PatchCapabilityServerDescriptorExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityServerDescriptor @@ -34003,7 +34003,7 @@ func (a *CapabilityApiService) PatchCapabilityServerModelsCapabilityDefExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityServerModelsCapabilityDef @@ -34179,7 +34179,7 @@ func (a *CapabilityApiService) PatchCapabilityServerSchemaDescriptorExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityServerSchemaDescriptor @@ -34355,7 +34355,7 @@ func (a *CapabilityApiService) PatchCapabilitySiocModuleCapabilityDefExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySiocModuleCapabilityDef @@ -34531,7 +34531,7 @@ func (a *CapabilityApiService) PatchCapabilitySiocModuleDescriptorExecute(r ApiP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySiocModuleDescriptor @@ -34707,7 +34707,7 @@ func (a *CapabilityApiService) PatchCapabilitySiocModuleManufacturingDefExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySiocModuleManufacturingDef @@ -34883,7 +34883,7 @@ func (a *CapabilityApiService) PatchCapabilitySwitchCapabilityExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySwitchCapability @@ -35059,7 +35059,7 @@ func (a *CapabilityApiService) PatchCapabilitySwitchDescriptorExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySwitchDescriptor @@ -35235,7 +35235,7 @@ func (a *CapabilityApiService) PatchCapabilitySwitchEquipmentInfoExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySwitchEquipmentInfo @@ -35411,7 +35411,7 @@ func (a *CapabilityApiService) PatchCapabilitySwitchManufacturingDefExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySwitchManufacturingDef @@ -35587,7 +35587,7 @@ func (a *CapabilityApiService) PatchCapabilityVicDescriptorExecute(r ApiPatchCap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityVicDescriptor @@ -35763,7 +35763,7 @@ func (a *CapabilityApiService) UpdateCapabilityActionsMetaDataExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityActionsMetaData @@ -35939,7 +35939,7 @@ func (a *CapabilityApiService) UpdateCapabilityAdapterDeprecatedDefExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityAdapterDeprecatedDef @@ -36115,7 +36115,7 @@ func (a *CapabilityApiService) UpdateCapabilityAdapterUnitDescriptorExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityAdapterUnitDescriptor @@ -36291,7 +36291,7 @@ func (a *CapabilityApiService) UpdateCapabilityCatalogExecute(r ApiUpdateCapabil localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityCatalog @@ -36467,7 +36467,7 @@ func (a *CapabilityApiService) UpdateCapabilityChassisDescriptorExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityChassisDescriptor @@ -36643,7 +36643,7 @@ func (a *CapabilityApiService) UpdateCapabilityChassisManufacturingDefExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityChassisManufacturingDef @@ -36819,7 +36819,7 @@ func (a *CapabilityApiService) UpdateCapabilityCimcFirmwareDescriptorExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityCimcFirmwareDescriptor @@ -36995,7 +36995,7 @@ func (a *CapabilityApiService) UpdateCapabilityEquipmentPhysicalDefExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityEquipmentPhysicalDef @@ -37171,7 +37171,7 @@ func (a *CapabilityApiService) UpdateCapabilityEquipmentSlotArrayExecute(r ApiUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityEquipmentSlotArray @@ -37347,7 +37347,7 @@ func (a *CapabilityApiService) UpdateCapabilityFanModuleDescriptorExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityFanModuleDescriptor @@ -37523,7 +37523,7 @@ func (a *CapabilityApiService) UpdateCapabilityFanModuleManufacturingDefExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityFanModuleManufacturingDef @@ -37699,7 +37699,7 @@ func (a *CapabilityApiService) UpdateCapabilityFexCapabilityDefExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityFexCapabilityDef @@ -37875,7 +37875,7 @@ func (a *CapabilityApiService) UpdateCapabilityFexDescriptorExecute(r ApiUpdateC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityFexDescriptor @@ -38051,7 +38051,7 @@ func (a *CapabilityApiService) UpdateCapabilityFexManufacturingDefExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityFexManufacturingDef @@ -38227,7 +38227,7 @@ func (a *CapabilityApiService) UpdateCapabilityIoCardCapabilityDefExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityIoCardCapabilityDef @@ -38403,7 +38403,7 @@ func (a *CapabilityApiService) UpdateCapabilityIoCardDescriptorExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityIoCardDescriptor @@ -38579,7 +38579,7 @@ func (a *CapabilityApiService) UpdateCapabilityIoCardManufacturingDefExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityIoCardManufacturingDef @@ -38755,7 +38755,7 @@ func (a *CapabilityApiService) UpdateCapabilityPortGroupAggregationDefExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityPortGroupAggregationDef @@ -38931,7 +38931,7 @@ func (a *CapabilityApiService) UpdateCapabilityPsuDescriptorExecute(r ApiUpdateC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityPsuDescriptor @@ -39107,7 +39107,7 @@ func (a *CapabilityApiService) UpdateCapabilityPsuManufacturingDefExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityPsuManufacturingDef @@ -39283,7 +39283,7 @@ func (a *CapabilityApiService) UpdateCapabilityServerActionsMetaExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityServerActionsMeta @@ -39459,7 +39459,7 @@ func (a *CapabilityApiService) UpdateCapabilityServerDescriptorExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityServerDescriptor @@ -39635,7 +39635,7 @@ func (a *CapabilityApiService) UpdateCapabilityServerModelsCapabilityDefExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityServerModelsCapabilityDef @@ -39811,7 +39811,7 @@ func (a *CapabilityApiService) UpdateCapabilityServerSchemaDescriptorExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityServerSchemaDescriptor @@ -39987,7 +39987,7 @@ func (a *CapabilityApiService) UpdateCapabilitySiocModuleCapabilityDefExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySiocModuleCapabilityDef @@ -40163,7 +40163,7 @@ func (a *CapabilityApiService) UpdateCapabilitySiocModuleDescriptorExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySiocModuleDescriptor @@ -40339,7 +40339,7 @@ func (a *CapabilityApiService) UpdateCapabilitySiocModuleManufacturingDefExecute localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySiocModuleManufacturingDef @@ -40515,7 +40515,7 @@ func (a *CapabilityApiService) UpdateCapabilitySwitchCapabilityExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySwitchCapability @@ -40691,7 +40691,7 @@ func (a *CapabilityApiService) UpdateCapabilitySwitchDescriptorExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySwitchDescriptor @@ -40867,7 +40867,7 @@ func (a *CapabilityApiService) UpdateCapabilitySwitchEquipmentInfoExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySwitchEquipmentInfo @@ -41043,7 +41043,7 @@ func (a *CapabilityApiService) UpdateCapabilitySwitchManufacturingDefExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySwitchManufacturingDef @@ -41219,7 +41219,7 @@ func (a *CapabilityApiService) UpdateCapabilityVicDescriptorExecute(r ApiUpdateC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityVicDescriptor diff --git a/intersight_gosdk/api_catalystsdwan.go b/intersight_gosdk/api_catalystsdwan.go index ac9d321691..c15238f003 100644 --- a/intersight_gosdk/api_catalystsdwan.go +++ b/intersight_gosdk/api_catalystsdwan.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *CatalystsdwanApiService) GetCatalystsdwanConfigGroupListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *CatalystsdwanApiService) GetCatalystsdwanPolicyGroupListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *CatalystsdwanApiService) GetCatalystsdwanVedgeDeviceListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/intersight_gosdk/api_certificatemanagement.go b/intersight_gosdk/api_certificatemanagement.go index 4f203680a4..839e1aa19a 100644 --- a/intersight_gosdk/api_certificatemanagement.go +++ b/intersight_gosdk/api_certificatemanagement.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *CertificatemanagementApiService) CreateCertificatemanagementPolicyExecu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.certificatemanagementPolicy @@ -777,52 +777,52 @@ func (a *CertificatemanagementApiService) GetCertificatemanagementPolicyInventor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *CertificatemanagementApiService) GetCertificatemanagementPolicyListExec localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1288,7 +1288,7 @@ func (a *CertificatemanagementApiService) PatchCertificatemanagementPolicyExecut localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.certificatemanagementPolicy @@ -1464,7 +1464,7 @@ func (a *CertificatemanagementApiService) UpdateCertificatemanagementPolicyExecu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.certificatemanagementPolicy diff --git a/intersight_gosdk/api_chassis.go b/intersight_gosdk/api_chassis.go index b6df4df893..d8f4be7588 100644 --- a/intersight_gosdk/api_chassis.go +++ b/intersight_gosdk/api_chassis.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *ChassisApiService) CreateChassisConfigImportExecute(r ApiCreateChassisC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.chassisConfigImport @@ -291,10 +291,10 @@ func (a *ChassisApiService) CreateChassisProfileExecute(r ApiCreateChassisProfil localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.chassisProfile @@ -473,10 +473,10 @@ func (a *ChassisApiService) CreateChassisProfileTemplateExecute(r ApiCreateChass localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.chassisProfileTemplate @@ -1129,52 +1129,52 @@ func (a *ChassisApiService) GetChassisConfigChangeDetailListExecute(r ApiGetChas localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1558,52 +1558,52 @@ func (a *ChassisApiService) GetChassisConfigImportListExecute(r ApiGetChassisCon localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2141,52 +2141,52 @@ func (a *ChassisApiService) GetChassisConfigResultEntryListExecute(r ApiGetChass localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2416,52 +2416,52 @@ func (a *ChassisApiService) GetChassisConfigResultListExecute(r ApiGetChassisCon localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2845,52 +2845,52 @@ func (a *ChassisApiService) GetChassisIomProfileListExecute(r ApiGetChassisIomPr localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3274,52 +3274,52 @@ func (a *ChassisApiService) GetChassisProfileListExecute(r ApiGetChassisProfileL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3703,52 +3703,52 @@ func (a *ChassisApiService) GetChassisProfileTemplateListExecute(r ApiGetChassis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3939,7 +3939,7 @@ func (a *ChassisApiService) PatchChassisProfileExecute(r ApiPatchChassisProfileR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.chassisProfile @@ -4115,7 +4115,7 @@ func (a *ChassisApiService) PatchChassisProfileTemplateExecute(r ApiPatchChassis localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.chassisProfileTemplate @@ -4291,7 +4291,7 @@ func (a *ChassisApiService) UpdateChassisProfileExecute(r ApiUpdateChassisProfil localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.chassisProfile @@ -4467,7 +4467,7 @@ func (a *ChassisApiService) UpdateChassisProfileTemplateExecute(r ApiUpdateChass localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.chassisProfileTemplate diff --git a/intersight_gosdk/api_cloud.go b/intersight_gosdk/api_cloud.go index 4a51a3b3e5..62af845dff 100644 --- a/intersight_gosdk/api_cloud.go +++ b/intersight_gosdk/api_cloud.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *CloudApiService) CreateCloudCollectInventoryExecute(r ApiCreateCloudCol localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.cloudCollectInventory @@ -481,52 +481,52 @@ func (a *CloudApiService) GetCloudAwsBillingUnitListExecute(r ApiGetCloudAwsBill localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -910,52 +910,52 @@ func (a *CloudApiService) GetCloudAwsKeyPairListExecute(r ApiGetCloudAwsKeyPairL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1339,52 +1339,52 @@ func (a *CloudApiService) GetCloudAwsNetworkInterfaceListExecute(r ApiGetCloudAw localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1768,52 +1768,52 @@ func (a *CloudApiService) GetCloudAwsOrganizationalUnitListExecute(r ApiGetCloud localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2197,52 +2197,52 @@ func (a *CloudApiService) GetCloudAwsSecurityGroupListExecute(r ApiGetCloudAwsSe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2626,52 +2626,52 @@ func (a *CloudApiService) GetCloudAwsSubnetListExecute(r ApiGetCloudAwsSubnetLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3055,52 +3055,52 @@ func (a *CloudApiService) GetCloudAwsVirtualMachineListExecute(r ApiGetCloudAwsV localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3484,52 +3484,52 @@ func (a *CloudApiService) GetCloudAwsVolumeListExecute(r ApiGetCloudAwsVolumeLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3913,52 +3913,52 @@ func (a *CloudApiService) GetCloudAwsVpcListExecute(r ApiGetCloudAwsVpcListReque localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4342,52 +4342,52 @@ func (a *CloudApiService) GetCloudRegionsListExecute(r ApiGetCloudRegionsListReq localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4771,52 +4771,52 @@ func (a *CloudApiService) GetCloudSkuContainerTypeListExecute(r ApiGetCloudSkuCo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5200,52 +5200,52 @@ func (a *CloudApiService) GetCloudSkuDatabaseTypeListExecute(r ApiGetCloudSkuDat localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5629,52 +5629,52 @@ func (a *CloudApiService) GetCloudSkuInstanceTypeListExecute(r ApiGetCloudSkuIns localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6058,52 +6058,52 @@ func (a *CloudApiService) GetCloudSkuNetworkTypeListExecute(r ApiGetCloudSkuNetw localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6487,52 +6487,52 @@ func (a *CloudApiService) GetCloudSkuRegionRateCardsListExecute(r ApiGetCloudSku localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6916,52 +6916,52 @@ func (a *CloudApiService) GetCloudSkuVolumeTypeListExecute(r ApiGetCloudSkuVolum localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7345,52 +7345,52 @@ func (a *CloudApiService) GetCloudTfcAgentpoolListExecute(r ApiGetCloudTfcAgentp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7774,52 +7774,52 @@ func (a *CloudApiService) GetCloudTfcOrganizationListExecute(r ApiGetCloudTfcOrg localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8203,52 +8203,52 @@ func (a *CloudApiService) GetCloudTfcWorkspaceListExecute(r ApiGetCloudTfcWorksp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8439,7 +8439,7 @@ func (a *CloudApiService) PatchCloudAwsVirtualMachineExecute(r ApiPatchCloudAwsV localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.cloudAwsVirtualMachine @@ -8615,7 +8615,7 @@ func (a *CloudApiService) PatchCloudRegionsExecute(r ApiPatchCloudRegionsRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.cloudRegions @@ -8791,7 +8791,7 @@ func (a *CloudApiService) UpdateCloudAwsVirtualMachineExecute(r ApiUpdateCloudAw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.cloudAwsVirtualMachine @@ -8967,7 +8967,7 @@ func (a *CloudApiService) UpdateCloudRegionsExecute(r ApiUpdateCloudRegionsReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.cloudRegions diff --git a/intersight_gosdk/api_comm.go b/intersight_gosdk/api_comm.go index c903c8101f..6dcafa9baf 100644 --- a/intersight_gosdk/api_comm.go +++ b/intersight_gosdk/api_comm.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *CommApiService) CreateCommHttpProxyPolicyExecute(r ApiCreateCommHttpPro localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.commHttpProxyPolicy @@ -623,52 +623,52 @@ func (a *CommApiService) GetCommHttpProxyPolicyListExecute(r ApiGetCommHttpProxy localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -859,7 +859,7 @@ func (a *CommApiService) PatchCommHttpProxyPolicyExecute(r ApiPatchCommHttpProxy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.commHttpProxyPolicy @@ -1035,7 +1035,7 @@ func (a *CommApiService) UpdateCommHttpProxyPolicyExecute(r ApiUpdateCommHttpPro localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.commHttpProxyPolicy diff --git a/intersight_gosdk/api_compute.go b/intersight_gosdk/api_compute.go index d7034edf08..b639c7ef21 100644 --- a/intersight_gosdk/api_compute.go +++ b/intersight_gosdk/api_compute.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *ComputeApiService) CreateComputeHostUtilityOperationExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.computeHostUtilityOperation @@ -1061,52 +1061,52 @@ func (a *ComputeApiService) GetComputeBladeIdentityListExecute(r ApiGetComputeBl localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1336,52 +1336,52 @@ func (a *ComputeApiService) GetComputeBladeListExecute(r ApiGetComputeBladeListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1765,52 +1765,52 @@ func (a *ComputeApiService) GetComputeBoardListExecute(r ApiGetComputeBoardListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2194,52 +2194,52 @@ func (a *ComputeApiService) GetComputeDownloadStatusListExecute(r ApiGetComputeD localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2623,52 +2623,52 @@ func (a *ComputeApiService) GetComputeHostUtilityOperationListExecute(r ApiGetCo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3052,52 +3052,52 @@ func (a *ComputeApiService) GetComputeMappingListExecute(r ApiGetComputeMappingL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3481,52 +3481,52 @@ func (a *ComputeApiService) GetComputePersonalityListExecute(r ApiGetComputePers localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3910,52 +3910,52 @@ func (a *ComputeApiService) GetComputePhysicalSummaryListExecute(r ApiGetCompute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4493,52 +4493,52 @@ func (a *ComputeApiService) GetComputeRackUnitIdentityListExecute(r ApiGetComput localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4768,52 +4768,52 @@ func (a *ComputeApiService) GetComputeRackUnitListExecute(r ApiGetComputeRackUni localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5197,52 +5197,52 @@ func (a *ComputeApiService) GetComputeServerIdPoolListExecute(r ApiGetComputeSer localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5626,52 +5626,52 @@ func (a *ComputeApiService) GetComputeServerPowerPolicyListExecute(r ApiGetCompu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6055,52 +6055,52 @@ func (a *ComputeApiService) GetComputeServerSettingListExecute(r ApiGetComputeSe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6484,52 +6484,52 @@ func (a *ComputeApiService) GetComputeVmediaListExecute(r ApiGetComputeVmediaLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6720,7 +6720,7 @@ func (a *ComputeApiService) PatchComputeBladeExecute(r ApiPatchComputeBladeReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeBlade @@ -6896,7 +6896,7 @@ func (a *ComputeApiService) PatchComputeBladeIdentityExecute(r ApiPatchComputeBl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeBladeIdentity @@ -7072,7 +7072,7 @@ func (a *ComputeApiService) PatchComputeBoardExecute(r ApiPatchComputeBoardReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeBoard @@ -7248,7 +7248,7 @@ func (a *ComputeApiService) PatchComputeMappingExecute(r ApiPatchComputeMappingR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeMapping @@ -7424,7 +7424,7 @@ func (a *ComputeApiService) PatchComputePersonalityExecute(r ApiPatchComputePers localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computePersonality @@ -7600,7 +7600,7 @@ func (a *ComputeApiService) PatchComputeRackUnitExecute(r ApiPatchComputeRackUni localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeRackUnit @@ -7776,7 +7776,7 @@ func (a *ComputeApiService) PatchComputeRackUnitIdentityExecute(r ApiPatchComput localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeRackUnitIdentity @@ -7952,7 +7952,7 @@ func (a *ComputeApiService) PatchComputeServerPowerPolicyExecute(r ApiPatchCompu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeServerPowerPolicy @@ -8128,7 +8128,7 @@ func (a *ComputeApiService) PatchComputeServerSettingExecute(r ApiPatchComputeSe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeServerSetting @@ -8304,7 +8304,7 @@ func (a *ComputeApiService) UpdateComputeBladeExecute(r ApiUpdateComputeBladeReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeBlade @@ -8480,7 +8480,7 @@ func (a *ComputeApiService) UpdateComputeBladeIdentityExecute(r ApiUpdateCompute localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeBladeIdentity @@ -8656,7 +8656,7 @@ func (a *ComputeApiService) UpdateComputeBoardExecute(r ApiUpdateComputeBoardReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeBoard @@ -8832,7 +8832,7 @@ func (a *ComputeApiService) UpdateComputeMappingExecute(r ApiUpdateComputeMappin localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeMapping @@ -9008,7 +9008,7 @@ func (a *ComputeApiService) UpdateComputePersonalityExecute(r ApiUpdateComputePe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computePersonality @@ -9184,7 +9184,7 @@ func (a *ComputeApiService) UpdateComputeRackUnitExecute(r ApiUpdateComputeRackU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeRackUnit @@ -9360,7 +9360,7 @@ func (a *ComputeApiService) UpdateComputeRackUnitIdentityExecute(r ApiUpdateComp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeRackUnitIdentity @@ -9536,7 +9536,7 @@ func (a *ComputeApiService) UpdateComputeServerPowerPolicyExecute(r ApiUpdateCom localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeServerPowerPolicy @@ -9712,7 +9712,7 @@ func (a *ComputeApiService) UpdateComputeServerSettingExecute(r ApiUpdateCompute localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeServerSetting diff --git a/intersight_gosdk/api_cond.go b/intersight_gosdk/api_cond.go index 172f22466f..ebcf75f367 100644 --- a/intersight_gosdk/api_cond.go +++ b/intersight_gosdk/api_cond.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *CondApiService) CreateCondAlarmSuppressionExecute(r ApiCreateCondAlarmS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.condAlarmSuppression @@ -623,52 +623,52 @@ func (a *CondApiService) GetCondAlarmAggregationListExecute(r ApiGetCondAlarmAgg localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1206,52 +1206,52 @@ func (a *CondApiService) GetCondAlarmClassificationListExecute(r ApiGetCondAlarm localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1635,52 +1635,52 @@ func (a *CondApiService) GetCondAlarmDefinitionListExecute(r ApiGetCondAlarmDefi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1910,52 +1910,52 @@ func (a *CondApiService) GetCondAlarmListExecute(r ApiGetCondAlarmListRequest) ( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2339,52 +2339,52 @@ func (a *CondApiService) GetCondAlarmSuppressionListExecute(r ApiGetCondAlarmSup localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2922,52 +2922,52 @@ func (a *CondApiService) GetCondHclStatusDetailListExecute(r ApiGetCondHclStatus localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3351,52 +3351,52 @@ func (a *CondApiService) GetCondHclStatusJobListExecute(r ApiGetCondHclStatusJob localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3626,52 +3626,52 @@ func (a *CondApiService) GetCondHclStatusListExecute(r ApiGetCondHclStatusListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3862,7 +3862,7 @@ func (a *CondApiService) PatchCondAlarmExecute(r ApiPatchCondAlarmRequest) (*Con localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.condAlarm @@ -4038,7 +4038,7 @@ func (a *CondApiService) PatchCondAlarmSuppressionExecute(r ApiPatchCondAlarmSup localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.condAlarmSuppression @@ -4214,7 +4214,7 @@ func (a *CondApiService) UpdateCondAlarmExecute(r ApiUpdateCondAlarmRequest) (*C localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.condAlarm @@ -4390,7 +4390,7 @@ func (a *CondApiService) UpdateCondAlarmSuppressionExecute(r ApiUpdateCondAlarmS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.condAlarmSuppression diff --git a/intersight_gosdk/api_connectorpack.go b/intersight_gosdk/api_connectorpack.go index a6678ecf0b..2e29797d02 100644 --- a/intersight_gosdk/api_connectorpack.go +++ b/intersight_gosdk/api_connectorpack.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *ConnectorpackApiService) CreateConnectorpackConnectorPackUpgradeExecute localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.connectorpackConnectorPackUpgrade @@ -623,52 +623,52 @@ func (a *ConnectorpackApiService) GetConnectorpackConnectorPackUpgradeListExecut localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *ConnectorpackApiService) GetConnectorpackUpgradeImpactListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/intersight_gosdk/api_console.go b/intersight_gosdk/api_console.go index 7e29211512..93f82f655a 100644 --- a/intersight_gosdk/api_console.go +++ b/intersight_gosdk/api_console.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *ConsoleApiService) GetConsoleConsoleConfigListExecute(r ApiGetConsoleCo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/intersight_gosdk/api_convergedinfra.go b/intersight_gosdk/api_convergedinfra.go index d82ffc7d3a..90c0b1223b 100644 --- a/intersight_gosdk/api_convergedinfra.go +++ b/intersight_gosdk/api_convergedinfra.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *ConvergedinfraApiService) GetConvergedinfraAdapterComplianceDetailsList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -882,52 +882,52 @@ func (a *ConvergedinfraApiService) GetConvergedinfraPodComplianceInfoListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *ConvergedinfraApiService) GetConvergedinfraPodListExecute(r ApiGetConve localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1586,52 +1586,52 @@ func (a *ConvergedinfraApiService) GetConvergedinfraServerComplianceDetailsListE localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2015,52 +2015,52 @@ func (a *ConvergedinfraApiService) GetConvergedinfraStorageComplianceDetailsList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2444,52 +2444,52 @@ func (a *ConvergedinfraApiService) GetConvergedinfraSwitchComplianceDetailsListE localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2680,7 +2680,7 @@ func (a *ConvergedinfraApiService) PatchConvergedinfraPodExecute(r ApiPatchConve localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.convergedinfraPod @@ -2856,7 +2856,7 @@ func (a *ConvergedinfraApiService) UpdateConvergedinfraPodExecute(r ApiUpdateCon localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.convergedinfraPod diff --git a/intersight_gosdk/api_crd.go b/intersight_gosdk/api_crd.go index 9f032e7596..c7a69ac032 100644 --- a/intersight_gosdk/api_crd.go +++ b/intersight_gosdk/api_crd.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *CrdApiService) CreateCrdCustomResourceExecute(r ApiCreateCrdCustomResou localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.crdCustomResource @@ -623,52 +623,52 @@ func (a *CrdApiService) GetCrdCustomResourceListExecute(r ApiGetCrdCustomResourc localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -859,7 +859,7 @@ func (a *CrdApiService) PatchCrdCustomResourceExecute(r ApiPatchCrdCustomResourc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.crdCustomResource @@ -1035,7 +1035,7 @@ func (a *CrdApiService) UpdateCrdCustomResourceExecute(r ApiUpdateCrdCustomResou localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.crdCustomResource diff --git a/intersight_gosdk/api_deviceconnector.go b/intersight_gosdk/api_deviceconnector.go index ab8cc7ed88..d18cc6d7ed 100644 --- a/intersight_gosdk/api_deviceconnector.go +++ b/intersight_gosdk/api_deviceconnector.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *DeviceconnectorApiService) CreateDeviceconnectorPolicyExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.deviceconnectorPolicy @@ -623,52 +623,52 @@ func (a *DeviceconnectorApiService) GetDeviceconnectorPolicyListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -859,7 +859,7 @@ func (a *DeviceconnectorApiService) PatchDeviceconnectorPolicyExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.deviceconnectorPolicy @@ -1035,7 +1035,7 @@ func (a *DeviceconnectorApiService) UpdateDeviceconnectorPolicyExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.deviceconnectorPolicy diff --git a/intersight_gosdk/api_dnac.go b/intersight_gosdk/api_dnac.go index 517ae2a4ed..f5f2b14d9f 100644 --- a/intersight_gosdk/api_dnac.go +++ b/intersight_gosdk/api_dnac.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -453,52 +453,52 @@ func (a *DnacApiService) GetDnacDeviceInterfaceListExecute(r ApiGetDnacDeviceInt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *DnacApiService) GetDnacDeviceListExecute(r ApiGetDnacDeviceListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1311,52 +1311,52 @@ func (a *DnacApiService) GetDnacExternalBorderNodeInterfaceListExecute(r ApiGetD localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1586,52 +1586,52 @@ func (a *DnacApiService) GetDnacExternalBorderNodeListExecute(r ApiGetDnacExtern localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2015,52 +2015,52 @@ func (a *DnacApiService) GetDnacFabricSiteListExecute(r ApiGetDnacFabricSiteList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2598,52 +2598,52 @@ func (a *DnacApiService) GetDnacSiteIpPoolListExecute(r ApiGetDnacSiteIpPoolList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2873,52 +2873,52 @@ func (a *DnacApiService) GetDnacSiteListExecute(r ApiGetDnacSiteListRequest) (*D localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3302,52 +3302,52 @@ func (a *DnacApiService) GetDnacTemplateListExecute(r ApiGetDnacTemplateListRequ localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3731,52 +3731,52 @@ func (a *DnacApiService) GetDnacTransitListExecute(r ApiGetDnacTransitListReques localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4160,52 +4160,52 @@ func (a *DnacApiService) GetDnacVirtualNetworkFabricSiteListExecute(r ApiGetDnac localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/intersight_gosdk/api_equipment.go b/intersight_gosdk/api_equipment.go index c95d112c80..9c840185c1 100644 --- a/intersight_gosdk/api_equipment.go +++ b/intersight_gosdk/api_equipment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -453,52 +453,52 @@ func (a *EquipmentApiService) GetEquipmentChassisIdPoolListExecute(r ApiGetEquip localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -882,52 +882,52 @@ func (a *EquipmentApiService) GetEquipmentChassisIdentityListExecute(r ApiGetEqu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *EquipmentApiService) GetEquipmentChassisListExecute(r ApiGetEquipmentCh localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1586,52 +1586,52 @@ func (a *EquipmentApiService) GetEquipmentChassisOperationListExecute(r ApiGetEq localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2015,52 +2015,52 @@ func (a *EquipmentApiService) GetEquipmentDeviceSummaryListExecute(r ApiGetEquip localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2444,52 +2444,52 @@ func (a *EquipmentApiService) GetEquipmentEndPointLogListExecute(r ApiGetEquipme localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2873,52 +2873,52 @@ func (a *EquipmentApiService) GetEquipmentExpanderModuleListExecute(r ApiGetEqui localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3456,52 +3456,52 @@ func (a *EquipmentApiService) GetEquipmentFanControlListExecute(r ApiGetEquipmen localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3731,52 +3731,52 @@ func (a *EquipmentApiService) GetEquipmentFanListExecute(r ApiGetEquipmentFanLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4160,52 +4160,52 @@ func (a *EquipmentApiService) GetEquipmentFanModuleListExecute(r ApiGetEquipment localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4743,52 +4743,52 @@ func (a *EquipmentApiService) GetEquipmentFexIdentityListExecute(r ApiGetEquipme localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5018,52 +5018,52 @@ func (a *EquipmentApiService) GetEquipmentFexListExecute(r ApiGetEquipmentFexLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5447,52 +5447,52 @@ func (a *EquipmentApiService) GetEquipmentFexOperationListExecute(r ApiGetEquipm localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5876,52 +5876,52 @@ func (a *EquipmentApiService) GetEquipmentFruListExecute(r ApiGetEquipmentFruLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6305,52 +6305,52 @@ func (a *EquipmentApiService) GetEquipmentHybridDriveSlotListExecute(r ApiGetEqu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6734,52 +6734,52 @@ func (a *EquipmentApiService) GetEquipmentIoCardListExecute(r ApiGetEquipmentIoC localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7163,52 +7163,52 @@ func (a *EquipmentApiService) GetEquipmentIoCardOperationListExecute(r ApiGetEqu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7592,52 +7592,52 @@ func (a *EquipmentApiService) GetEquipmentIoExpanderListExecute(r ApiGetEquipmen localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8021,52 +8021,52 @@ func (a *EquipmentApiService) GetEquipmentLocatorLedListExecute(r ApiGetEquipmen localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8450,52 +8450,52 @@ func (a *EquipmentApiService) GetEquipmentLogDownloadListExecute(r ApiGetEquipme localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9033,52 +9033,52 @@ func (a *EquipmentApiService) GetEquipmentPsuControlListExecute(r ApiGetEquipmen localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9308,52 +9308,52 @@ func (a *EquipmentApiService) GetEquipmentPsuListExecute(r ApiGetEquipmentPsuLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9737,52 +9737,52 @@ func (a *EquipmentApiService) GetEquipmentRackEnclosureListExecute(r ApiGetEquip localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10166,52 +10166,52 @@ func (a *EquipmentApiService) GetEquipmentRackEnclosureSlotListExecute(r ApiGetE localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10595,52 +10595,52 @@ func (a *EquipmentApiService) GetEquipmentSensorListExecute(r ApiGetEquipmentSen localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11024,52 +11024,52 @@ func (a *EquipmentApiService) GetEquipmentSharedIoModuleListExecute(r ApiGetEqui localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11453,52 +11453,52 @@ func (a *EquipmentApiService) GetEquipmentSwitchCardListExecute(r ApiGetEquipmen localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11882,52 +11882,52 @@ func (a *EquipmentApiService) GetEquipmentSwitchOperationListExecute(r ApiGetEqu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12311,52 +12311,52 @@ func (a *EquipmentApiService) GetEquipmentSystemIoControllerListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12740,52 +12740,52 @@ func (a *EquipmentApiService) GetEquipmentTpmListExecute(r ApiGetEquipmentTpmLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13169,52 +13169,52 @@ func (a *EquipmentApiService) GetEquipmentTransceiverListExecute(r ApiGetEquipme localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13405,7 +13405,7 @@ func (a *EquipmentApiService) PatchEquipmentChassisExecute(r ApiPatchEquipmentCh localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentChassis @@ -13581,7 +13581,7 @@ func (a *EquipmentApiService) PatchEquipmentChassisIdentityExecute(r ApiPatchEqu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentChassisIdentity @@ -13757,7 +13757,7 @@ func (a *EquipmentApiService) PatchEquipmentChassisOperationExecute(r ApiPatchEq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentChassisOperation @@ -13933,7 +13933,7 @@ func (a *EquipmentApiService) PatchEquipmentExpanderModuleExecute(r ApiPatchEqui localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentExpanderModule @@ -14109,7 +14109,7 @@ func (a *EquipmentApiService) PatchEquipmentFanExecute(r ApiPatchEquipmentFanReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFan @@ -14285,7 +14285,7 @@ func (a *EquipmentApiService) PatchEquipmentFanControlExecute(r ApiPatchEquipmen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFanControl @@ -14461,7 +14461,7 @@ func (a *EquipmentApiService) PatchEquipmentFanModuleExecute(r ApiPatchEquipment localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFanModule @@ -14637,7 +14637,7 @@ func (a *EquipmentApiService) PatchEquipmentFexExecute(r ApiPatchEquipmentFexReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFex @@ -14813,7 +14813,7 @@ func (a *EquipmentApiService) PatchEquipmentFexIdentityExecute(r ApiPatchEquipme localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFexIdentity @@ -14989,7 +14989,7 @@ func (a *EquipmentApiService) PatchEquipmentFexOperationExecute(r ApiPatchEquipm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFexOperation @@ -15165,7 +15165,7 @@ func (a *EquipmentApiService) PatchEquipmentFruExecute(r ApiPatchEquipmentFruReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFru @@ -15341,7 +15341,7 @@ func (a *EquipmentApiService) PatchEquipmentIoCardExecute(r ApiPatchEquipmentIoC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentIoCard @@ -15517,7 +15517,7 @@ func (a *EquipmentApiService) PatchEquipmentIoCardOperationExecute(r ApiPatchEqu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentIoCardOperation @@ -15693,7 +15693,7 @@ func (a *EquipmentApiService) PatchEquipmentIoExpanderExecute(r ApiPatchEquipmen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentIoExpander @@ -15869,7 +15869,7 @@ func (a *EquipmentApiService) PatchEquipmentLocatorLedExecute(r ApiPatchEquipmen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentLocatorLed @@ -16045,7 +16045,7 @@ func (a *EquipmentApiService) PatchEquipmentPsuExecute(r ApiPatchEquipmentPsuReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentPsu @@ -16221,7 +16221,7 @@ func (a *EquipmentApiService) PatchEquipmentPsuControlExecute(r ApiPatchEquipmen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentPsuControl @@ -16397,7 +16397,7 @@ func (a *EquipmentApiService) PatchEquipmentRackEnclosureExecute(r ApiPatchEquip localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentRackEnclosure @@ -16573,7 +16573,7 @@ func (a *EquipmentApiService) PatchEquipmentRackEnclosureSlotExecute(r ApiPatchE localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentRackEnclosureSlot @@ -16749,7 +16749,7 @@ func (a *EquipmentApiService) PatchEquipmentSharedIoModuleExecute(r ApiPatchEqui localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentSharedIoModule @@ -16925,7 +16925,7 @@ func (a *EquipmentApiService) PatchEquipmentSwitchCardExecute(r ApiPatchEquipmen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentSwitchCard @@ -17101,7 +17101,7 @@ func (a *EquipmentApiService) PatchEquipmentSwitchOperationExecute(r ApiPatchEqu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentSwitchOperation @@ -17277,7 +17277,7 @@ func (a *EquipmentApiService) PatchEquipmentSystemIoControllerExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentSystemIoController @@ -17453,7 +17453,7 @@ func (a *EquipmentApiService) PatchEquipmentTpmExecute(r ApiPatchEquipmentTpmReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentTpm @@ -17629,7 +17629,7 @@ func (a *EquipmentApiService) PatchEquipmentTransceiverExecute(r ApiPatchEquipme localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentTransceiver @@ -17805,7 +17805,7 @@ func (a *EquipmentApiService) UpdateEquipmentChassisExecute(r ApiUpdateEquipment localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentChassis @@ -17981,7 +17981,7 @@ func (a *EquipmentApiService) UpdateEquipmentChassisIdentityExecute(r ApiUpdateE localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentChassisIdentity @@ -18157,7 +18157,7 @@ func (a *EquipmentApiService) UpdateEquipmentChassisOperationExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentChassisOperation @@ -18333,7 +18333,7 @@ func (a *EquipmentApiService) UpdateEquipmentExpanderModuleExecute(r ApiUpdateEq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentExpanderModule @@ -18509,7 +18509,7 @@ func (a *EquipmentApiService) UpdateEquipmentFanExecute(r ApiUpdateEquipmentFanR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFan @@ -18685,7 +18685,7 @@ func (a *EquipmentApiService) UpdateEquipmentFanControlExecute(r ApiUpdateEquipm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFanControl @@ -18861,7 +18861,7 @@ func (a *EquipmentApiService) UpdateEquipmentFanModuleExecute(r ApiUpdateEquipme localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFanModule @@ -19037,7 +19037,7 @@ func (a *EquipmentApiService) UpdateEquipmentFexExecute(r ApiUpdateEquipmentFexR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFex @@ -19213,7 +19213,7 @@ func (a *EquipmentApiService) UpdateEquipmentFexIdentityExecute(r ApiUpdateEquip localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFexIdentity @@ -19389,7 +19389,7 @@ func (a *EquipmentApiService) UpdateEquipmentFexOperationExecute(r ApiUpdateEqui localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFexOperation @@ -19565,7 +19565,7 @@ func (a *EquipmentApiService) UpdateEquipmentFruExecute(r ApiUpdateEquipmentFruR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFru @@ -19741,7 +19741,7 @@ func (a *EquipmentApiService) UpdateEquipmentIoCardExecute(r ApiUpdateEquipmentI localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentIoCard @@ -19917,7 +19917,7 @@ func (a *EquipmentApiService) UpdateEquipmentIoCardOperationExecute(r ApiUpdateE localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentIoCardOperation @@ -20093,7 +20093,7 @@ func (a *EquipmentApiService) UpdateEquipmentIoExpanderExecute(r ApiUpdateEquipm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentIoExpander @@ -20269,7 +20269,7 @@ func (a *EquipmentApiService) UpdateEquipmentLocatorLedExecute(r ApiUpdateEquipm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentLocatorLed @@ -20445,7 +20445,7 @@ func (a *EquipmentApiService) UpdateEquipmentPsuExecute(r ApiUpdateEquipmentPsuR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentPsu @@ -20621,7 +20621,7 @@ func (a *EquipmentApiService) UpdateEquipmentPsuControlExecute(r ApiUpdateEquipm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentPsuControl @@ -20797,7 +20797,7 @@ func (a *EquipmentApiService) UpdateEquipmentRackEnclosureExecute(r ApiUpdateEqu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentRackEnclosure @@ -20973,7 +20973,7 @@ func (a *EquipmentApiService) UpdateEquipmentRackEnclosureSlotExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentRackEnclosureSlot @@ -21149,7 +21149,7 @@ func (a *EquipmentApiService) UpdateEquipmentSharedIoModuleExecute(r ApiUpdateEq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentSharedIoModule @@ -21325,7 +21325,7 @@ func (a *EquipmentApiService) UpdateEquipmentSwitchCardExecute(r ApiUpdateEquipm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentSwitchCard @@ -21501,7 +21501,7 @@ func (a *EquipmentApiService) UpdateEquipmentSwitchOperationExecute(r ApiUpdateE localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentSwitchOperation @@ -21677,7 +21677,7 @@ func (a *EquipmentApiService) UpdateEquipmentSystemIoControllerExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentSystemIoController @@ -21853,7 +21853,7 @@ func (a *EquipmentApiService) UpdateEquipmentTpmExecute(r ApiUpdateEquipmentTpmR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentTpm @@ -22029,7 +22029,7 @@ func (a *EquipmentApiService) UpdateEquipmentTransceiverExecute(r ApiUpdateEquip localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentTransceiver diff --git a/intersight_gosdk/api_ether.go b/intersight_gosdk/api_ether.go index 857b2c57cd..c61c6d406b 100644 --- a/intersight_gosdk/api_ether.go +++ b/intersight_gosdk/api_ether.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *EtherApiService) GetEtherHostPortListExecute(r ApiGetEtherHostPortListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *EtherApiService) GetEtherNetworkPortListExecute(r ApiGetEtherNetworkPor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *EtherApiService) GetEtherPhysicalPortListExecute(r ApiGetEtherPhysicalP localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1586,52 +1586,52 @@ func (a *EtherApiService) GetEtherPortChannelListExecute(r ApiGetEtherPortChanne localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1822,7 +1822,7 @@ func (a *EtherApiService) PatchEtherHostPortExecute(r ApiPatchEtherHostPortReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.etherHostPort @@ -1998,7 +1998,7 @@ func (a *EtherApiService) PatchEtherNetworkPortExecute(r ApiPatchEtherNetworkPor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.etherNetworkPort @@ -2174,7 +2174,7 @@ func (a *EtherApiService) PatchEtherPhysicalPortExecute(r ApiPatchEtherPhysicalP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.etherPhysicalPort @@ -2350,7 +2350,7 @@ func (a *EtherApiService) UpdateEtherHostPortExecute(r ApiUpdateEtherHostPortReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.etherHostPort @@ -2526,7 +2526,7 @@ func (a *EtherApiService) UpdateEtherNetworkPortExecute(r ApiUpdateEtherNetworkP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.etherNetworkPort @@ -2702,7 +2702,7 @@ func (a *EtherApiService) UpdateEtherPhysicalPortExecute(r ApiUpdateEtherPhysica localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.etherPhysicalPort diff --git a/intersight_gosdk/api_externalsite.go b/intersight_gosdk/api_externalsite.go index 8ae25901dd..c7f9dcd3a1 100644 --- a/intersight_gosdk/api_externalsite.go +++ b/intersight_gosdk/api_externalsite.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *ExternalsiteApiService) CreateExternalsiteAuthorizationExecute(r ApiCre localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.externalsiteAuthorization @@ -481,52 +481,52 @@ func (a *ExternalsiteApiService) GetExternalsiteAuthorizationListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -717,7 +717,7 @@ func (a *ExternalsiteApiService) PatchExternalsiteAuthorizationExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.externalsiteAuthorization @@ -893,7 +893,7 @@ func (a *ExternalsiteApiService) UpdateExternalsiteAuthorizationExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.externalsiteAuthorization diff --git a/intersight_gosdk/api_fabric.go b/intersight_gosdk/api_fabric.go index b511598157..126939c6d5 100644 --- a/intersight_gosdk/api_fabric.go +++ b/intersight_gosdk/api_fabric.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *FabricApiService) CreateFabricAppliancePcRoleExecute(r ApiCreateFabricA localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricAppliancePcRole @@ -291,10 +291,10 @@ func (a *FabricApiService) CreateFabricApplianceRoleExecute(r ApiCreateFabricApp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricApplianceRole @@ -473,10 +473,10 @@ func (a *FabricApiService) CreateFabricEstimateImpactExecute(r ApiCreateFabricEs localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricEstimateImpact @@ -655,10 +655,10 @@ func (a *FabricApiService) CreateFabricEthNetworkControlPolicyExecute(r ApiCreat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricEthNetworkControlPolicy @@ -837,10 +837,10 @@ func (a *FabricApiService) CreateFabricEthNetworkGroupPolicyExecute(r ApiCreateF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricEthNetworkGroupPolicy @@ -1019,10 +1019,10 @@ func (a *FabricApiService) CreateFabricEthNetworkPolicyExecute(r ApiCreateFabric localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricEthNetworkPolicy @@ -1201,10 +1201,10 @@ func (a *FabricApiService) CreateFabricFcNetworkPolicyExecute(r ApiCreateFabricF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricFcNetworkPolicy @@ -1383,10 +1383,10 @@ func (a *FabricApiService) CreateFabricFcStorageRoleExecute(r ApiCreateFabricFcS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricFcStorageRole @@ -1565,10 +1565,10 @@ func (a *FabricApiService) CreateFabricFcUplinkPcRoleExecute(r ApiCreateFabricFc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricFcUplinkPcRole @@ -1747,10 +1747,10 @@ func (a *FabricApiService) CreateFabricFcUplinkRoleExecute(r ApiCreateFabricFcUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricFcUplinkRole @@ -1929,10 +1929,10 @@ func (a *FabricApiService) CreateFabricFcZonePolicyExecute(r ApiCreateFabricFcZo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricFcZonePolicy @@ -2111,10 +2111,10 @@ func (a *FabricApiService) CreateFabricFcoeUplinkPcRoleExecute(r ApiCreateFabric localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricFcoeUplinkPcRole @@ -2293,10 +2293,10 @@ func (a *FabricApiService) CreateFabricFcoeUplinkRoleExecute(r ApiCreateFabricFc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricFcoeUplinkRole @@ -2475,10 +2475,10 @@ func (a *FabricApiService) CreateFabricFlowControlPolicyExecute(r ApiCreateFabri localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricFlowControlPolicy @@ -2657,10 +2657,10 @@ func (a *FabricApiService) CreateFabricLanPinGroupExecute(r ApiCreateFabricLanPi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricLanPinGroup @@ -2839,10 +2839,10 @@ func (a *FabricApiService) CreateFabricLinkAggregationPolicyExecute(r ApiCreateF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricLinkAggregationPolicy @@ -3021,10 +3021,10 @@ func (a *FabricApiService) CreateFabricLinkControlPolicyExecute(r ApiCreateFabri localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricLinkControlPolicy @@ -3203,10 +3203,10 @@ func (a *FabricApiService) CreateFabricMulticastPolicyExecute(r ApiCreateFabricM localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricMulticastPolicy @@ -3385,10 +3385,10 @@ func (a *FabricApiService) CreateFabricPcOperationExecute(r ApiCreateFabricPcOpe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricPcOperation @@ -3567,10 +3567,10 @@ func (a *FabricApiService) CreateFabricPortModeExecute(r ApiCreateFabricPortMode localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricPortMode @@ -3749,10 +3749,10 @@ func (a *FabricApiService) CreateFabricPortOperationExecute(r ApiCreateFabricPor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricPortOperation @@ -3931,10 +3931,10 @@ func (a *FabricApiService) CreateFabricPortPolicyExecute(r ApiCreateFabricPortPo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricPortPolicy @@ -4113,10 +4113,10 @@ func (a *FabricApiService) CreateFabricSanPinGroupExecute(r ApiCreateFabricSanPi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSanPinGroup @@ -4295,10 +4295,10 @@ func (a *FabricApiService) CreateFabricServerRoleExecute(r ApiCreateFabricServer localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricServerRole @@ -4477,10 +4477,10 @@ func (a *FabricApiService) CreateFabricSpanDestEthPortExecute(r ApiCreateFabricS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSpanDestEthPort @@ -4659,10 +4659,10 @@ func (a *FabricApiService) CreateFabricSpanSessionExecute(r ApiCreateFabricSpanS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSpanSession @@ -4841,10 +4841,10 @@ func (a *FabricApiService) CreateFabricSpanSourceEthPortExecute(r ApiCreateFabri localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSpanSourceEthPort @@ -5023,10 +5023,10 @@ func (a *FabricApiService) CreateFabricSpanSourceEthPortChannelExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSpanSourceEthPortChannel @@ -5205,10 +5205,10 @@ func (a *FabricApiService) CreateFabricSpanSourceVlanExecute(r ApiCreateFabricSp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSpanSourceVlan @@ -5387,10 +5387,10 @@ func (a *FabricApiService) CreateFabricSpanSourceVnicEthIfExecute(r ApiCreateFab localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSpanSourceVnicEthIf @@ -5569,10 +5569,10 @@ func (a *FabricApiService) CreateFabricSwitchClusterProfileExecute(r ApiCreateFa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchClusterProfile @@ -5751,10 +5751,10 @@ func (a *FabricApiService) CreateFabricSwitchClusterProfileTemplateExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchClusterProfileTemplate @@ -5933,10 +5933,10 @@ func (a *FabricApiService) CreateFabricSwitchControlPolicyExecute(r ApiCreateFab localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchControlPolicy @@ -6115,10 +6115,10 @@ func (a *FabricApiService) CreateFabricSwitchProfileExecute(r ApiCreateFabricSwi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchProfile @@ -6297,10 +6297,10 @@ func (a *FabricApiService) CreateFabricSwitchProfileTemplateExecute(r ApiCreateF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchProfileTemplate @@ -6479,10 +6479,10 @@ func (a *FabricApiService) CreateFabricSystemQosPolicyExecute(r ApiCreateFabricS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSystemQosPolicy @@ -6661,10 +6661,10 @@ func (a *FabricApiService) CreateFabricUplinkPcRoleExecute(r ApiCreateFabricUpli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricUplinkPcRole @@ -6843,10 +6843,10 @@ func (a *FabricApiService) CreateFabricUplinkRoleExecute(r ApiCreateFabricUplink localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricUplinkRole @@ -7025,10 +7025,10 @@ func (a *FabricApiService) CreateFabricVlanExecute(r ApiCreateFabricVlanRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricVlan @@ -7207,10 +7207,10 @@ func (a *FabricApiService) CreateFabricVsanExecute(r ApiCreateFabricVsanRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricVsan @@ -13117,52 +13117,52 @@ func (a *FabricApiService) GetFabricAppliancePcRoleListExecute(r ApiGetFabricApp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13546,52 +13546,52 @@ func (a *FabricApiService) GetFabricApplianceRoleListExecute(r ApiGetFabricAppli localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13975,52 +13975,52 @@ func (a *FabricApiService) GetFabricConfigChangeDetailListExecute(r ApiGetFabric localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14558,52 +14558,52 @@ func (a *FabricApiService) GetFabricConfigResultEntryListExecute(r ApiGetFabricC localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14833,52 +14833,52 @@ func (a *FabricApiService) GetFabricConfigResultListExecute(r ApiGetFabricConfig localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15262,52 +15262,52 @@ func (a *FabricApiService) GetFabricElementIdentityListExecute(r ApiGetFabricEle localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15845,52 +15845,52 @@ func (a *FabricApiService) GetFabricEthNetworkControlPolicyInventoryListExecute( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16120,52 +16120,52 @@ func (a *FabricApiService) GetFabricEthNetworkControlPolicyListExecute(r ApiGetF localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16703,52 +16703,52 @@ func (a *FabricApiService) GetFabricEthNetworkGroupPolicyInventoryListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16978,52 +16978,52 @@ func (a *FabricApiService) GetFabricEthNetworkGroupPolicyListExecute(r ApiGetFab localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17407,52 +17407,52 @@ func (a *FabricApiService) GetFabricEthNetworkPolicyListExecute(r ApiGetFabricEt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17836,52 +17836,52 @@ func (a *FabricApiService) GetFabricFcNetworkPolicyListExecute(r ApiGetFabricFcN localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18265,52 +18265,52 @@ func (a *FabricApiService) GetFabricFcStorageRoleListExecute(r ApiGetFabricFcSto localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18694,52 +18694,52 @@ func (a *FabricApiService) GetFabricFcUplinkPcRoleListExecute(r ApiGetFabricFcUp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19123,52 +19123,52 @@ func (a *FabricApiService) GetFabricFcUplinkRoleListExecute(r ApiGetFabricFcUpli localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19552,52 +19552,52 @@ func (a *FabricApiService) GetFabricFcZonePolicyListExecute(r ApiGetFabricFcZone localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19981,52 +19981,52 @@ func (a *FabricApiService) GetFabricFcoeUplinkPcRoleListExecute(r ApiGetFabricFc localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20410,52 +20410,52 @@ func (a *FabricApiService) GetFabricFcoeUplinkRoleListExecute(r ApiGetFabricFcoe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20839,52 +20839,52 @@ func (a *FabricApiService) GetFabricFlowControlPolicyListExecute(r ApiGetFabricF localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21268,52 +21268,52 @@ func (a *FabricApiService) GetFabricLanPinGroupListExecute(r ApiGetFabricLanPinG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21697,52 +21697,52 @@ func (a *FabricApiService) GetFabricLinkAggregationPolicyListExecute(r ApiGetFab localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22126,52 +22126,52 @@ func (a *FabricApiService) GetFabricLinkControlPolicyListExecute(r ApiGetFabricL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22555,52 +22555,52 @@ func (a *FabricApiService) GetFabricMulticastPolicyListExecute(r ApiGetFabricMul localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22984,52 +22984,52 @@ func (a *FabricApiService) GetFabricPcMemberListExecute(r ApiGetFabricPcMemberLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23413,52 +23413,52 @@ func (a *FabricApiService) GetFabricPcOperationListExecute(r ApiGetFabricPcOpera localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23842,52 +23842,52 @@ func (a *FabricApiService) GetFabricPortModeListExecute(r ApiGetFabricPortModeLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24271,52 +24271,52 @@ func (a *FabricApiService) GetFabricPortOperationListExecute(r ApiGetFabricPortO localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24700,52 +24700,52 @@ func (a *FabricApiService) GetFabricPortPolicyListExecute(r ApiGetFabricPortPoli localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25129,52 +25129,52 @@ func (a *FabricApiService) GetFabricSanPinGroupListExecute(r ApiGetFabricSanPinG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25558,52 +25558,52 @@ func (a *FabricApiService) GetFabricServerRoleListExecute(r ApiGetFabricServerRo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25987,52 +25987,52 @@ func (a *FabricApiService) GetFabricSpanDestEthPortListExecute(r ApiGetFabricSpa localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26416,52 +26416,52 @@ func (a *FabricApiService) GetFabricSpanSessionListExecute(r ApiGetFabricSpanSes localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26999,52 +26999,52 @@ func (a *FabricApiService) GetFabricSpanSourceEthPortChannelListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27274,52 +27274,52 @@ func (a *FabricApiService) GetFabricSpanSourceEthPortListExecute(r ApiGetFabricS localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27703,52 +27703,52 @@ func (a *FabricApiService) GetFabricSpanSourceVlanListExecute(r ApiGetFabricSpan localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28132,52 +28132,52 @@ func (a *FabricApiService) GetFabricSpanSourceVnicEthIfListExecute(r ApiGetFabri localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28561,52 +28561,52 @@ func (a *FabricApiService) GetFabricSwitchClusterProfileListExecute(r ApiGetFabr localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28990,52 +28990,52 @@ func (a *FabricApiService) GetFabricSwitchClusterProfileTemplateListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29419,52 +29419,52 @@ func (a *FabricApiService) GetFabricSwitchControlPolicyListExecute(r ApiGetFabri localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29848,52 +29848,52 @@ func (a *FabricApiService) GetFabricSwitchProfileListExecute(r ApiGetFabricSwitc localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -30277,52 +30277,52 @@ func (a *FabricApiService) GetFabricSwitchProfileTemplateListExecute(r ApiGetFab localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -30706,52 +30706,52 @@ func (a *FabricApiService) GetFabricSystemQosPolicyListExecute(r ApiGetFabricSys localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -31135,52 +31135,52 @@ func (a *FabricApiService) GetFabricUplinkPcRoleListExecute(r ApiGetFabricUplink localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -31564,52 +31564,52 @@ func (a *FabricApiService) GetFabricUplinkRoleListExecute(r ApiGetFabricUplinkRo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -32147,52 +32147,52 @@ func (a *FabricApiService) GetFabricVlanInventoryListExecute(r ApiGetFabricVlanI localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -32422,52 +32422,52 @@ func (a *FabricApiService) GetFabricVlanListExecute(r ApiGetFabricVlanListReques localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -32851,52 +32851,52 @@ func (a *FabricApiService) GetFabricVlanSetListExecute(r ApiGetFabricVlanSetList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -33434,52 +33434,52 @@ func (a *FabricApiService) GetFabricVsanInventoryListExecute(r ApiGetFabricVsanI localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -33709,52 +33709,52 @@ func (a *FabricApiService) GetFabricVsanListExecute(r ApiGetFabricVsanListReques localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -33945,7 +33945,7 @@ func (a *FabricApiService) PatchFabricAppliancePcRoleExecute(r ApiPatchFabricApp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricAppliancePcRole @@ -34121,7 +34121,7 @@ func (a *FabricApiService) PatchFabricApplianceRoleExecute(r ApiPatchFabricAppli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricApplianceRole @@ -34297,7 +34297,7 @@ func (a *FabricApiService) PatchFabricElementIdentityExecute(r ApiPatchFabricEle localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricElementIdentity @@ -34473,7 +34473,7 @@ func (a *FabricApiService) PatchFabricEthNetworkControlPolicyExecute(r ApiPatchF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricEthNetworkControlPolicy @@ -34649,7 +34649,7 @@ func (a *FabricApiService) PatchFabricEthNetworkGroupPolicyExecute(r ApiPatchFab localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricEthNetworkGroupPolicy @@ -34825,7 +34825,7 @@ func (a *FabricApiService) PatchFabricEthNetworkPolicyExecute(r ApiPatchFabricEt localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricEthNetworkPolicy @@ -35001,7 +35001,7 @@ func (a *FabricApiService) PatchFabricFcNetworkPolicyExecute(r ApiPatchFabricFcN localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcNetworkPolicy @@ -35177,7 +35177,7 @@ func (a *FabricApiService) PatchFabricFcStorageRoleExecute(r ApiPatchFabricFcSto localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcStorageRole @@ -35353,7 +35353,7 @@ func (a *FabricApiService) PatchFabricFcUplinkPcRoleExecute(r ApiPatchFabricFcUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcUplinkPcRole @@ -35529,7 +35529,7 @@ func (a *FabricApiService) PatchFabricFcUplinkRoleExecute(r ApiPatchFabricFcUpli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcUplinkRole @@ -35705,7 +35705,7 @@ func (a *FabricApiService) PatchFabricFcZonePolicyExecute(r ApiPatchFabricFcZone localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcZonePolicy @@ -35881,7 +35881,7 @@ func (a *FabricApiService) PatchFabricFcoeUplinkPcRoleExecute(r ApiPatchFabricFc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcoeUplinkPcRole @@ -36057,7 +36057,7 @@ func (a *FabricApiService) PatchFabricFcoeUplinkRoleExecute(r ApiPatchFabricFcoe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcoeUplinkRole @@ -36233,7 +36233,7 @@ func (a *FabricApiService) PatchFabricFlowControlPolicyExecute(r ApiPatchFabricF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFlowControlPolicy @@ -36409,7 +36409,7 @@ func (a *FabricApiService) PatchFabricLanPinGroupExecute(r ApiPatchFabricLanPinG localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricLanPinGroup @@ -36585,7 +36585,7 @@ func (a *FabricApiService) PatchFabricLinkAggregationPolicyExecute(r ApiPatchFab localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricLinkAggregationPolicy @@ -36761,7 +36761,7 @@ func (a *FabricApiService) PatchFabricLinkControlPolicyExecute(r ApiPatchFabricL localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricLinkControlPolicy @@ -36937,7 +36937,7 @@ func (a *FabricApiService) PatchFabricMulticastPolicyExecute(r ApiPatchFabricMul localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricMulticastPolicy @@ -37113,7 +37113,7 @@ func (a *FabricApiService) PatchFabricPcOperationExecute(r ApiPatchFabricPcOpera localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricPcOperation @@ -37289,7 +37289,7 @@ func (a *FabricApiService) PatchFabricPortModeExecute(r ApiPatchFabricPortModeRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricPortMode @@ -37465,7 +37465,7 @@ func (a *FabricApiService) PatchFabricPortOperationExecute(r ApiPatchFabricPortO localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricPortOperation @@ -37641,7 +37641,7 @@ func (a *FabricApiService) PatchFabricPortPolicyExecute(r ApiPatchFabricPortPoli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricPortPolicy @@ -37817,7 +37817,7 @@ func (a *FabricApiService) PatchFabricSanPinGroupExecute(r ApiPatchFabricSanPinG localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSanPinGroup @@ -37993,7 +37993,7 @@ func (a *FabricApiService) PatchFabricServerRoleExecute(r ApiPatchFabricServerRo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricServerRole @@ -38169,7 +38169,7 @@ func (a *FabricApiService) PatchFabricSpanDestEthPortExecute(r ApiPatchFabricSpa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSpanDestEthPort @@ -38345,7 +38345,7 @@ func (a *FabricApiService) PatchFabricSpanSessionExecute(r ApiPatchFabricSpanSes localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSpanSession @@ -38521,7 +38521,7 @@ func (a *FabricApiService) PatchFabricSwitchClusterProfileExecute(r ApiPatchFabr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchClusterProfile @@ -38697,7 +38697,7 @@ func (a *FabricApiService) PatchFabricSwitchClusterProfileTemplateExecute(r ApiP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchClusterProfileTemplate @@ -38873,7 +38873,7 @@ func (a *FabricApiService) PatchFabricSwitchControlPolicyExecute(r ApiPatchFabri localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchControlPolicy @@ -39049,7 +39049,7 @@ func (a *FabricApiService) PatchFabricSwitchProfileExecute(r ApiPatchFabricSwitc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchProfile @@ -39225,7 +39225,7 @@ func (a *FabricApiService) PatchFabricSwitchProfileTemplateExecute(r ApiPatchFab localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchProfileTemplate @@ -39401,7 +39401,7 @@ func (a *FabricApiService) PatchFabricSystemQosPolicyExecute(r ApiPatchFabricSys localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSystemQosPolicy @@ -39577,7 +39577,7 @@ func (a *FabricApiService) PatchFabricUplinkPcRoleExecute(r ApiPatchFabricUplink localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricUplinkPcRole @@ -39753,7 +39753,7 @@ func (a *FabricApiService) PatchFabricUplinkRoleExecute(r ApiPatchFabricUplinkRo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricUplinkRole @@ -39929,7 +39929,7 @@ func (a *FabricApiService) PatchFabricVlanExecute(r ApiPatchFabricVlanRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricVlan @@ -40105,7 +40105,7 @@ func (a *FabricApiService) PatchFabricVsanExecute(r ApiPatchFabricVsanRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricVsan @@ -40281,7 +40281,7 @@ func (a *FabricApiService) UpdateFabricAppliancePcRoleExecute(r ApiUpdateFabricA localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricAppliancePcRole @@ -40457,7 +40457,7 @@ func (a *FabricApiService) UpdateFabricApplianceRoleExecute(r ApiUpdateFabricApp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricApplianceRole @@ -40633,7 +40633,7 @@ func (a *FabricApiService) UpdateFabricElementIdentityExecute(r ApiUpdateFabricE localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricElementIdentity @@ -40809,7 +40809,7 @@ func (a *FabricApiService) UpdateFabricEthNetworkControlPolicyExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricEthNetworkControlPolicy @@ -40985,7 +40985,7 @@ func (a *FabricApiService) UpdateFabricEthNetworkGroupPolicyExecute(r ApiUpdateF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricEthNetworkGroupPolicy @@ -41161,7 +41161,7 @@ func (a *FabricApiService) UpdateFabricEthNetworkPolicyExecute(r ApiUpdateFabric localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricEthNetworkPolicy @@ -41337,7 +41337,7 @@ func (a *FabricApiService) UpdateFabricFcNetworkPolicyExecute(r ApiUpdateFabricF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcNetworkPolicy @@ -41513,7 +41513,7 @@ func (a *FabricApiService) UpdateFabricFcStorageRoleExecute(r ApiUpdateFabricFcS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcStorageRole @@ -41689,7 +41689,7 @@ func (a *FabricApiService) UpdateFabricFcUplinkPcRoleExecute(r ApiUpdateFabricFc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcUplinkPcRole @@ -41865,7 +41865,7 @@ func (a *FabricApiService) UpdateFabricFcUplinkRoleExecute(r ApiUpdateFabricFcUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcUplinkRole @@ -42041,7 +42041,7 @@ func (a *FabricApiService) UpdateFabricFcZonePolicyExecute(r ApiUpdateFabricFcZo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcZonePolicy @@ -42217,7 +42217,7 @@ func (a *FabricApiService) UpdateFabricFcoeUplinkPcRoleExecute(r ApiUpdateFabric localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcoeUplinkPcRole @@ -42393,7 +42393,7 @@ func (a *FabricApiService) UpdateFabricFcoeUplinkRoleExecute(r ApiUpdateFabricFc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcoeUplinkRole @@ -42569,7 +42569,7 @@ func (a *FabricApiService) UpdateFabricFlowControlPolicyExecute(r ApiUpdateFabri localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFlowControlPolicy @@ -42745,7 +42745,7 @@ func (a *FabricApiService) UpdateFabricLanPinGroupExecute(r ApiUpdateFabricLanPi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricLanPinGroup @@ -42921,7 +42921,7 @@ func (a *FabricApiService) UpdateFabricLinkAggregationPolicyExecute(r ApiUpdateF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricLinkAggregationPolicy @@ -43097,7 +43097,7 @@ func (a *FabricApiService) UpdateFabricLinkControlPolicyExecute(r ApiUpdateFabri localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricLinkControlPolicy @@ -43273,7 +43273,7 @@ func (a *FabricApiService) UpdateFabricMulticastPolicyExecute(r ApiUpdateFabricM localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricMulticastPolicy @@ -43449,7 +43449,7 @@ func (a *FabricApiService) UpdateFabricPcOperationExecute(r ApiUpdateFabricPcOpe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricPcOperation @@ -43625,7 +43625,7 @@ func (a *FabricApiService) UpdateFabricPortModeExecute(r ApiUpdateFabricPortMode localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricPortMode @@ -43801,7 +43801,7 @@ func (a *FabricApiService) UpdateFabricPortOperationExecute(r ApiUpdateFabricPor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricPortOperation @@ -43977,7 +43977,7 @@ func (a *FabricApiService) UpdateFabricPortPolicyExecute(r ApiUpdateFabricPortPo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricPortPolicy @@ -44153,7 +44153,7 @@ func (a *FabricApiService) UpdateFabricSanPinGroupExecute(r ApiUpdateFabricSanPi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSanPinGroup @@ -44329,7 +44329,7 @@ func (a *FabricApiService) UpdateFabricServerRoleExecute(r ApiUpdateFabricServer localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricServerRole @@ -44505,7 +44505,7 @@ func (a *FabricApiService) UpdateFabricSpanDestEthPortExecute(r ApiUpdateFabricS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSpanDestEthPort @@ -44681,7 +44681,7 @@ func (a *FabricApiService) UpdateFabricSpanSessionExecute(r ApiUpdateFabricSpanS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSpanSession @@ -44857,7 +44857,7 @@ func (a *FabricApiService) UpdateFabricSwitchClusterProfileExecute(r ApiUpdateFa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchClusterProfile @@ -45033,7 +45033,7 @@ func (a *FabricApiService) UpdateFabricSwitchClusterProfileTemplateExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchClusterProfileTemplate @@ -45209,7 +45209,7 @@ func (a *FabricApiService) UpdateFabricSwitchControlPolicyExecute(r ApiUpdateFab localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchControlPolicy @@ -45385,7 +45385,7 @@ func (a *FabricApiService) UpdateFabricSwitchProfileExecute(r ApiUpdateFabricSwi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchProfile @@ -45561,7 +45561,7 @@ func (a *FabricApiService) UpdateFabricSwitchProfileTemplateExecute(r ApiUpdateF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchProfileTemplate @@ -45737,7 +45737,7 @@ func (a *FabricApiService) UpdateFabricSystemQosPolicyExecute(r ApiUpdateFabricS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSystemQosPolicy @@ -45913,7 +45913,7 @@ func (a *FabricApiService) UpdateFabricUplinkPcRoleExecute(r ApiUpdateFabricUpli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricUplinkPcRole @@ -46089,7 +46089,7 @@ func (a *FabricApiService) UpdateFabricUplinkRoleExecute(r ApiUpdateFabricUplink localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricUplinkRole @@ -46265,7 +46265,7 @@ func (a *FabricApiService) UpdateFabricVlanExecute(r ApiUpdateFabricVlanRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricVlan @@ -46441,7 +46441,7 @@ func (a *FabricApiService) UpdateFabricVsanExecute(r ApiUpdateFabricVsanRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricVsan diff --git a/intersight_gosdk/api_fault.go b/intersight_gosdk/api_fault.go index 51ef3bbab0..218e640658 100644 --- a/intersight_gosdk/api_fault.go +++ b/intersight_gosdk/api_fault.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *FaultApiService) GetFaultInstanceListExecute(r ApiGetFaultInstanceListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -535,7 +535,7 @@ func (a *FaultApiService) PatchFaultInstanceExecute(r ApiPatchFaultInstanceReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.faultInstance @@ -711,7 +711,7 @@ func (a *FaultApiService) UpdateFaultInstanceExecute(r ApiUpdateFaultInstanceReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.faultInstance diff --git a/intersight_gosdk/api_fc.go b/intersight_gosdk/api_fc.go index e08e511775..f9742fd91c 100644 --- a/intersight_gosdk/api_fc.go +++ b/intersight_gosdk/api_fc.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *FcApiService) GetFcNeighborListExecute(r ApiGetFcNeighborListRequest) ( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *FcApiService) GetFcPhysicalPortListExecute(r ApiGetFcPhysicalPortListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *FcApiService) GetFcPortChannelListExecute(r ApiGetFcPortChannelListRequ localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1393,7 +1393,7 @@ func (a *FcApiService) PatchFcPhysicalPortExecute(r ApiPatchFcPhysicalPortReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fcPhysicalPort @@ -1569,7 +1569,7 @@ func (a *FcApiService) UpdateFcPhysicalPortExecute(r ApiUpdateFcPhysicalPortRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fcPhysicalPort diff --git a/intersight_gosdk/api_fcpool.go b/intersight_gosdk/api_fcpool.go index a331b75b97..cff2797321 100644 --- a/intersight_gosdk/api_fcpool.go +++ b/intersight_gosdk/api_fcpool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *FcpoolApiService) CreateFcpoolPoolExecute(r ApiCreateFcpoolPoolRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fcpoolPool @@ -291,10 +291,10 @@ func (a *FcpoolApiService) CreateFcpoolReservationExecute(r ApiCreateFcpoolReser localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fcpoolReservation @@ -1089,52 +1089,52 @@ func (a *FcpoolApiService) GetFcpoolFcBlockListExecute(r ApiGetFcpoolFcBlockList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1518,52 +1518,52 @@ func (a *FcpoolApiService) GetFcpoolLeaseListExecute(r ApiGetFcpoolLeaseListRequ localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1947,52 +1947,52 @@ func (a *FcpoolApiService) GetFcpoolPoolListExecute(r ApiGetFcpoolPoolListReques localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2376,52 +2376,52 @@ func (a *FcpoolApiService) GetFcpoolPoolMemberListExecute(r ApiGetFcpoolPoolMemb localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2805,52 +2805,52 @@ func (a *FcpoolApiService) GetFcpoolReservationListExecute(r ApiGetFcpoolReserva localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3234,52 +3234,52 @@ func (a *FcpoolApiService) GetFcpoolUniverseListExecute(r ApiGetFcpoolUniverseLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3470,7 +3470,7 @@ func (a *FcpoolApiService) PatchFcpoolPoolExecute(r ApiPatchFcpoolPoolRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fcpoolPool @@ -3646,7 +3646,7 @@ func (a *FcpoolApiService) UpdateFcpoolPoolExecute(r ApiUpdateFcpoolPoolRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fcpoolPool diff --git a/intersight_gosdk/api_feedback.go b/intersight_gosdk/api_feedback.go index 0520575d51..81be596539 100644 --- a/intersight_gosdk/api_feedback.go +++ b/intersight_gosdk/api_feedback.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *FeedbackApiService) CreateFeedbackFeedbackPostExecute(r ApiCreateFeedba localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.feedbackFeedbackPost @@ -288,7 +288,7 @@ func (a *FeedbackApiService) PatchFeedbackFeedbackPostExecute(r ApiPatchFeedback localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.feedbackFeedbackPost @@ -464,7 +464,7 @@ func (a *FeedbackApiService) UpdateFeedbackFeedbackPostExecute(r ApiUpdateFeedba localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.feedbackFeedbackPost diff --git a/intersight_gosdk/api_firmware.go b/intersight_gosdk/api_firmware.go index 683e50c2f3..9d4c5af5f6 100644 --- a/intersight_gosdk/api_firmware.go +++ b/intersight_gosdk/api_firmware.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *FirmwareApiService) CreateFirmwareBiosDescriptorExecute(r ApiCreateFirm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareBiosDescriptor @@ -291,10 +291,10 @@ func (a *FirmwareApiService) CreateFirmwareBoardControllerDescriptorExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareBoardControllerDescriptor @@ -473,10 +473,10 @@ func (a *FirmwareApiService) CreateFirmwareChassisUpgradeExecute(r ApiCreateFirm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareChassisUpgrade @@ -655,10 +655,10 @@ func (a *FirmwareApiService) CreateFirmwareCimcDescriptorExecute(r ApiCreateFirm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareCimcDescriptor @@ -837,10 +837,10 @@ func (a *FirmwareApiService) CreateFirmwareDimmDescriptorExecute(r ApiCreateFirm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareDimmDescriptor @@ -1019,10 +1019,10 @@ func (a *FirmwareApiService) CreateFirmwareDistributableExecute(r ApiCreateFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareDistributable @@ -1201,10 +1201,10 @@ func (a *FirmwareApiService) CreateFirmwareDriveDescriptorExecute(r ApiCreateFir localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareDriveDescriptor @@ -1383,10 +1383,10 @@ func (a *FirmwareApiService) CreateFirmwareDriverDistributableExecute(r ApiCreat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareDriverDistributable @@ -1565,10 +1565,10 @@ func (a *FirmwareApiService) CreateFirmwareEulaExecute(r ApiCreateFirmwareEulaRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareEula @@ -1747,10 +1747,10 @@ func (a *FirmwareApiService) CreateFirmwareGpuDescriptorExecute(r ApiCreateFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareGpuDescriptor @@ -1929,10 +1929,10 @@ func (a *FirmwareApiService) CreateFirmwareHbaDescriptorExecute(r ApiCreateFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareHbaDescriptor @@ -2111,10 +2111,10 @@ func (a *FirmwareApiService) CreateFirmwareIomDescriptorExecute(r ApiCreateFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareIomDescriptor @@ -2293,10 +2293,10 @@ func (a *FirmwareApiService) CreateFirmwareMswitchDescriptorExecute(r ApiCreateF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareMswitchDescriptor @@ -2475,10 +2475,10 @@ func (a *FirmwareApiService) CreateFirmwareNxosDescriptorExecute(r ApiCreateFirm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareNxosDescriptor @@ -2657,10 +2657,10 @@ func (a *FirmwareApiService) CreateFirmwarePcieDescriptorExecute(r ApiCreateFirm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwarePcieDescriptor @@ -2839,10 +2839,10 @@ func (a *FirmwareApiService) CreateFirmwarePolicyExecute(r ApiCreateFirmwarePoli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwarePolicy @@ -3021,10 +3021,10 @@ func (a *FirmwareApiService) CreateFirmwarePsuDescriptorExecute(r ApiCreateFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwarePsuDescriptor @@ -3203,10 +3203,10 @@ func (a *FirmwareApiService) CreateFirmwareSasExpanderDescriptorExecute(r ApiCre localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareSasExpanderDescriptor @@ -3385,10 +3385,10 @@ func (a *FirmwareApiService) CreateFirmwareServerConfigurationUtilityDistributab localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareServerConfigurationUtilityDistributable @@ -3567,10 +3567,10 @@ func (a *FirmwareApiService) CreateFirmwareStorageControllerDescriptorExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareStorageControllerDescriptor @@ -3749,10 +3749,10 @@ func (a *FirmwareApiService) CreateFirmwareSwitchUpgradeExecute(r ApiCreateFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareSwitchUpgrade @@ -3931,10 +3931,10 @@ func (a *FirmwareApiService) CreateFirmwareUnsupportedVersionUpgradeExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareUnsupportedVersionUpgrade @@ -4113,10 +4113,10 @@ func (a *FirmwareApiService) CreateFirmwareUpgradeExecute(r ApiCreateFirmwareUpg localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareUpgrade @@ -4295,10 +4295,10 @@ func (a *FirmwareApiService) CreateFirmwareUpgradeImpactExecute(r ApiCreateFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareUpgradeImpact @@ -4477,10 +4477,10 @@ func (a *FirmwareApiService) CreateFirmwareUpgradeValidityExecute(r ApiCreateFir localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareUpgradeValidity @@ -7973,52 +7973,52 @@ func (a *FirmwareApiService) GetFirmwareBiosDescriptorListExecute(r ApiGetFirmwa localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8402,52 +8402,52 @@ func (a *FirmwareApiService) GetFirmwareBoardControllerDescriptorListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8831,52 +8831,52 @@ func (a *FirmwareApiService) GetFirmwareChassisUpgradeListExecute(r ApiGetFirmwa localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9260,52 +9260,52 @@ func (a *FirmwareApiService) GetFirmwareCimcDescriptorListExecute(r ApiGetFirmwa localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9689,52 +9689,52 @@ func (a *FirmwareApiService) GetFirmwareDimmDescriptorListExecute(r ApiGetFirmwa localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10118,52 +10118,52 @@ func (a *FirmwareApiService) GetFirmwareDistributableListExecute(r ApiGetFirmwar localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10547,52 +10547,52 @@ func (a *FirmwareApiService) GetFirmwareDistributableMetaListExecute(r ApiGetFir localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10976,52 +10976,52 @@ func (a *FirmwareApiService) GetFirmwareDriveDescriptorListExecute(r ApiGetFirmw localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11405,52 +11405,52 @@ func (a *FirmwareApiService) GetFirmwareDriverDistributableListExecute(r ApiGetF localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11834,52 +11834,52 @@ func (a *FirmwareApiService) GetFirmwareEulaListExecute(r ApiGetFirmwareEulaList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12263,52 +12263,52 @@ func (a *FirmwareApiService) GetFirmwareFirmwareSummaryListExecute(r ApiGetFirmw localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12692,52 +12692,52 @@ func (a *FirmwareApiService) GetFirmwareGpuDescriptorListExecute(r ApiGetFirmwar localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13121,52 +13121,52 @@ func (a *FirmwareApiService) GetFirmwareHbaDescriptorListExecute(r ApiGetFirmwar localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13550,52 +13550,52 @@ func (a *FirmwareApiService) GetFirmwareIomDescriptorListExecute(r ApiGetFirmwar localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13979,52 +13979,52 @@ func (a *FirmwareApiService) GetFirmwareMswitchDescriptorListExecute(r ApiGetFir localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14408,52 +14408,52 @@ func (a *FirmwareApiService) GetFirmwareNxosDescriptorListExecute(r ApiGetFirmwa localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14837,52 +14837,52 @@ func (a *FirmwareApiService) GetFirmwarePcieDescriptorListExecute(r ApiGetFirmwa localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15266,52 +15266,52 @@ func (a *FirmwareApiService) GetFirmwarePolicyListExecute(r ApiGetFirmwarePolicy localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15695,52 +15695,52 @@ func (a *FirmwareApiService) GetFirmwarePsuDescriptorListExecute(r ApiGetFirmwar localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16124,52 +16124,52 @@ func (a *FirmwareApiService) GetFirmwareRunningFirmwareListExecute(r ApiGetFirmw localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16553,52 +16553,52 @@ func (a *FirmwareApiService) GetFirmwareSasExpanderDescriptorListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16982,52 +16982,52 @@ func (a *FirmwareApiService) GetFirmwareServerConfigurationUtilityDistributableL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17411,52 +17411,52 @@ func (a *FirmwareApiService) GetFirmwareStorageControllerDescriptorListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17840,52 +17840,52 @@ func (a *FirmwareApiService) GetFirmwareSwitchUpgradeListExecute(r ApiGetFirmwar localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18269,52 +18269,52 @@ func (a *FirmwareApiService) GetFirmwareUnsupportedVersionUpgradeListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18852,52 +18852,52 @@ func (a *FirmwareApiService) GetFirmwareUpgradeImpactStatusListExecute(r ApiGetF localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19127,52 +19127,52 @@ func (a *FirmwareApiService) GetFirmwareUpgradeListExecute(r ApiGetFirmwareUpgra localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19556,52 +19556,52 @@ func (a *FirmwareApiService) GetFirmwareUpgradeStatusListExecute(r ApiGetFirmwar localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19792,7 +19792,7 @@ func (a *FirmwareApiService) PatchFirmwareBiosDescriptorExecute(r ApiPatchFirmwa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareBiosDescriptor @@ -19968,7 +19968,7 @@ func (a *FirmwareApiService) PatchFirmwareBoardControllerDescriptorExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareBoardControllerDescriptor @@ -20144,7 +20144,7 @@ func (a *FirmwareApiService) PatchFirmwareCimcDescriptorExecute(r ApiPatchFirmwa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareCimcDescriptor @@ -20320,7 +20320,7 @@ func (a *FirmwareApiService) PatchFirmwareDimmDescriptorExecute(r ApiPatchFirmwa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareDimmDescriptor @@ -20496,7 +20496,7 @@ func (a *FirmwareApiService) PatchFirmwareDistributableExecute(r ApiPatchFirmwar localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareDistributable @@ -20672,7 +20672,7 @@ func (a *FirmwareApiService) PatchFirmwareDriveDescriptorExecute(r ApiPatchFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareDriveDescriptor @@ -20848,7 +20848,7 @@ func (a *FirmwareApiService) PatchFirmwareDriverDistributableExecute(r ApiPatchF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareDriverDistributable @@ -21024,7 +21024,7 @@ func (a *FirmwareApiService) PatchFirmwareGpuDescriptorExecute(r ApiPatchFirmwar localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareGpuDescriptor @@ -21200,7 +21200,7 @@ func (a *FirmwareApiService) PatchFirmwareHbaDescriptorExecute(r ApiPatchFirmwar localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareHbaDescriptor @@ -21376,7 +21376,7 @@ func (a *FirmwareApiService) PatchFirmwareIomDescriptorExecute(r ApiPatchFirmwar localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareIomDescriptor @@ -21552,7 +21552,7 @@ func (a *FirmwareApiService) PatchFirmwareMswitchDescriptorExecute(r ApiPatchFir localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareMswitchDescriptor @@ -21728,7 +21728,7 @@ func (a *FirmwareApiService) PatchFirmwareNxosDescriptorExecute(r ApiPatchFirmwa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareNxosDescriptor @@ -21904,7 +21904,7 @@ func (a *FirmwareApiService) PatchFirmwarePcieDescriptorExecute(r ApiPatchFirmwa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwarePcieDescriptor @@ -22080,7 +22080,7 @@ func (a *FirmwareApiService) PatchFirmwarePolicyExecute(r ApiPatchFirmwarePolicy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwarePolicy @@ -22256,7 +22256,7 @@ func (a *FirmwareApiService) PatchFirmwarePsuDescriptorExecute(r ApiPatchFirmwar localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwarePsuDescriptor @@ -22432,7 +22432,7 @@ func (a *FirmwareApiService) PatchFirmwareRunningFirmwareExecute(r ApiPatchFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareRunningFirmware @@ -22608,7 +22608,7 @@ func (a *FirmwareApiService) PatchFirmwareSasExpanderDescriptorExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareSasExpanderDescriptor @@ -22784,7 +22784,7 @@ func (a *FirmwareApiService) PatchFirmwareServerConfigurationUtilityDistributabl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareServerConfigurationUtilityDistributable @@ -22960,7 +22960,7 @@ func (a *FirmwareApiService) PatchFirmwareStorageControllerDescriptorExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareStorageControllerDescriptor @@ -23136,7 +23136,7 @@ func (a *FirmwareApiService) PatchFirmwareUnsupportedVersionUpgradeExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareUnsupportedVersionUpgrade @@ -23312,7 +23312,7 @@ func (a *FirmwareApiService) PatchFirmwareUpgradeExecute(r ApiPatchFirmwareUpgra localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareUpgrade @@ -23488,7 +23488,7 @@ func (a *FirmwareApiService) UpdateFirmwareBiosDescriptorExecute(r ApiUpdateFirm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareBiosDescriptor @@ -23664,7 +23664,7 @@ func (a *FirmwareApiService) UpdateFirmwareBoardControllerDescriptorExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareBoardControllerDescriptor @@ -23840,7 +23840,7 @@ func (a *FirmwareApiService) UpdateFirmwareCimcDescriptorExecute(r ApiUpdateFirm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareCimcDescriptor @@ -24016,7 +24016,7 @@ func (a *FirmwareApiService) UpdateFirmwareDimmDescriptorExecute(r ApiUpdateFirm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareDimmDescriptor @@ -24192,7 +24192,7 @@ func (a *FirmwareApiService) UpdateFirmwareDistributableExecute(r ApiUpdateFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareDistributable @@ -24368,7 +24368,7 @@ func (a *FirmwareApiService) UpdateFirmwareDriveDescriptorExecute(r ApiUpdateFir localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareDriveDescriptor @@ -24544,7 +24544,7 @@ func (a *FirmwareApiService) UpdateFirmwareDriverDistributableExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareDriverDistributable @@ -24720,7 +24720,7 @@ func (a *FirmwareApiService) UpdateFirmwareGpuDescriptorExecute(r ApiUpdateFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareGpuDescriptor @@ -24896,7 +24896,7 @@ func (a *FirmwareApiService) UpdateFirmwareHbaDescriptorExecute(r ApiUpdateFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareHbaDescriptor @@ -25072,7 +25072,7 @@ func (a *FirmwareApiService) UpdateFirmwareIomDescriptorExecute(r ApiUpdateFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareIomDescriptor @@ -25248,7 +25248,7 @@ func (a *FirmwareApiService) UpdateFirmwareMswitchDescriptorExecute(r ApiUpdateF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareMswitchDescriptor @@ -25424,7 +25424,7 @@ func (a *FirmwareApiService) UpdateFirmwareNxosDescriptorExecute(r ApiUpdateFirm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareNxosDescriptor @@ -25600,7 +25600,7 @@ func (a *FirmwareApiService) UpdateFirmwarePcieDescriptorExecute(r ApiUpdateFirm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwarePcieDescriptor @@ -25776,7 +25776,7 @@ func (a *FirmwareApiService) UpdateFirmwarePolicyExecute(r ApiUpdateFirmwarePoli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwarePolicy @@ -25952,7 +25952,7 @@ func (a *FirmwareApiService) UpdateFirmwarePsuDescriptorExecute(r ApiUpdateFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwarePsuDescriptor @@ -26128,7 +26128,7 @@ func (a *FirmwareApiService) UpdateFirmwareRunningFirmwareExecute(r ApiUpdateFir localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareRunningFirmware @@ -26304,7 +26304,7 @@ func (a *FirmwareApiService) UpdateFirmwareSasExpanderDescriptorExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareSasExpanderDescriptor @@ -26480,7 +26480,7 @@ func (a *FirmwareApiService) UpdateFirmwareServerConfigurationUtilityDistributab localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareServerConfigurationUtilityDistributable @@ -26656,7 +26656,7 @@ func (a *FirmwareApiService) UpdateFirmwareStorageControllerDescriptorExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareStorageControllerDescriptor @@ -26832,7 +26832,7 @@ func (a *FirmwareApiService) UpdateFirmwareUnsupportedVersionUpgradeExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareUnsupportedVersionUpgrade @@ -27008,7 +27008,7 @@ func (a *FirmwareApiService) UpdateFirmwareUpgradeExecute(r ApiUpdateFirmwareUpg localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareUpgrade diff --git a/intersight_gosdk/api_fmc.go b/intersight_gosdk/api_fmc.go index 6fd6388735..9fad688b35 100644 --- a/intersight_gosdk/api_fmc.go +++ b/intersight_gosdk/api_fmc.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -453,52 +453,52 @@ func (a *FmcApiService) GetFmcDeviceHaPairListExecute(r ApiGetFmcDeviceHaPairLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *FmcApiService) GetFmcDeviceListExecute(r ApiGetFmcDeviceListRequest) (* localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *FmcApiService) GetFmcDomainListExecute(r ApiGetFmcDomainListRequest) (* localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1586,52 +1586,52 @@ func (a *FmcApiService) GetFmcPhysicalInterfaceListExecute(r ApiGetFmcPhysicalIn localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/intersight_gosdk/api_forecast.go b/intersight_gosdk/api_forecast.go index b4e7c65918..2ea45e4c3f 100644 --- a/intersight_gosdk/api_forecast.go +++ b/intersight_gosdk/api_forecast.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *ForecastApiService) GetForecastCatalogListExecute(r ApiGetForecastCatal localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *ForecastApiService) GetForecastDefinitionListExecute(r ApiGetForecastDe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *ForecastApiService) GetForecastInstanceListExecute(r ApiGetForecastInst localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1393,7 +1393,7 @@ func (a *ForecastApiService) PatchForecastInstanceExecute(r ApiPatchForecastInst localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.forecastInstance @@ -1569,7 +1569,7 @@ func (a *ForecastApiService) UpdateForecastInstanceExecute(r ApiUpdateForecastIn localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.forecastInstance diff --git a/intersight_gosdk/api_graphics.go b/intersight_gosdk/api_graphics.go index 5ee5ba2e9c..81bb0ca213 100644 --- a/intersight_gosdk/api_graphics.go +++ b/intersight_gosdk/api_graphics.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *GraphicsApiService) GetGraphicsCardListExecute(r ApiGetGraphicsCardList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *GraphicsApiService) GetGraphicsControllerListExecute(r ApiGetGraphicsCo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -964,7 +964,7 @@ func (a *GraphicsApiService) PatchGraphicsCardExecute(r ApiPatchGraphicsCardRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.graphicsCard @@ -1140,7 +1140,7 @@ func (a *GraphicsApiService) PatchGraphicsControllerExecute(r ApiPatchGraphicsCo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.graphicsController @@ -1316,7 +1316,7 @@ func (a *GraphicsApiService) UpdateGraphicsCardExecute(r ApiUpdateGraphicsCardRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.graphicsCard @@ -1492,7 +1492,7 @@ func (a *GraphicsApiService) UpdateGraphicsControllerExecute(r ApiUpdateGraphics localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.graphicsController diff --git a/intersight_gosdk/api_hcl.go b/intersight_gosdk/api_hcl.go index 30e93457cf..ec2fc6f5b9 100644 --- a/intersight_gosdk/api_hcl.go +++ b/intersight_gosdk/api_hcl.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *HclApiService) CreateHclCompatibilityStatusExecute(r ApiCreateHclCompat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hclCompatibilityStatus @@ -291,10 +291,10 @@ func (a *HclApiService) CreateHclHyperflexSoftwareCompatibilityInfoExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hclHyperflexSoftwareCompatibilityInfo @@ -473,10 +473,10 @@ func (a *HclApiService) CreateHclSupportedDriverNameExecute(r ApiCreateHclSuppor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hclSupportedDriverName @@ -987,52 +987,52 @@ func (a *HclApiService) GetHclDriverImageListExecute(r ApiGetHclDriverImageListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1416,52 +1416,52 @@ func (a *HclApiService) GetHclExemptedCatalogListExecute(r ApiGetHclExemptedCata localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1845,52 +1845,52 @@ func (a *HclApiService) GetHclHwCatalogInfoListExecute(r ApiGetHclHwCatalogInfoL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2274,52 +2274,52 @@ func (a *HclApiService) GetHclHyperflexSoftwareCompatibilityInfoListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2703,52 +2703,52 @@ func (a *HclApiService) GetHclOperatingSystemListExecute(r ApiGetHclOperatingSys localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3132,52 +3132,52 @@ func (a *HclApiService) GetHclOperatingSystemVendorListExecute(r ApiGetHclOperat localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3561,52 +3561,52 @@ func (a *HclApiService) GetHclServerHwCatalogInfoListExecute(r ApiGetHclServerHw localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3797,7 +3797,7 @@ func (a *HclApiService) PatchHclHyperflexSoftwareCompatibilityInfoExecute(r ApiP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hclHyperflexSoftwareCompatibilityInfo @@ -3973,7 +3973,7 @@ func (a *HclApiService) UpdateHclHyperflexSoftwareCompatibilityInfoExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hclHyperflexSoftwareCompatibilityInfo diff --git a/intersight_gosdk/api_hyperflex.go b/intersight_gosdk/api_hyperflex.go index baed215128..3c49e0054c 100644 --- a/intersight_gosdk/api_hyperflex.go +++ b/intersight_gosdk/api_hyperflex.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *HyperflexApiService) CreateHyperflexAppCatalogExecute(r ApiCreateHyperf localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexAppCatalog @@ -291,10 +291,10 @@ func (a *HyperflexApiService) CreateHyperflexAutoSupportPolicyExecute(r ApiCreat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexAutoSupportPolicy @@ -473,10 +473,10 @@ func (a *HyperflexApiService) CreateHyperflexCapabilityInfoExecute(r ApiCreateHy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexCapabilityInfo @@ -655,10 +655,10 @@ func (a *HyperflexApiService) CreateHyperflexClusterBackupPolicyExecute(r ApiCre localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterBackupPolicy @@ -837,10 +837,10 @@ func (a *HyperflexApiService) CreateHyperflexClusterBackupPolicyDeploymentExecut localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterBackupPolicyDeployment @@ -1019,10 +1019,10 @@ func (a *HyperflexApiService) CreateHyperflexClusterNetworkPolicyExecute(r ApiCr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterNetworkPolicy @@ -1201,10 +1201,10 @@ func (a *HyperflexApiService) CreateHyperflexClusterProfileExecute(r ApiCreateHy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterProfile @@ -1383,10 +1383,10 @@ func (a *HyperflexApiService) CreateHyperflexClusterReplicationNetworkPolicyExec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterReplicationNetworkPolicy @@ -1565,10 +1565,10 @@ func (a *HyperflexApiService) CreateHyperflexClusterReplicationNetworkPolicyDepl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterReplicationNetworkPolicyDeployment @@ -1747,10 +1747,10 @@ func (a *HyperflexApiService) CreateHyperflexClusterStoragePolicyExecute(r ApiCr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterStoragePolicy @@ -1929,10 +1929,10 @@ func (a *HyperflexApiService) CreateHyperflexExtFcStoragePolicyExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexExtFcStoragePolicy @@ -2111,10 +2111,10 @@ func (a *HyperflexApiService) CreateHyperflexExtIscsiStoragePolicyExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexExtIscsiStoragePolicy @@ -2293,10 +2293,10 @@ func (a *HyperflexApiService) CreateHyperflexFeatureLimitExternalExecute(r ApiCr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexFeatureLimitExternal @@ -2475,10 +2475,10 @@ func (a *HyperflexApiService) CreateHyperflexFeatureLimitInternalExecute(r ApiCr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexFeatureLimitInternal @@ -2657,10 +2657,10 @@ func (a *HyperflexApiService) CreateHyperflexHealthCheckDefinitionExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHealthCheckDefinition @@ -2839,10 +2839,10 @@ func (a *HyperflexApiService) CreateHyperflexHealthCheckPackageChecksumExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHealthCheckPackageChecksum @@ -3021,10 +3021,10 @@ func (a *HyperflexApiService) CreateHyperflexHxdpVersionExecute(r ApiCreateHyper localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHxdpVersion @@ -3203,10 +3203,10 @@ func (a *HyperflexApiService) CreateHyperflexKeyEncryptionKeyExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexKeyEncryptionKey @@ -3385,10 +3385,10 @@ func (a *HyperflexApiService) CreateHyperflexLocalCredentialPolicyExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexLocalCredentialPolicy @@ -3567,10 +3567,10 @@ func (a *HyperflexApiService) CreateHyperflexNodeConfigPolicyExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexNodeConfigPolicy @@ -3749,10 +3749,10 @@ func (a *HyperflexApiService) CreateHyperflexNodeProfileExecute(r ApiCreateHyper localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexNodeProfile @@ -3931,10 +3931,10 @@ func (a *HyperflexApiService) CreateHyperflexProxySettingPolicyExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexProxySettingPolicy @@ -4113,10 +4113,10 @@ func (a *HyperflexApiService) CreateHyperflexReduceReSyncExecute(r ApiCreateHype localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexReduceReSync @@ -4295,10 +4295,10 @@ func (a *HyperflexApiService) CreateHyperflexServerFirmwareVersionExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexServerFirmwareVersion @@ -4477,10 +4477,10 @@ func (a *HyperflexApiService) CreateHyperflexServerFirmwareVersionEntryExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexServerFirmwareVersionEntry @@ -4659,10 +4659,10 @@ func (a *HyperflexApiService) CreateHyperflexServerModelExecute(r ApiCreateHyper localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexServerModel @@ -4841,10 +4841,10 @@ func (a *HyperflexApiService) CreateHyperflexServiceAuthTokenExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexServiceAuthToken @@ -5023,10 +5023,10 @@ func (a *HyperflexApiService) CreateHyperflexSoftwareDistributionComponentExecut localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSoftwareDistributionComponent @@ -5205,10 +5205,10 @@ func (a *HyperflexApiService) CreateHyperflexSoftwareDistributionEntryExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSoftwareDistributionEntry @@ -5387,10 +5387,10 @@ func (a *HyperflexApiService) CreateHyperflexSoftwareDistributionVersionExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSoftwareDistributionVersion @@ -5569,10 +5569,10 @@ func (a *HyperflexApiService) CreateHyperflexSoftwareVersionPolicyExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSoftwareVersionPolicy @@ -5751,10 +5751,10 @@ func (a *HyperflexApiService) CreateHyperflexStartReduceReSyncExecute(r ApiCreat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexStartReduceReSync @@ -5933,10 +5933,10 @@ func (a *HyperflexApiService) CreateHyperflexSysConfigPolicyExecute(r ApiCreateH localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSysConfigPolicy @@ -6115,10 +6115,10 @@ func (a *HyperflexApiService) CreateHyperflexUcsmConfigPolicyExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexUcsmConfigPolicy @@ -6297,10 +6297,10 @@ func (a *HyperflexApiService) CreateHyperflexVcenterConfigPolicyExecute(r ApiCre localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexVcenterConfigPolicy @@ -6479,10 +6479,10 @@ func (a *HyperflexApiService) CreateHyperflexVmImportOperationExecute(r ApiCreat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexVmImportOperation @@ -6661,10 +6661,10 @@ func (a *HyperflexApiService) CreateHyperflexVmRestoreOperationExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexVmRestoreOperation @@ -12713,52 +12713,52 @@ func (a *HyperflexApiService) GetHyperflexAlarmListExecute(r ApiGetHyperflexAlar localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13142,52 +13142,52 @@ func (a *HyperflexApiService) GetHyperflexAppCatalogListExecute(r ApiGetHyperfle localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13571,52 +13571,52 @@ func (a *HyperflexApiService) GetHyperflexAutoSupportPolicyListExecute(r ApiGetH localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14000,52 +14000,52 @@ func (a *HyperflexApiService) GetHyperflexBackupClusterListExecute(r ApiGetHyper localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14429,52 +14429,52 @@ func (a *HyperflexApiService) GetHyperflexCapabilityInfoListExecute(r ApiGetHype localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15012,52 +15012,52 @@ func (a *HyperflexApiService) GetHyperflexClusterBackupPolicyDeploymentListExecu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15441,52 +15441,52 @@ func (a *HyperflexApiService) GetHyperflexClusterBackupPolicyInventoryListExecut localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15716,52 +15716,52 @@ func (a *HyperflexApiService) GetHyperflexClusterBackupPolicyListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16299,52 +16299,52 @@ func (a *HyperflexApiService) GetHyperflexClusterHealthCheckExecutionSnapshotLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16574,52 +16574,52 @@ func (a *HyperflexApiService) GetHyperflexClusterListExecute(r ApiGetHyperflexCl localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17003,52 +17003,52 @@ func (a *HyperflexApiService) GetHyperflexClusterNetworkPolicyListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17432,52 +17432,52 @@ func (a *HyperflexApiService) GetHyperflexClusterProfileListExecute(r ApiGetHype localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18015,52 +18015,52 @@ func (a *HyperflexApiService) GetHyperflexClusterReplicationNetworkPolicyDeploym localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18290,52 +18290,52 @@ func (a *HyperflexApiService) GetHyperflexClusterReplicationNetworkPolicyListExe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18719,52 +18719,52 @@ func (a *HyperflexApiService) GetHyperflexClusterStoragePolicyListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19302,52 +19302,52 @@ func (a *HyperflexApiService) GetHyperflexConfigResultEntryListExecute(r ApiGetH localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19577,52 +19577,52 @@ func (a *HyperflexApiService) GetHyperflexConfigResultListExecute(r ApiGetHyperf localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20006,52 +20006,52 @@ func (a *HyperflexApiService) GetHyperflexDataProtectionPeerListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20435,52 +20435,52 @@ func (a *HyperflexApiService) GetHyperflexDatastoreStatisticListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20864,52 +20864,52 @@ func (a *HyperflexApiService) GetHyperflexDevicePackageDownloadStateListExecute( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21293,52 +21293,52 @@ func (a *HyperflexApiService) GetHyperflexDriveListExecute(r ApiGetHyperflexDriv localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21722,52 +21722,52 @@ func (a *HyperflexApiService) GetHyperflexEncryptionListExecute(r ApiGetHyperfle localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22151,52 +22151,52 @@ func (a *HyperflexApiService) GetHyperflexExtFcStoragePolicyListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22580,52 +22580,52 @@ func (a *HyperflexApiService) GetHyperflexExtIscsiStoragePolicyListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23009,52 +23009,52 @@ func (a *HyperflexApiService) GetHyperflexFeatureLimitExternalListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23438,52 +23438,52 @@ func (a *HyperflexApiService) GetHyperflexFeatureLimitInternalListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24021,52 +24021,52 @@ func (a *HyperflexApiService) GetHyperflexHealthCheckDefinitionListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24450,52 +24450,52 @@ func (a *HyperflexApiService) GetHyperflexHealthCheckExecutionListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24879,52 +24879,52 @@ func (a *HyperflexApiService) GetHyperflexHealthCheckExecutionSnapshotListExecut localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25308,52 +25308,52 @@ func (a *HyperflexApiService) GetHyperflexHealthCheckPackageChecksumListExecute( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25737,52 +25737,52 @@ func (a *HyperflexApiService) GetHyperflexHealthCheckSchedulePolicyListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26012,52 +26012,52 @@ func (a *HyperflexApiService) GetHyperflexHealthListExecute(r ApiGetHyperflexHea localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26441,52 +26441,52 @@ func (a *HyperflexApiService) GetHyperflexHwCatalogListExecute(r ApiGetHyperflex localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26870,52 +26870,52 @@ func (a *HyperflexApiService) GetHyperflexHxdpVersionListExecute(r ApiGetHyperfl localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27299,52 +27299,52 @@ func (a *HyperflexApiService) GetHyperflexHypervisorHostListExecute(r ApiGetHype localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27728,52 +27728,52 @@ func (a *HyperflexApiService) GetHyperflexHypervisorVirtualMachineListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28157,52 +28157,52 @@ func (a *HyperflexApiService) GetHyperflexInitiatorGroupListExecute(r ApiGetHype localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28586,52 +28586,52 @@ func (a *HyperflexApiService) GetHyperflexIscsiNetworkListExecute(r ApiGetHyperf localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29015,52 +29015,52 @@ func (a *HyperflexApiService) GetHyperflexKeyEncryptionKeyListExecute(r ApiGetHy localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29444,52 +29444,52 @@ func (a *HyperflexApiService) GetHyperflexLicenseListExecute(r ApiGetHyperflexLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29873,52 +29873,52 @@ func (a *HyperflexApiService) GetHyperflexLocalCredentialPolicyListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -30302,52 +30302,52 @@ func (a *HyperflexApiService) GetHyperflexLunListExecute(r ApiGetHyperflexLunLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -30885,52 +30885,52 @@ func (a *HyperflexApiService) GetHyperflexNodeConfigPolicyListExecute(r ApiGetHy localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -31160,52 +31160,52 @@ func (a *HyperflexApiService) GetHyperflexNodeListExecute(r ApiGetHyperflexNodeL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -31589,52 +31589,52 @@ func (a *HyperflexApiService) GetHyperflexNodeProfileListExecute(r ApiGetHyperfl localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -32018,52 +32018,52 @@ func (a *HyperflexApiService) GetHyperflexProtectedClusterListExecute(r ApiGetHy localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -32447,52 +32447,52 @@ func (a *HyperflexApiService) GetHyperflexProxySettingPolicyListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -32876,52 +32876,52 @@ func (a *HyperflexApiService) GetHyperflexReduceReSyncListExecute(r ApiGetHyperf localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -33459,52 +33459,52 @@ func (a *HyperflexApiService) GetHyperflexServerFirmwareVersionEntryListExecute( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -33734,52 +33734,52 @@ func (a *HyperflexApiService) GetHyperflexServerFirmwareVersionListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -34163,52 +34163,52 @@ func (a *HyperflexApiService) GetHyperflexServerModelListExecute(r ApiGetHyperfl localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -34592,52 +34592,52 @@ func (a *HyperflexApiService) GetHyperflexServiceAuthTokenListExecute(r ApiGetHy localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -35021,52 +35021,52 @@ func (a *HyperflexApiService) GetHyperflexSoftwareDistributionComponentListExecu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -35450,52 +35450,52 @@ func (a *HyperflexApiService) GetHyperflexSoftwareDistributionEntryListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -35879,52 +35879,52 @@ func (a *HyperflexApiService) GetHyperflexSoftwareDistributionVersionListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -36308,52 +36308,52 @@ func (a *HyperflexApiService) GetHyperflexSoftwareVersionPolicyListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -36737,52 +36737,52 @@ func (a *HyperflexApiService) GetHyperflexStartReduceReSyncListExecute(r ApiGetH localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -37166,52 +37166,52 @@ func (a *HyperflexApiService) GetHyperflexStorageContainerListExecute(r ApiGetHy localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -37595,52 +37595,52 @@ func (a *HyperflexApiService) GetHyperflexSysConfigPolicyListExecute(r ApiGetHyp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -38024,52 +38024,52 @@ func (a *HyperflexApiService) GetHyperflexTargetListExecute(r ApiGetHyperflexTar localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -38453,52 +38453,52 @@ func (a *HyperflexApiService) GetHyperflexUcsmConfigPolicyListExecute(r ApiGetHy localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -38882,52 +38882,52 @@ func (a *HyperflexApiService) GetHyperflexVcenterConfigPolicyListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -39311,52 +39311,52 @@ func (a *HyperflexApiService) GetHyperflexVmBackupInfoListExecute(r ApiGetHyperf localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -39740,52 +39740,52 @@ func (a *HyperflexApiService) GetHyperflexVmImportOperationListExecute(r ApiGetH localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -40169,52 +40169,52 @@ func (a *HyperflexApiService) GetHyperflexVmRestoreOperationListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -40598,52 +40598,52 @@ func (a *HyperflexApiService) GetHyperflexVmSnapshotInfoListExecute(r ApiGetHype localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -41027,52 +41027,52 @@ func (a *HyperflexApiService) GetHyperflexVolumeListExecute(r ApiGetHyperflexVol localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -41456,52 +41456,52 @@ func (a *HyperflexApiService) GetHyperflexWitnessConfigurationListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -41692,7 +41692,7 @@ func (a *HyperflexApiService) PatchHyperflexAppCatalogExecute(r ApiPatchHyperfle localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexAppCatalog @@ -41868,7 +41868,7 @@ func (a *HyperflexApiService) PatchHyperflexAutoSupportPolicyExecute(r ApiPatchH localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexAutoSupportPolicy @@ -42044,7 +42044,7 @@ func (a *HyperflexApiService) PatchHyperflexCapabilityInfoExecute(r ApiPatchHype localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexCapabilityInfo @@ -42220,7 +42220,7 @@ func (a *HyperflexApiService) PatchHyperflexClusterExecute(r ApiPatchHyperflexCl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexCluster @@ -42396,7 +42396,7 @@ func (a *HyperflexApiService) PatchHyperflexClusterBackupPolicyExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterBackupPolicy @@ -42572,7 +42572,7 @@ func (a *HyperflexApiService) PatchHyperflexClusterBackupPolicyDeploymentExecute localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterBackupPolicyDeployment @@ -42748,7 +42748,7 @@ func (a *HyperflexApiService) PatchHyperflexClusterNetworkPolicyExecute(r ApiPat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterNetworkPolicy @@ -42924,7 +42924,7 @@ func (a *HyperflexApiService) PatchHyperflexClusterProfileExecute(r ApiPatchHype localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterProfile @@ -43100,7 +43100,7 @@ func (a *HyperflexApiService) PatchHyperflexClusterReplicationNetworkPolicyExecu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterReplicationNetworkPolicy @@ -43276,7 +43276,7 @@ func (a *HyperflexApiService) PatchHyperflexClusterReplicationNetworkPolicyDeplo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterReplicationNetworkPolicyDeployment @@ -43452,7 +43452,7 @@ func (a *HyperflexApiService) PatchHyperflexClusterStoragePolicyExecute(r ApiPat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterStoragePolicy @@ -43628,7 +43628,7 @@ func (a *HyperflexApiService) PatchHyperflexDriveExecute(r ApiPatchHyperflexDriv localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexDrive @@ -43804,7 +43804,7 @@ func (a *HyperflexApiService) PatchHyperflexExtFcStoragePolicyExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexExtFcStoragePolicy @@ -43980,7 +43980,7 @@ func (a *HyperflexApiService) PatchHyperflexExtIscsiStoragePolicyExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexExtIscsiStoragePolicy @@ -44156,7 +44156,7 @@ func (a *HyperflexApiService) PatchHyperflexFeatureLimitExternalExecute(r ApiPat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexFeatureLimitExternal @@ -44332,7 +44332,7 @@ func (a *HyperflexApiService) PatchHyperflexFeatureLimitInternalExecute(r ApiPat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexFeatureLimitInternal @@ -44508,7 +44508,7 @@ func (a *HyperflexApiService) PatchHyperflexHealthCheckDefinitionExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHealthCheckDefinition @@ -44684,7 +44684,7 @@ func (a *HyperflexApiService) PatchHyperflexHealthCheckPackageChecksumExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHealthCheckPackageChecksum @@ -44860,7 +44860,7 @@ func (a *HyperflexApiService) PatchHyperflexHxdpVersionExecute(r ApiPatchHyperfl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHxdpVersion @@ -45036,7 +45036,7 @@ func (a *HyperflexApiService) PatchHyperflexHypervisorHostExecute(r ApiPatchHype localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHypervisorHost @@ -45212,7 +45212,7 @@ func (a *HyperflexApiService) PatchHyperflexHypervisorVirtualMachineExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHypervisorVirtualMachine @@ -45388,7 +45388,7 @@ func (a *HyperflexApiService) PatchHyperflexInitiatorGroupExecute(r ApiPatchHype localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexInitiatorGroup @@ -45564,7 +45564,7 @@ func (a *HyperflexApiService) PatchHyperflexIscsiNetworkExecute(r ApiPatchHyperf localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexIscsiNetwork @@ -45740,7 +45740,7 @@ func (a *HyperflexApiService) PatchHyperflexKeyEncryptionKeyExecute(r ApiPatchHy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexKeyEncryptionKey @@ -45916,7 +45916,7 @@ func (a *HyperflexApiService) PatchHyperflexLocalCredentialPolicyExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexLocalCredentialPolicy @@ -46092,7 +46092,7 @@ func (a *HyperflexApiService) PatchHyperflexLunExecute(r ApiPatchHyperflexLunReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexLun @@ -46268,7 +46268,7 @@ func (a *HyperflexApiService) PatchHyperflexNodeConfigPolicyExecute(r ApiPatchHy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexNodeConfigPolicy @@ -46444,7 +46444,7 @@ func (a *HyperflexApiService) PatchHyperflexNodeProfileExecute(r ApiPatchHyperfl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexNodeProfile @@ -46620,7 +46620,7 @@ func (a *HyperflexApiService) PatchHyperflexProxySettingPolicyExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexProxySettingPolicy @@ -46796,7 +46796,7 @@ func (a *HyperflexApiService) PatchHyperflexReduceReSyncExecute(r ApiPatchHyperf localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexReduceReSync @@ -46972,7 +46972,7 @@ func (a *HyperflexApiService) PatchHyperflexServerFirmwareVersionExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexServerFirmwareVersion @@ -47148,7 +47148,7 @@ func (a *HyperflexApiService) PatchHyperflexServerFirmwareVersionEntryExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexServerFirmwareVersionEntry @@ -47324,7 +47324,7 @@ func (a *HyperflexApiService) PatchHyperflexServerModelExecute(r ApiPatchHyperfl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexServerModel @@ -47500,7 +47500,7 @@ func (a *HyperflexApiService) PatchHyperflexServiceAuthTokenExecute(r ApiPatchHy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexServiceAuthToken @@ -47676,7 +47676,7 @@ func (a *HyperflexApiService) PatchHyperflexSoftwareDistributionComponentExecute localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSoftwareDistributionComponent @@ -47852,7 +47852,7 @@ func (a *HyperflexApiService) PatchHyperflexSoftwareDistributionEntryExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSoftwareDistributionEntry @@ -48028,7 +48028,7 @@ func (a *HyperflexApiService) PatchHyperflexSoftwareDistributionVersionExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSoftwareDistributionVersion @@ -48204,7 +48204,7 @@ func (a *HyperflexApiService) PatchHyperflexSoftwareVersionPolicyExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSoftwareVersionPolicy @@ -48380,7 +48380,7 @@ func (a *HyperflexApiService) PatchHyperflexStorageContainerExecute(r ApiPatchHy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexStorageContainer @@ -48556,7 +48556,7 @@ func (a *HyperflexApiService) PatchHyperflexSysConfigPolicyExecute(r ApiPatchHyp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSysConfigPolicy @@ -48732,7 +48732,7 @@ func (a *HyperflexApiService) PatchHyperflexTargetExecute(r ApiPatchHyperflexTar localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexTarget @@ -48908,7 +48908,7 @@ func (a *HyperflexApiService) PatchHyperflexUcsmConfigPolicyExecute(r ApiPatchHy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexUcsmConfigPolicy @@ -49084,7 +49084,7 @@ func (a *HyperflexApiService) PatchHyperflexVcenterConfigPolicyExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexVcenterConfigPolicy @@ -49260,7 +49260,7 @@ func (a *HyperflexApiService) PatchHyperflexVolumeExecute(r ApiPatchHyperflexVol localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexVolume @@ -49436,7 +49436,7 @@ func (a *HyperflexApiService) UpdateHyperflexAppCatalogExecute(r ApiUpdateHyperf localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexAppCatalog @@ -49612,7 +49612,7 @@ func (a *HyperflexApiService) UpdateHyperflexAutoSupportPolicyExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexAutoSupportPolicy @@ -49788,7 +49788,7 @@ func (a *HyperflexApiService) UpdateHyperflexCapabilityInfoExecute(r ApiUpdateHy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexCapabilityInfo @@ -49964,7 +49964,7 @@ func (a *HyperflexApiService) UpdateHyperflexClusterExecute(r ApiUpdateHyperflex localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexCluster @@ -50140,7 +50140,7 @@ func (a *HyperflexApiService) UpdateHyperflexClusterBackupPolicyExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterBackupPolicy @@ -50316,7 +50316,7 @@ func (a *HyperflexApiService) UpdateHyperflexClusterBackupPolicyDeploymentExecut localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterBackupPolicyDeployment @@ -50492,7 +50492,7 @@ func (a *HyperflexApiService) UpdateHyperflexClusterNetworkPolicyExecute(r ApiUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterNetworkPolicy @@ -50668,7 +50668,7 @@ func (a *HyperflexApiService) UpdateHyperflexClusterProfileExecute(r ApiUpdateHy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterProfile @@ -50844,7 +50844,7 @@ func (a *HyperflexApiService) UpdateHyperflexClusterReplicationNetworkPolicyExec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterReplicationNetworkPolicy @@ -51020,7 +51020,7 @@ func (a *HyperflexApiService) UpdateHyperflexClusterReplicationNetworkPolicyDepl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterReplicationNetworkPolicyDeployment @@ -51196,7 +51196,7 @@ func (a *HyperflexApiService) UpdateHyperflexClusterStoragePolicyExecute(r ApiUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterStoragePolicy @@ -51372,7 +51372,7 @@ func (a *HyperflexApiService) UpdateHyperflexDriveExecute(r ApiUpdateHyperflexDr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexDrive @@ -51548,7 +51548,7 @@ func (a *HyperflexApiService) UpdateHyperflexExtFcStoragePolicyExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexExtFcStoragePolicy @@ -51724,7 +51724,7 @@ func (a *HyperflexApiService) UpdateHyperflexExtIscsiStoragePolicyExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexExtIscsiStoragePolicy @@ -51900,7 +51900,7 @@ func (a *HyperflexApiService) UpdateHyperflexFeatureLimitExternalExecute(r ApiUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexFeatureLimitExternal @@ -52076,7 +52076,7 @@ func (a *HyperflexApiService) UpdateHyperflexFeatureLimitInternalExecute(r ApiUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexFeatureLimitInternal @@ -52252,7 +52252,7 @@ func (a *HyperflexApiService) UpdateHyperflexHealthCheckDefinitionExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHealthCheckDefinition @@ -52428,7 +52428,7 @@ func (a *HyperflexApiService) UpdateHyperflexHealthCheckPackageChecksumExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHealthCheckPackageChecksum @@ -52604,7 +52604,7 @@ func (a *HyperflexApiService) UpdateHyperflexHxdpVersionExecute(r ApiUpdateHyper localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHxdpVersion @@ -52780,7 +52780,7 @@ func (a *HyperflexApiService) UpdateHyperflexHypervisorHostExecute(r ApiUpdateHy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHypervisorHost @@ -52956,7 +52956,7 @@ func (a *HyperflexApiService) UpdateHyperflexHypervisorVirtualMachineExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHypervisorVirtualMachine @@ -53132,7 +53132,7 @@ func (a *HyperflexApiService) UpdateHyperflexInitiatorGroupExecute(r ApiUpdateHy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexInitiatorGroup @@ -53308,7 +53308,7 @@ func (a *HyperflexApiService) UpdateHyperflexIscsiNetworkExecute(r ApiUpdateHype localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexIscsiNetwork @@ -53484,7 +53484,7 @@ func (a *HyperflexApiService) UpdateHyperflexKeyEncryptionKeyExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexKeyEncryptionKey @@ -53660,7 +53660,7 @@ func (a *HyperflexApiService) UpdateHyperflexLocalCredentialPolicyExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexLocalCredentialPolicy @@ -53836,7 +53836,7 @@ func (a *HyperflexApiService) UpdateHyperflexLunExecute(r ApiUpdateHyperflexLunR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexLun @@ -54012,7 +54012,7 @@ func (a *HyperflexApiService) UpdateHyperflexNodeConfigPolicyExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexNodeConfigPolicy @@ -54188,7 +54188,7 @@ func (a *HyperflexApiService) UpdateHyperflexNodeProfileExecute(r ApiUpdateHyper localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexNodeProfile @@ -54364,7 +54364,7 @@ func (a *HyperflexApiService) UpdateHyperflexProxySettingPolicyExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexProxySettingPolicy @@ -54540,7 +54540,7 @@ func (a *HyperflexApiService) UpdateHyperflexReduceReSyncExecute(r ApiUpdateHype localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexReduceReSync @@ -54716,7 +54716,7 @@ func (a *HyperflexApiService) UpdateHyperflexServerFirmwareVersionExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexServerFirmwareVersion @@ -54892,7 +54892,7 @@ func (a *HyperflexApiService) UpdateHyperflexServerFirmwareVersionEntryExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexServerFirmwareVersionEntry @@ -55068,7 +55068,7 @@ func (a *HyperflexApiService) UpdateHyperflexServerModelExecute(r ApiUpdateHyper localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexServerModel @@ -55244,7 +55244,7 @@ func (a *HyperflexApiService) UpdateHyperflexServiceAuthTokenExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexServiceAuthToken @@ -55420,7 +55420,7 @@ func (a *HyperflexApiService) UpdateHyperflexSoftwareDistributionComponentExecut localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSoftwareDistributionComponent @@ -55596,7 +55596,7 @@ func (a *HyperflexApiService) UpdateHyperflexSoftwareDistributionEntryExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSoftwareDistributionEntry @@ -55772,7 +55772,7 @@ func (a *HyperflexApiService) UpdateHyperflexSoftwareDistributionVersionExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSoftwareDistributionVersion @@ -55948,7 +55948,7 @@ func (a *HyperflexApiService) UpdateHyperflexSoftwareVersionPolicyExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSoftwareVersionPolicy @@ -56124,7 +56124,7 @@ func (a *HyperflexApiService) UpdateHyperflexStorageContainerExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexStorageContainer @@ -56300,7 +56300,7 @@ func (a *HyperflexApiService) UpdateHyperflexSysConfigPolicyExecute(r ApiUpdateH localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSysConfigPolicy @@ -56476,7 +56476,7 @@ func (a *HyperflexApiService) UpdateHyperflexTargetExecute(r ApiUpdateHyperflexT localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexTarget @@ -56652,7 +56652,7 @@ func (a *HyperflexApiService) UpdateHyperflexUcsmConfigPolicyExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexUcsmConfigPolicy @@ -56828,7 +56828,7 @@ func (a *HyperflexApiService) UpdateHyperflexVcenterConfigPolicyExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexVcenterConfigPolicy @@ -57004,7 +57004,7 @@ func (a *HyperflexApiService) UpdateHyperflexVolumeExecute(r ApiUpdateHyperflexV localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexVolume diff --git a/intersight_gosdk/api_iaas.go b/intersight_gosdk/api_iaas.go index f269ff7249..37a9d066ea 100644 --- a/intersight_gosdk/api_iaas.go +++ b/intersight_gosdk/api_iaas.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -441,52 +441,52 @@ func (a *IaasApiService) GetIaasConnectorPackListExecute(r ApiGetIaasConnectorPa localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -870,52 +870,52 @@ func (a *IaasApiService) GetIaasCustomTaskInfoListExecute(r ApiGetIaasCustomTask localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1299,52 +1299,52 @@ func (a *IaasApiService) GetIaasDeviceStatusListExecute(r ApiGetIaasDeviceStatus localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1728,52 +1728,52 @@ func (a *IaasApiService) GetIaasDiagnosticMessagesListExecute(r ApiGetIaasDiagno localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2157,52 +2157,52 @@ func (a *IaasApiService) GetIaasLicenseInfoListExecute(r ApiGetIaasLicenseInfoLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2586,52 +2586,52 @@ func (a *IaasApiService) GetIaasMostRunTasksListExecute(r ApiGetIaasMostRunTasks localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3015,52 +3015,52 @@ func (a *IaasApiService) GetIaasServiceRequestListExecute(r ApiGetIaasServiceReq localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3444,52 +3444,52 @@ func (a *IaasApiService) GetIaasSystemTaskInfoListExecute(r ApiGetIaasSystemTask localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3873,52 +3873,52 @@ func (a *IaasApiService) GetIaasUcsdInfoListExecute(r ApiGetIaasUcsdInfoListRequ localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4302,52 +4302,52 @@ func (a *IaasApiService) GetIaasUcsdManagedInfraListExecute(r ApiGetIaasUcsdMana localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4731,52 +4731,52 @@ func (a *IaasApiService) GetIaasUcsdMessagesListExecute(r ApiGetIaasUcsdMessages localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4967,7 +4967,7 @@ func (a *IaasApiService) PatchIaasUcsdInfoExecute(r ApiPatchIaasUcsdInfoRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iaasUcsdInfo @@ -5143,7 +5143,7 @@ func (a *IaasApiService) UpdateIaasUcsdInfoExecute(r ApiUpdateIaasUcsdInfoReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iaasUcsdInfo diff --git a/intersight_gosdk/api_iam.go b/intersight_gosdk/api_iam.go index 32b4964855..3882cc7174 100644 --- a/intersight_gosdk/api_iam.go +++ b/intersight_gosdk/api_iam.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *IamApiService) CreateIamAccountExecute(r ApiCreateIamAccountRequest) (* localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamAccount @@ -291,10 +291,10 @@ func (a *IamApiService) CreateIamAccountExperienceExecute(r ApiCreateIamAccountE localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamAccountExperience @@ -473,10 +473,10 @@ func (a *IamApiService) CreateIamApiKeyExecute(r ApiCreateIamApiKeyRequest) (*Ia localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamApiKey @@ -655,10 +655,10 @@ func (a *IamApiService) CreateIamAppRegistrationExecute(r ApiCreateIamAppRegistr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamAppRegistration @@ -837,10 +837,10 @@ func (a *IamApiService) CreateIamCertificateExecute(r ApiCreateIamCertificateReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamCertificate @@ -1019,10 +1019,10 @@ func (a *IamApiService) CreateIamCertificateRequestExecute(r ApiCreateIamCertifi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamCertificateRequest @@ -1201,10 +1201,10 @@ func (a *IamApiService) CreateIamDomainNameInfoExecute(r ApiCreateIamDomainNameI localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamDomainNameInfo @@ -1383,10 +1383,10 @@ func (a *IamApiService) CreateIamEndPointUserExecute(r ApiCreateIamEndPointUserR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamEndPointUser @@ -1565,10 +1565,10 @@ func (a *IamApiService) CreateIamEndPointUserPolicyExecute(r ApiCreateIamEndPoin localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamEndPointUserPolicy @@ -1747,10 +1747,10 @@ func (a *IamApiService) CreateIamEndPointUserRoleExecute(r ApiCreateIamEndPointU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamEndPointUserRole @@ -1929,10 +1929,10 @@ func (a *IamApiService) CreateIamIdpExecute(r ApiCreateIamIdpRequest) (*IamIdp, localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamIdp @@ -2111,10 +2111,10 @@ func (a *IamApiService) CreateIamIpAccessManagementExecute(r ApiCreateIamIpAcces localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamIpAccessManagement @@ -2293,10 +2293,10 @@ func (a *IamApiService) CreateIamIpAddressExecute(r ApiCreateIamIpAddressRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamIpAddress @@ -2475,10 +2475,10 @@ func (a *IamApiService) CreateIamLdapGroupExecute(r ApiCreateIamLdapGroupRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamLdapGroup @@ -2657,10 +2657,10 @@ func (a *IamApiService) CreateIamLdapPolicyExecute(r ApiCreateIamLdapPolicyReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamLdapPolicy @@ -2839,10 +2839,10 @@ func (a *IamApiService) CreateIamLdapProviderExecute(r ApiCreateIamLdapProviderR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamLdapProvider @@ -3021,10 +3021,10 @@ func (a *IamApiService) CreateIamLocalUserPasswordExecute(r ApiCreateIamLocalUse localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamLocalUserPassword @@ -3203,10 +3203,10 @@ func (a *IamApiService) CreateIamPermissionExecute(r ApiCreateIamPermissionReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamPermission @@ -3385,10 +3385,10 @@ func (a *IamApiService) CreateIamPrivateKeySpecExecute(r ApiCreateIamPrivateKeyS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamPrivateKeySpec @@ -3567,10 +3567,10 @@ func (a *IamApiService) CreateIamQualifierExecute(r ApiCreateIamQualifierRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamQualifier @@ -3749,10 +3749,10 @@ func (a *IamApiService) CreateIamResourceRolesExecute(r ApiCreateIamResourceRole localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamResourceRoles @@ -3931,10 +3931,10 @@ func (a *IamApiService) CreateIamSessionLimitsExecute(r ApiCreateIamSessionLimit localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamSessionLimits @@ -4113,10 +4113,10 @@ func (a *IamApiService) CreateIamSharingRuleExecute(r ApiCreateIamSharingRuleReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamSharingRule @@ -4295,10 +4295,10 @@ func (a *IamApiService) CreateIamTrustPointExecute(r ApiCreateIamTrustPointReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamTrustPoint @@ -4477,10 +4477,10 @@ func (a *IamApiService) CreateIamUserExecute(r ApiCreateIamUserRequest) (*IamUse localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamUser @@ -4659,10 +4659,10 @@ func (a *IamApiService) CreateIamUserGroupExecute(r ApiCreateIamUserGroupRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamUserGroup @@ -4841,10 +4841,10 @@ func (a *IamApiService) CreateIamUserSettingExecute(r ApiCreateIamUserSettingReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamUserSetting @@ -8917,52 +8917,52 @@ func (a *IamApiService) GetIamAccountExperienceListExecute(r ApiGetIamAccountExp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9192,52 +9192,52 @@ func (a *IamApiService) GetIamAccountListExecute(r ApiGetIamAccountListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9621,52 +9621,52 @@ func (a *IamApiService) GetIamApiKeyListExecute(r ApiGetIamApiKeyListRequest) (* localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10050,52 +10050,52 @@ func (a *IamApiService) GetIamAppRegistrationListExecute(r ApiGetIamAppRegistrat localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10479,52 +10479,52 @@ func (a *IamApiService) GetIamBannerMessageListExecute(r ApiGetIamBannerMessageL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10908,52 +10908,52 @@ func (a *IamApiService) GetIamCertificateListExecute(r ApiGetIamCertificateListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11337,52 +11337,52 @@ func (a *IamApiService) GetIamCertificateRequestListExecute(r ApiGetIamCertifica localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11766,52 +11766,52 @@ func (a *IamApiService) GetIamDomainGroupListExecute(r ApiGetIamDomainGroupListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12195,52 +12195,52 @@ func (a *IamApiService) GetIamDomainNameInfoListExecute(r ApiGetIamDomainNameInf localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12624,52 +12624,52 @@ func (a *IamApiService) GetIamEndPointPrivilegeListExecute(r ApiGetIamEndPointPr localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13053,52 +13053,52 @@ func (a *IamApiService) GetIamEndPointRoleListExecute(r ApiGetIamEndPointRoleLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13636,52 +13636,52 @@ func (a *IamApiService) GetIamEndPointUserInventoryListExecute(r ApiGetIamEndPoi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13911,52 +13911,52 @@ func (a *IamApiService) GetIamEndPointUserListExecute(r ApiGetIamEndPointUserLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14494,52 +14494,52 @@ func (a *IamApiService) GetIamEndPointUserPolicyInventoryListExecute(r ApiGetIam localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14769,52 +14769,52 @@ func (a *IamApiService) GetIamEndPointUserPolicyListExecute(r ApiGetIamEndPointU localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15352,52 +15352,52 @@ func (a *IamApiService) GetIamEndPointUserRoleInventoryListExecute(r ApiGetIamEn localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15627,52 +15627,52 @@ func (a *IamApiService) GetIamEndPointUserRoleListExecute(r ApiGetIamEndPointUse localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16056,52 +16056,52 @@ func (a *IamApiService) GetIamIdpListExecute(r ApiGetIamIdpListRequest) (*IamIdp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16485,52 +16485,52 @@ func (a *IamApiService) GetIamIdpReferenceListExecute(r ApiGetIamIdpReferenceLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16914,52 +16914,52 @@ func (a *IamApiService) GetIamIpAccessManagementListExecute(r ApiGetIamIpAccessM localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17343,52 +17343,52 @@ func (a *IamApiService) GetIamIpAddressListExecute(r ApiGetIamIpAddressListReque localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17772,52 +17772,52 @@ func (a *IamApiService) GetIamLdapConfigParamsListExecute(r ApiGetIamLdapConfigP localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18201,52 +18201,52 @@ func (a *IamApiService) GetIamLdapGroupListExecute(r ApiGetIamLdapGroupListReque localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18630,52 +18630,52 @@ func (a *IamApiService) GetIamLdapPolicyListExecute(r ApiGetIamLdapPolicyListReq localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19059,52 +19059,52 @@ func (a *IamApiService) GetIamLdapProviderListExecute(r ApiGetIamLdapProviderLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19488,52 +19488,52 @@ func (a *IamApiService) GetIamLocalUserPasswordListExecute(r ApiGetIamLocalUserP localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19917,52 +19917,52 @@ func (a *IamApiService) GetIamLocalUserPasswordPolicyListExecute(r ApiGetIamLoca localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20346,52 +20346,52 @@ func (a *IamApiService) GetIamOAuthTokenListExecute(r ApiGetIamOAuthTokenListReq localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20775,52 +20775,52 @@ func (a *IamApiService) GetIamPermissionListExecute(r ApiGetIamPermissionListReq localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21204,52 +21204,52 @@ func (a *IamApiService) GetIamPrivateKeySpecListExecute(r ApiGetIamPrivateKeySpe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21633,52 +21633,52 @@ func (a *IamApiService) GetIamPrivilegeListExecute(r ApiGetIamPrivilegeListReque localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22062,52 +22062,52 @@ func (a *IamApiService) GetIamPrivilegeSetListExecute(r ApiGetIamPrivilegeSetLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22491,52 +22491,52 @@ func (a *IamApiService) GetIamQualifierListExecute(r ApiGetIamQualifierListReque localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22920,52 +22920,52 @@ func (a *IamApiService) GetIamResourceLimitsListExecute(r ApiGetIamResourceLimit localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23349,52 +23349,52 @@ func (a *IamApiService) GetIamResourcePermissionListExecute(r ApiGetIamResourceP localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23778,52 +23778,52 @@ func (a *IamApiService) GetIamResourceRolesListExecute(r ApiGetIamResourceRolesL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24207,52 +24207,52 @@ func (a *IamApiService) GetIamRoleListExecute(r ApiGetIamRoleListRequest) (*IamR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24636,52 +24636,52 @@ func (a *IamApiService) GetIamSecurityHolderListExecute(r ApiGetIamSecurityHolde localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25065,52 +25065,52 @@ func (a *IamApiService) GetIamServiceProviderListExecute(r ApiGetIamServiceProvi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25648,52 +25648,52 @@ func (a *IamApiService) GetIamSessionLimitsListExecute(r ApiGetIamSessionLimitsL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25923,52 +25923,52 @@ func (a *IamApiService) GetIamSessionListExecute(r ApiGetIamSessionListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26352,52 +26352,52 @@ func (a *IamApiService) GetIamSharingRuleListExecute(r ApiGetIamSharingRuleListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26781,52 +26781,52 @@ func (a *IamApiService) GetIamSystemListExecute(r ApiGetIamSystemListRequest) (* localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27210,52 +27210,52 @@ func (a *IamApiService) GetIamTrustPointListExecute(r ApiGetIamTrustPointListReq localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27793,52 +27793,52 @@ func (a *IamApiService) GetIamUserGroupListExecute(r ApiGetIamUserGroupListReque localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28068,52 +28068,52 @@ func (a *IamApiService) GetIamUserListExecute(r ApiGetIamUserListRequest) (*IamU localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28497,52 +28497,52 @@ func (a *IamApiService) GetIamUserPreferenceListExecute(r ApiGetIamUserPreferenc localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28926,52 +28926,52 @@ func (a *IamApiService) GetIamUserSettingListExecute(r ApiGetIamUserSettingListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29162,7 +29162,7 @@ func (a *IamApiService) PatchIamAccountExecute(r ApiPatchIamAccountRequest) (*Ia localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamAccount @@ -29338,7 +29338,7 @@ func (a *IamApiService) PatchIamAccountExperienceExecute(r ApiPatchIamAccountExp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamAccountExperience @@ -29514,7 +29514,7 @@ func (a *IamApiService) PatchIamApiKeyExecute(r ApiPatchIamApiKeyRequest) (*IamA localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamApiKey @@ -29690,7 +29690,7 @@ func (a *IamApiService) PatchIamAppRegistrationExecute(r ApiPatchIamAppRegistrat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamAppRegistration @@ -29866,7 +29866,7 @@ func (a *IamApiService) PatchIamBannerMessageExecute(r ApiPatchIamBannerMessageR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamBannerMessage @@ -30042,7 +30042,7 @@ func (a *IamApiService) PatchIamCertificateExecute(r ApiPatchIamCertificateReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamCertificate @@ -30218,7 +30218,7 @@ func (a *IamApiService) PatchIamCertificateRequestExecute(r ApiPatchIamCertifica localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamCertificateRequest @@ -30394,7 +30394,7 @@ func (a *IamApiService) PatchIamDomainNameInfoExecute(r ApiPatchIamDomainNameInf localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamDomainNameInfo @@ -30570,7 +30570,7 @@ func (a *IamApiService) PatchIamEndPointUserExecute(r ApiPatchIamEndPointUserReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamEndPointUser @@ -30746,7 +30746,7 @@ func (a *IamApiService) PatchIamEndPointUserPolicyExecute(r ApiPatchIamEndPointU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamEndPointUserPolicy @@ -30922,7 +30922,7 @@ func (a *IamApiService) PatchIamEndPointUserRoleExecute(r ApiPatchIamEndPointUse localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamEndPointUserRole @@ -31098,7 +31098,7 @@ func (a *IamApiService) PatchIamIdpExecute(r ApiPatchIamIdpRequest) (*IamIdp, *h localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamIdp @@ -31274,7 +31274,7 @@ func (a *IamApiService) PatchIamIdpReferenceExecute(r ApiPatchIamIdpReferenceReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamIdpReference @@ -31450,7 +31450,7 @@ func (a *IamApiService) PatchIamIpAccessManagementExecute(r ApiPatchIamIpAccessM localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamIpAccessManagement @@ -31626,7 +31626,7 @@ func (a *IamApiService) PatchIamIpAddressExecute(r ApiPatchIamIpAddressRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamIpAddress @@ -31802,7 +31802,7 @@ func (a *IamApiService) PatchIamLdapGroupExecute(r ApiPatchIamLdapGroupRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamLdapGroup @@ -31978,7 +31978,7 @@ func (a *IamApiService) PatchIamLdapPolicyExecute(r ApiPatchIamLdapPolicyRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamLdapPolicy @@ -32154,7 +32154,7 @@ func (a *IamApiService) PatchIamLdapProviderExecute(r ApiPatchIamLdapProviderReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamLdapProvider @@ -32330,7 +32330,7 @@ func (a *IamApiService) PatchIamLocalUserPasswordExecute(r ApiPatchIamLocalUserP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamLocalUserPassword @@ -32506,7 +32506,7 @@ func (a *IamApiService) PatchIamLocalUserPasswordPolicyExecute(r ApiPatchIamLoca localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamLocalUserPasswordPolicy @@ -32682,7 +32682,7 @@ func (a *IamApiService) PatchIamPermissionExecute(r ApiPatchIamPermissionRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamPermission @@ -32858,7 +32858,7 @@ func (a *IamApiService) PatchIamPrivateKeySpecExecute(r ApiPatchIamPrivateKeySpe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamPrivateKeySpec @@ -33034,7 +33034,7 @@ func (a *IamApiService) PatchIamQualifierExecute(r ApiPatchIamQualifierRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamQualifier @@ -33210,7 +33210,7 @@ func (a *IamApiService) PatchIamResourceLimitsExecute(r ApiPatchIamResourceLimit localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamResourceLimits @@ -33386,7 +33386,7 @@ func (a *IamApiService) PatchIamResourceRolesExecute(r ApiPatchIamResourceRolesR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamResourceRoles @@ -33562,7 +33562,7 @@ func (a *IamApiService) PatchIamSessionLimitsExecute(r ApiPatchIamSessionLimitsR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamSessionLimits @@ -33738,7 +33738,7 @@ func (a *IamApiService) PatchIamUserExecute(r ApiPatchIamUserRequest) (*IamUser, localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamUser @@ -33914,7 +33914,7 @@ func (a *IamApiService) PatchIamUserGroupExecute(r ApiPatchIamUserGroupRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamUserGroup @@ -34090,7 +34090,7 @@ func (a *IamApiService) PatchIamUserPreferenceExecute(r ApiPatchIamUserPreferenc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamUserPreference @@ -34266,7 +34266,7 @@ func (a *IamApiService) PatchIamUserSettingExecute(r ApiPatchIamUserSettingReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamUserSetting @@ -34442,7 +34442,7 @@ func (a *IamApiService) UpdateIamAccountExecute(r ApiUpdateIamAccountRequest) (* localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamAccount @@ -34618,7 +34618,7 @@ func (a *IamApiService) UpdateIamAccountExperienceExecute(r ApiUpdateIamAccountE localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamAccountExperience @@ -34794,7 +34794,7 @@ func (a *IamApiService) UpdateIamApiKeyExecute(r ApiUpdateIamApiKeyRequest) (*Ia localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamApiKey @@ -34970,7 +34970,7 @@ func (a *IamApiService) UpdateIamAppRegistrationExecute(r ApiUpdateIamAppRegistr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamAppRegistration @@ -35146,7 +35146,7 @@ func (a *IamApiService) UpdateIamBannerMessageExecute(r ApiUpdateIamBannerMessag localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamBannerMessage @@ -35322,7 +35322,7 @@ func (a *IamApiService) UpdateIamCertificateExecute(r ApiUpdateIamCertificateReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamCertificate @@ -35498,7 +35498,7 @@ func (a *IamApiService) UpdateIamCertificateRequestExecute(r ApiUpdateIamCertifi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamCertificateRequest @@ -35674,7 +35674,7 @@ func (a *IamApiService) UpdateIamDomainNameInfoExecute(r ApiUpdateIamDomainNameI localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamDomainNameInfo @@ -35850,7 +35850,7 @@ func (a *IamApiService) UpdateIamEndPointUserExecute(r ApiUpdateIamEndPointUserR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamEndPointUser @@ -36026,7 +36026,7 @@ func (a *IamApiService) UpdateIamEndPointUserPolicyExecute(r ApiUpdateIamEndPoin localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamEndPointUserPolicy @@ -36202,7 +36202,7 @@ func (a *IamApiService) UpdateIamEndPointUserRoleExecute(r ApiUpdateIamEndPointU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamEndPointUserRole @@ -36378,7 +36378,7 @@ func (a *IamApiService) UpdateIamIdpExecute(r ApiUpdateIamIdpRequest) (*IamIdp, localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamIdp @@ -36554,7 +36554,7 @@ func (a *IamApiService) UpdateIamIdpReferenceExecute(r ApiUpdateIamIdpReferenceR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamIdpReference @@ -36730,7 +36730,7 @@ func (a *IamApiService) UpdateIamIpAccessManagementExecute(r ApiUpdateIamIpAcces localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamIpAccessManagement @@ -36906,7 +36906,7 @@ func (a *IamApiService) UpdateIamIpAddressExecute(r ApiUpdateIamIpAddressRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamIpAddress @@ -37082,7 +37082,7 @@ func (a *IamApiService) UpdateIamLdapGroupExecute(r ApiUpdateIamLdapGroupRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamLdapGroup @@ -37258,7 +37258,7 @@ func (a *IamApiService) UpdateIamLdapPolicyExecute(r ApiUpdateIamLdapPolicyReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamLdapPolicy @@ -37434,7 +37434,7 @@ func (a *IamApiService) UpdateIamLdapProviderExecute(r ApiUpdateIamLdapProviderR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamLdapProvider @@ -37610,7 +37610,7 @@ func (a *IamApiService) UpdateIamLocalUserPasswordExecute(r ApiUpdateIamLocalUse localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamLocalUserPassword @@ -37786,7 +37786,7 @@ func (a *IamApiService) UpdateIamLocalUserPasswordPolicyExecute(r ApiUpdateIamLo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamLocalUserPasswordPolicy @@ -37962,7 +37962,7 @@ func (a *IamApiService) UpdateIamPermissionExecute(r ApiUpdateIamPermissionReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamPermission @@ -38138,7 +38138,7 @@ func (a *IamApiService) UpdateIamPrivateKeySpecExecute(r ApiUpdateIamPrivateKeyS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamPrivateKeySpec @@ -38314,7 +38314,7 @@ func (a *IamApiService) UpdateIamQualifierExecute(r ApiUpdateIamQualifierRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamQualifier @@ -38490,7 +38490,7 @@ func (a *IamApiService) UpdateIamResourceLimitsExecute(r ApiUpdateIamResourceLim localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamResourceLimits @@ -38666,7 +38666,7 @@ func (a *IamApiService) UpdateIamResourceRolesExecute(r ApiUpdateIamResourceRole localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamResourceRoles @@ -38842,7 +38842,7 @@ func (a *IamApiService) UpdateIamSessionLimitsExecute(r ApiUpdateIamSessionLimit localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamSessionLimits @@ -39018,7 +39018,7 @@ func (a *IamApiService) UpdateIamUserExecute(r ApiUpdateIamUserRequest) (*IamUse localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamUser @@ -39194,7 +39194,7 @@ func (a *IamApiService) UpdateIamUserGroupExecute(r ApiUpdateIamUserGroupRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamUserGroup @@ -39370,7 +39370,7 @@ func (a *IamApiService) UpdateIamUserPreferenceExecute(r ApiUpdateIamUserPrefere localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamUserPreference @@ -39546,7 +39546,7 @@ func (a *IamApiService) UpdateIamUserSettingExecute(r ApiUpdateIamUserSettingReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamUserSetting diff --git a/intersight_gosdk/api_inventory.go b/intersight_gosdk/api_inventory.go index be520ba7d6..7ee5ad0971 100644 --- a/intersight_gosdk/api_inventory.go +++ b/intersight_gosdk/api_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *InventoryApiService) CreateInventoryRequestExecute(r ApiCreateInventory localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.inventoryRequest @@ -481,52 +481,52 @@ func (a *InventoryApiService) GetInventoryDeviceInfoListExecute(r ApiGetInventor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -910,52 +910,52 @@ func (a *InventoryApiService) GetInventoryDnMoBindingListExecute(r ApiGetInvento localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1493,52 +1493,52 @@ func (a *InventoryApiService) GetInventoryGenericInventoryHolderListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1768,52 +1768,52 @@ func (a *InventoryApiService) GetInventoryGenericInventoryListExecute(r ApiGetIn localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2004,7 +2004,7 @@ func (a *InventoryApiService) PatchInventoryGenericInventoryExecute(r ApiPatchIn localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.inventoryGenericInventory @@ -2180,7 +2180,7 @@ func (a *InventoryApiService) PatchInventoryGenericInventoryHolderExecute(r ApiP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.inventoryGenericInventoryHolder @@ -2356,7 +2356,7 @@ func (a *InventoryApiService) UpdateInventoryGenericInventoryExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.inventoryGenericInventory @@ -2532,7 +2532,7 @@ func (a *InventoryApiService) UpdateInventoryGenericInventoryHolderExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.inventoryGenericInventoryHolder diff --git a/intersight_gosdk/api_ipmioverlan.go b/intersight_gosdk/api_ipmioverlan.go index ed50ba7fb1..4fd0ce860e 100644 --- a/intersight_gosdk/api_ipmioverlan.go +++ b/intersight_gosdk/api_ipmioverlan.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *IpmioverlanApiService) CreateIpmioverlanPolicyExecute(r ApiCreateIpmiov localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.ipmioverlanPolicy @@ -777,52 +777,52 @@ func (a *IpmioverlanApiService) GetIpmioverlanPolicyInventoryListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *IpmioverlanApiService) GetIpmioverlanPolicyListExecute(r ApiGetIpmiover localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1288,7 +1288,7 @@ func (a *IpmioverlanApiService) PatchIpmioverlanPolicyExecute(r ApiPatchIpmiover localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.ipmioverlanPolicy @@ -1464,7 +1464,7 @@ func (a *IpmioverlanApiService) UpdateIpmioverlanPolicyExecute(r ApiUpdateIpmiov localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.ipmioverlanPolicy diff --git a/intersight_gosdk/api_ippool.go b/intersight_gosdk/api_ippool.go index 53365d011a..f9ff3c0843 100644 --- a/intersight_gosdk/api_ippool.go +++ b/intersight_gosdk/api_ippool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *IppoolApiService) CreateIppoolPoolExecute(r ApiCreateIppoolPoolRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.ippoolPool @@ -291,10 +291,10 @@ func (a *IppoolApiService) CreateIppoolReservationExecute(r ApiCreateIppoolReser localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.ippoolReservation @@ -1089,52 +1089,52 @@ func (a *IppoolApiService) GetIppoolBlockLeaseListExecute(r ApiGetIppoolBlockLea localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1518,52 +1518,52 @@ func (a *IppoolApiService) GetIppoolIpLeaseListExecute(r ApiGetIppoolIpLeaseList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1947,52 +1947,52 @@ func (a *IppoolApiService) GetIppoolPoolListExecute(r ApiGetIppoolPoolListReques localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2376,52 +2376,52 @@ func (a *IppoolApiService) GetIppoolPoolMemberListExecute(r ApiGetIppoolPoolMemb localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2805,52 +2805,52 @@ func (a *IppoolApiService) GetIppoolReservationListExecute(r ApiGetIppoolReserva localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3234,52 +3234,52 @@ func (a *IppoolApiService) GetIppoolShadowBlockListExecute(r ApiGetIppoolShadowB localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3663,52 +3663,52 @@ func (a *IppoolApiService) GetIppoolShadowPoolListExecute(r ApiGetIppoolShadowPo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4092,52 +4092,52 @@ func (a *IppoolApiService) GetIppoolUniverseListExecute(r ApiGetIppoolUniverseLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4328,7 +4328,7 @@ func (a *IppoolApiService) PatchIppoolPoolExecute(r ApiPatchIppoolPoolRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.ippoolPool @@ -4504,7 +4504,7 @@ func (a *IppoolApiService) UpdateIppoolPoolExecute(r ApiUpdateIppoolPoolRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.ippoolPool diff --git a/intersight_gosdk/api_iqnpool.go b/intersight_gosdk/api_iqnpool.go index 3fb1d7f1fc..f8ca2dc0bc 100644 --- a/intersight_gosdk/api_iqnpool.go +++ b/intersight_gosdk/api_iqnpool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *IqnpoolApiService) CreateIqnpoolPoolExecute(r ApiCreateIqnpoolPoolReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iqnpoolPool @@ -291,10 +291,10 @@ func (a *IqnpoolApiService) CreateIqnpoolReservationExecute(r ApiCreateIqnpoolRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iqnpoolReservation @@ -1089,52 +1089,52 @@ func (a *IqnpoolApiService) GetIqnpoolBlockListExecute(r ApiGetIqnpoolBlockListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1518,52 +1518,52 @@ func (a *IqnpoolApiService) GetIqnpoolLeaseListExecute(r ApiGetIqnpoolLeaseListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1947,52 +1947,52 @@ func (a *IqnpoolApiService) GetIqnpoolPoolListExecute(r ApiGetIqnpoolPoolListReq localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2376,52 +2376,52 @@ func (a *IqnpoolApiService) GetIqnpoolPoolMemberListExecute(r ApiGetIqnpoolPoolM localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2805,52 +2805,52 @@ func (a *IqnpoolApiService) GetIqnpoolReservationListExecute(r ApiGetIqnpoolRese localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3234,52 +3234,52 @@ func (a *IqnpoolApiService) GetIqnpoolUniverseListExecute(r ApiGetIqnpoolUnivers localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3470,7 +3470,7 @@ func (a *IqnpoolApiService) PatchIqnpoolPoolExecute(r ApiPatchIqnpoolPoolRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iqnpoolPool @@ -3646,7 +3646,7 @@ func (a *IqnpoolApiService) UpdateIqnpoolPoolExecute(r ApiUpdateIqnpoolPoolReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iqnpoolPool diff --git a/intersight_gosdk/api_iwotenant.go b/intersight_gosdk/api_iwotenant.go index 986489b52c..98add5419b 100644 --- a/intersight_gosdk/api_iwotenant.go +++ b/intersight_gosdk/api_iwotenant.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *IwotenantApiService) CreateIwotenantMaintenanceNotificationExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iwotenantMaintenanceNotification @@ -291,10 +291,10 @@ func (a *IwotenantApiService) CreateIwotenantMigrateExecute(r ApiCreateIwotenant localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iwotenantMigrate @@ -473,10 +473,10 @@ func (a *IwotenantApiService) CreateIwotenantTenantCustomizationExecute(r ApiCre localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iwotenantTenantCustomization @@ -1271,52 +1271,52 @@ func (a *IwotenantApiService) GetIwotenantMaintenanceNotificationListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1700,52 +1700,52 @@ func (a *IwotenantApiService) GetIwotenantMigrateListExecute(r ApiGetIwotenantMi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2129,52 +2129,52 @@ func (a *IwotenantApiService) GetIwotenantTenantCustomizationListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2558,52 +2558,52 @@ func (a *IwotenantApiService) GetIwotenantTenantStatusListExecute(r ApiGetIwoten localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2794,7 +2794,7 @@ func (a *IwotenantApiService) PatchIwotenantMigrateExecute(r ApiPatchIwotenantMi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iwotenantMigrate @@ -2970,7 +2970,7 @@ func (a *IwotenantApiService) PatchIwotenantTenantCustomizationExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iwotenantTenantCustomization @@ -3146,7 +3146,7 @@ func (a *IwotenantApiService) UpdateIwotenantMigrateExecute(r ApiUpdateIwotenant localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iwotenantMigrate @@ -3322,7 +3322,7 @@ func (a *IwotenantApiService) UpdateIwotenantTenantCustomizationExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iwotenantTenantCustomization diff --git a/intersight_gosdk/api_kubernetes.go b/intersight_gosdk/api_kubernetes.go index 2b97d80e01..3bac17661f 100644 --- a/intersight_gosdk/api_kubernetes.go +++ b/intersight_gosdk/api_kubernetes.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -113,10 +113,10 @@ func (a *KubernetesApiService) CreateKubernetesAciCniApicExecute(r ApiCreateKube localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAciCniApic @@ -299,10 +299,10 @@ func (a *KubernetesApiService) CreateKubernetesAciCniProfileExecute(r ApiCreateK localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAciCniProfile @@ -485,10 +485,10 @@ func (a *KubernetesApiService) CreateKubernetesAciCniTenantClusterAllocationExec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAciCniTenantClusterAllocation @@ -667,10 +667,10 @@ func (a *KubernetesApiService) CreateKubernetesAddonDefinitionExecute(r ApiCreat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAddonDefinition @@ -849,10 +849,10 @@ func (a *KubernetesApiService) CreateKubernetesAddonPolicyExecute(r ApiCreateKub localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAddonPolicy @@ -1031,10 +1031,10 @@ func (a *KubernetesApiService) CreateKubernetesAddonRepositoryExecute(r ApiCreat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAddonRepository @@ -1217,10 +1217,10 @@ func (a *KubernetesApiService) CreateKubernetesBaremetalNodeProfileExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesBaremetalNodeProfile @@ -1399,10 +1399,10 @@ func (a *KubernetesApiService) CreateKubernetesClusterExecute(r ApiCreateKuberne localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesCluster @@ -1581,10 +1581,10 @@ func (a *KubernetesApiService) CreateKubernetesClusterAddonProfileExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesClusterAddonProfile @@ -1763,10 +1763,10 @@ func (a *KubernetesApiService) CreateKubernetesClusterProfileExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesClusterProfile @@ -1945,10 +1945,10 @@ func (a *KubernetesApiService) CreateKubernetesContainerRuntimePolicyExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesContainerRuntimePolicy @@ -2127,10 +2127,10 @@ func (a *KubernetesApiService) CreateKubernetesHttpProxyPolicyExecute(r ApiCreat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesHttpProxyPolicy @@ -2309,10 +2309,10 @@ func (a *KubernetesApiService) CreateKubernetesNetworkPolicyExecute(r ApiCreateK localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesNetworkPolicy @@ -2491,10 +2491,10 @@ func (a *KubernetesApiService) CreateKubernetesNodeGroupProfileExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesNodeGroupProfile @@ -2673,10 +2673,10 @@ func (a *KubernetesApiService) CreateKubernetesNvidiaGpuProductExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesNvidiaGpuProduct @@ -2855,10 +2855,10 @@ func (a *KubernetesApiService) CreateKubernetesSysConfigPolicyExecute(r ApiCreat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesSysConfigPolicy @@ -3037,10 +3037,10 @@ func (a *KubernetesApiService) CreateKubernetesTrustedRegistriesPolicyExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesTrustedRegistriesPolicy @@ -3219,10 +3219,10 @@ func (a *KubernetesApiService) CreateKubernetesVersionExecute(r ApiCreateKuberne localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVersion @@ -3401,10 +3401,10 @@ func (a *KubernetesApiService) CreateKubernetesVersionPolicyExecute(r ApiCreateK localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVersionPolicy @@ -3583,10 +3583,10 @@ func (a *KubernetesApiService) CreateKubernetesVirtualMachineInfraConfigPolicyEx localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVirtualMachineInfraConfigPolicy @@ -3765,10 +3765,10 @@ func (a *KubernetesApiService) CreateKubernetesVirtualMachineInfrastructureProvi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVirtualMachineInfrastructureProvider @@ -3947,10 +3947,10 @@ func (a *KubernetesApiService) CreateKubernetesVirtualMachineInstanceTypeExecute localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVirtualMachineInstanceType @@ -4129,10 +4129,10 @@ func (a *KubernetesApiService) CreateKubernetesVirtualMachineNodeProfileExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVirtualMachineNodeProfile @@ -8639,52 +8639,52 @@ func (a *KubernetesApiService) GetKubernetesAciCniApicListExecute(r ApiGetKubern localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9076,52 +9076,52 @@ func (a *KubernetesApiService) GetKubernetesAciCniProfileListExecute(r ApiGetKub localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9513,52 +9513,52 @@ func (a *KubernetesApiService) GetKubernetesAciCniTenantClusterAllocationListExe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9942,52 +9942,52 @@ func (a *KubernetesApiService) GetKubernetesAddonDefinitionListExecute(r ApiGetK localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10371,52 +10371,52 @@ func (a *KubernetesApiService) GetKubernetesAddonPolicyListExecute(r ApiGetKuber localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10800,52 +10800,52 @@ func (a *KubernetesApiService) GetKubernetesAddonRepositoryListExecute(r ApiGetK localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11237,52 +11237,52 @@ func (a *KubernetesApiService) GetKubernetesBaremetalNodeProfileListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11666,52 +11666,52 @@ func (a *KubernetesApiService) GetKubernetesCatalogListExecute(r ApiGetKubernete localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12095,52 +12095,52 @@ func (a *KubernetesApiService) GetKubernetesClusterAddonProfileListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12524,52 +12524,52 @@ func (a *KubernetesApiService) GetKubernetesClusterListExecute(r ApiGetKubernete localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12953,52 +12953,52 @@ func (a *KubernetesApiService) GetKubernetesClusterProfileListExecute(r ApiGetKu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13536,52 +13536,52 @@ func (a *KubernetesApiService) GetKubernetesConfigResultEntryListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13811,52 +13811,52 @@ func (a *KubernetesApiService) GetKubernetesConfigResultListExecute(r ApiGetKube localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14240,52 +14240,52 @@ func (a *KubernetesApiService) GetKubernetesContainerRuntimePolicyListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14669,52 +14669,52 @@ func (a *KubernetesApiService) GetKubernetesDaemonSetListExecute(r ApiGetKuberne localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15098,52 +15098,52 @@ func (a *KubernetesApiService) GetKubernetesDeploymentListExecute(r ApiGetKubern localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15527,52 +15527,52 @@ func (a *KubernetesApiService) GetKubernetesHttpProxyPolicyListExecute(r ApiGetK localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15956,52 +15956,52 @@ func (a *KubernetesApiService) GetKubernetesIngressListExecute(r ApiGetKubernete localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16385,52 +16385,52 @@ func (a *KubernetesApiService) GetKubernetesNetworkPolicyListExecute(r ApiGetKub localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16968,52 +16968,52 @@ func (a *KubernetesApiService) GetKubernetesNodeGroupProfileListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17243,52 +17243,52 @@ func (a *KubernetesApiService) GetKubernetesNodeListExecute(r ApiGetKubernetesNo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17672,52 +17672,52 @@ func (a *KubernetesApiService) GetKubernetesNvidiaGpuProductListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18101,52 +18101,52 @@ func (a *KubernetesApiService) GetKubernetesPodListExecute(r ApiGetKubernetesPod localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18530,52 +18530,52 @@ func (a *KubernetesApiService) GetKubernetesServiceListExecute(r ApiGetKubernete localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18959,52 +18959,52 @@ func (a *KubernetesApiService) GetKubernetesStatefulSetListExecute(r ApiGetKuber localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19388,52 +19388,52 @@ func (a *KubernetesApiService) GetKubernetesSysConfigPolicyListExecute(r ApiGetK localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19817,52 +19817,52 @@ func (a *KubernetesApiService) GetKubernetesTrustedRegistriesPolicyListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20246,52 +20246,52 @@ func (a *KubernetesApiService) GetKubernetesVersionListExecute(r ApiGetKubernete localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20675,52 +20675,52 @@ func (a *KubernetesApiService) GetKubernetesVersionPolicyListExecute(r ApiGetKub localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21104,52 +21104,52 @@ func (a *KubernetesApiService) GetKubernetesVirtualMachineInfraConfigPolicyListE localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21533,52 +21533,52 @@ func (a *KubernetesApiService) GetKubernetesVirtualMachineInfrastructureProvider localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21962,52 +21962,52 @@ func (a *KubernetesApiService) GetKubernetesVirtualMachineInstanceTypeListExecut localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22391,52 +22391,52 @@ func (a *KubernetesApiService) GetKubernetesVirtualMachineNodeProfileListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22631,7 +22631,7 @@ func (a *KubernetesApiService) PatchKubernetesAciCniApicExecute(r ApiPatchKubern localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAciCniApic @@ -22811,7 +22811,7 @@ func (a *KubernetesApiService) PatchKubernetesAciCniProfileExecute(r ApiPatchKub localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAciCniProfile @@ -22991,7 +22991,7 @@ func (a *KubernetesApiService) PatchKubernetesAciCniTenantClusterAllocationExecu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAciCniTenantClusterAllocation @@ -23167,7 +23167,7 @@ func (a *KubernetesApiService) PatchKubernetesAddonDefinitionExecute(r ApiPatchK localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAddonDefinition @@ -23343,7 +23343,7 @@ func (a *KubernetesApiService) PatchKubernetesAddonPolicyExecute(r ApiPatchKuber localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAddonPolicy @@ -23519,7 +23519,7 @@ func (a *KubernetesApiService) PatchKubernetesAddonRepositoryExecute(r ApiPatchK localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAddonRepository @@ -23699,7 +23699,7 @@ func (a *KubernetesApiService) PatchKubernetesBaremetalNodeProfileExecute(r ApiP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesBaremetalNodeProfile @@ -23875,7 +23875,7 @@ func (a *KubernetesApiService) PatchKubernetesClusterExecute(r ApiPatchKubernete localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesCluster @@ -24051,7 +24051,7 @@ func (a *KubernetesApiService) PatchKubernetesClusterAddonProfileExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesClusterAddonProfile @@ -24227,7 +24227,7 @@ func (a *KubernetesApiService) PatchKubernetesClusterProfileExecute(r ApiPatchKu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesClusterProfile @@ -24403,7 +24403,7 @@ func (a *KubernetesApiService) PatchKubernetesContainerRuntimePolicyExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesContainerRuntimePolicy @@ -24579,7 +24579,7 @@ func (a *KubernetesApiService) PatchKubernetesHttpProxyPolicyExecute(r ApiPatchK localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesHttpProxyPolicy @@ -24755,7 +24755,7 @@ func (a *KubernetesApiService) PatchKubernetesNetworkPolicyExecute(r ApiPatchKub localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesNetworkPolicy @@ -24931,7 +24931,7 @@ func (a *KubernetesApiService) PatchKubernetesNodeGroupProfileExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesNodeGroupProfile @@ -25107,7 +25107,7 @@ func (a *KubernetesApiService) PatchKubernetesNvidiaGpuProductExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesNvidiaGpuProduct @@ -25283,7 +25283,7 @@ func (a *KubernetesApiService) PatchKubernetesSysConfigPolicyExecute(r ApiPatchK localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesSysConfigPolicy @@ -25459,7 +25459,7 @@ func (a *KubernetesApiService) PatchKubernetesTrustedRegistriesPolicyExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesTrustedRegistriesPolicy @@ -25635,7 +25635,7 @@ func (a *KubernetesApiService) PatchKubernetesVersionExecute(r ApiPatchKubernete localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVersion @@ -25811,7 +25811,7 @@ func (a *KubernetesApiService) PatchKubernetesVersionPolicyExecute(r ApiPatchKub localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVersionPolicy @@ -25987,7 +25987,7 @@ func (a *KubernetesApiService) PatchKubernetesVirtualMachineInfraConfigPolicyExe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVirtualMachineInfraConfigPolicy @@ -26163,7 +26163,7 @@ func (a *KubernetesApiService) PatchKubernetesVirtualMachineInfrastructureProvid localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVirtualMachineInfrastructureProvider @@ -26339,7 +26339,7 @@ func (a *KubernetesApiService) PatchKubernetesVirtualMachineInstanceTypeExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVirtualMachineInstanceType @@ -26515,7 +26515,7 @@ func (a *KubernetesApiService) PatchKubernetesVirtualMachineNodeProfileExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVirtualMachineNodeProfile @@ -26695,7 +26695,7 @@ func (a *KubernetesApiService) UpdateKubernetesAciCniApicExecute(r ApiUpdateKube localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAciCniApic @@ -26875,7 +26875,7 @@ func (a *KubernetesApiService) UpdateKubernetesAciCniProfileExecute(r ApiUpdateK localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAciCniProfile @@ -27055,7 +27055,7 @@ func (a *KubernetesApiService) UpdateKubernetesAciCniTenantClusterAllocationExec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAciCniTenantClusterAllocation @@ -27231,7 +27231,7 @@ func (a *KubernetesApiService) UpdateKubernetesAddonDefinitionExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAddonDefinition @@ -27407,7 +27407,7 @@ func (a *KubernetesApiService) UpdateKubernetesAddonPolicyExecute(r ApiUpdateKub localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAddonPolicy @@ -27583,7 +27583,7 @@ func (a *KubernetesApiService) UpdateKubernetesAddonRepositoryExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAddonRepository @@ -27763,7 +27763,7 @@ func (a *KubernetesApiService) UpdateKubernetesBaremetalNodeProfileExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesBaremetalNodeProfile @@ -27939,7 +27939,7 @@ func (a *KubernetesApiService) UpdateKubernetesClusterExecute(r ApiUpdateKuberne localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesCluster @@ -28115,7 +28115,7 @@ func (a *KubernetesApiService) UpdateKubernetesClusterAddonProfileExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesClusterAddonProfile @@ -28291,7 +28291,7 @@ func (a *KubernetesApiService) UpdateKubernetesClusterProfileExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesClusterProfile @@ -28467,7 +28467,7 @@ func (a *KubernetesApiService) UpdateKubernetesContainerRuntimePolicyExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesContainerRuntimePolicy @@ -28643,7 +28643,7 @@ func (a *KubernetesApiService) UpdateKubernetesHttpProxyPolicyExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesHttpProxyPolicy @@ -28819,7 +28819,7 @@ func (a *KubernetesApiService) UpdateKubernetesNetworkPolicyExecute(r ApiUpdateK localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesNetworkPolicy @@ -28995,7 +28995,7 @@ func (a *KubernetesApiService) UpdateKubernetesNodeGroupProfileExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesNodeGroupProfile @@ -29171,7 +29171,7 @@ func (a *KubernetesApiService) UpdateKubernetesNvidiaGpuProductExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesNvidiaGpuProduct @@ -29347,7 +29347,7 @@ func (a *KubernetesApiService) UpdateKubernetesSysConfigPolicyExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesSysConfigPolicy @@ -29523,7 +29523,7 @@ func (a *KubernetesApiService) UpdateKubernetesTrustedRegistriesPolicyExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesTrustedRegistriesPolicy @@ -29699,7 +29699,7 @@ func (a *KubernetesApiService) UpdateKubernetesVersionExecute(r ApiUpdateKuberne localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVersion @@ -29875,7 +29875,7 @@ func (a *KubernetesApiService) UpdateKubernetesVersionPolicyExecute(r ApiUpdateK localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVersionPolicy @@ -30051,7 +30051,7 @@ func (a *KubernetesApiService) UpdateKubernetesVirtualMachineInfraConfigPolicyEx localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVirtualMachineInfraConfigPolicy @@ -30227,7 +30227,7 @@ func (a *KubernetesApiService) UpdateKubernetesVirtualMachineInfrastructureProvi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVirtualMachineInfrastructureProvider @@ -30403,7 +30403,7 @@ func (a *KubernetesApiService) UpdateKubernetesVirtualMachineInstanceTypeExecute localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVirtualMachineInstanceType @@ -30579,7 +30579,7 @@ func (a *KubernetesApiService) UpdateKubernetesVirtualMachineNodeProfileExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVirtualMachineNodeProfile diff --git a/intersight_gosdk/api_kvm.go b/intersight_gosdk/api_kvm.go index 24c70c3026..eb34f2c16e 100644 --- a/intersight_gosdk/api_kvm.go +++ b/intersight_gosdk/api_kvm.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *KvmApiService) CreateKvmPolicyExecute(r ApiCreateKvmPolicyRequest) (*Kv localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kvmPolicy @@ -291,10 +291,10 @@ func (a *KvmApiService) CreateKvmSessionExecute(r ApiCreateKvmSessionRequest) (* localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kvmSession @@ -473,10 +473,10 @@ func (a *KvmApiService) CreateKvmTunnelExecute(r ApiCreateKvmTunnelRequest) (*Kv localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kvmTunnel @@ -655,10 +655,10 @@ func (a *KvmApiService) CreateKvmTunneledKvmPolicyExecute(r ApiCreateKvmTunneled localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kvmTunneledKvmPolicy @@ -1465,52 +1465,52 @@ func (a *KvmApiService) GetKvmPolicyInventoryListExecute(r ApiGetKvmPolicyInvent localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1740,52 +1740,52 @@ func (a *KvmApiService) GetKvmPolicyListExecute(r ApiGetKvmPolicyListRequest) (* localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2169,52 +2169,52 @@ func (a *KvmApiService) GetKvmSessionListExecute(r ApiGetKvmSessionListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2598,52 +2598,52 @@ func (a *KvmApiService) GetKvmTunnelListExecute(r ApiGetKvmTunnelListRequest) (* localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3027,52 +3027,52 @@ func (a *KvmApiService) GetKvmTunneledKvmPolicyListExecute(r ApiGetKvmTunneledKv localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3263,7 +3263,7 @@ func (a *KvmApiService) PatchKvmPolicyExecute(r ApiPatchKvmPolicyRequest) (*KvmP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kvmPolicy @@ -3439,7 +3439,7 @@ func (a *KvmApiService) PatchKvmSessionExecute(r ApiPatchKvmSessionRequest) (*Kv localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kvmSession @@ -3615,7 +3615,7 @@ func (a *KvmApiService) PatchKvmTunneledKvmPolicyExecute(r ApiPatchKvmTunneledKv localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kvmTunneledKvmPolicy @@ -3791,7 +3791,7 @@ func (a *KvmApiService) UpdateKvmPolicyExecute(r ApiUpdateKvmPolicyRequest) (*Kv localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kvmPolicy @@ -3967,7 +3967,7 @@ func (a *KvmApiService) UpdateKvmSessionExecute(r ApiUpdateKvmSessionRequest) (* localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kvmSession @@ -4143,7 +4143,7 @@ func (a *KvmApiService) UpdateKvmTunneledKvmPolicyExecute(r ApiUpdateKvmTunneled localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kvmTunneledKvmPolicy diff --git a/intersight_gosdk/api_license.go b/intersight_gosdk/api_license.go index 703017fd6c..4aa461fb99 100644 --- a/intersight_gosdk/api_license.go +++ b/intersight_gosdk/api_license.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *LicenseApiService) CreateLicenseIksLicenseCountExecute(r ApiCreateLicen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.licenseIksLicenseCount @@ -291,10 +291,10 @@ func (a *LicenseApiService) CreateLicenseIncLicenseCountExecute(r ApiCreateLicen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.licenseIncLicenseCount @@ -473,10 +473,10 @@ func (a *LicenseApiService) CreateLicenseIwoLicenseCountExecute(r ApiCreateLicen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.licenseIwoLicenseCount @@ -655,10 +655,10 @@ func (a *LicenseApiService) CreateLicenseLicenseInfoExecute(r ApiCreateLicenseLi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.licenseLicenseInfo @@ -837,10 +837,10 @@ func (a *LicenseApiService) CreateLicenseLicenseReservationOpExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.licenseLicenseReservationOp @@ -1209,52 +1209,52 @@ func (a *LicenseApiService) GetLicenseAccountLicenseDataListExecute(r ApiGetLice localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1638,52 +1638,52 @@ func (a *LicenseApiService) GetLicenseCustomerOpListExecute(r ApiGetLicenseCusto localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2067,52 +2067,52 @@ func (a *LicenseApiService) GetLicenseIksCustomerOpListExecute(r ApiGetLicenseIk localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2496,52 +2496,52 @@ func (a *LicenseApiService) GetLicenseIksLicenseCountListExecute(r ApiGetLicense localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2925,52 +2925,52 @@ func (a *LicenseApiService) GetLicenseIncCustomerOpListExecute(r ApiGetLicenseIn localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3354,52 +3354,52 @@ func (a *LicenseApiService) GetLicenseIncLicenseCountListExecute(r ApiGetLicense localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3783,52 +3783,52 @@ func (a *LicenseApiService) GetLicenseIwoCustomerOpListExecute(r ApiGetLicenseIw localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4212,52 +4212,52 @@ func (a *LicenseApiService) GetLicenseIwoLicenseCountListExecute(r ApiGetLicense localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4641,52 +4641,52 @@ func (a *LicenseApiService) GetLicenseLicenseInfoListExecute(r ApiGetLicenseLice localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5070,52 +5070,52 @@ func (a *LicenseApiService) GetLicenseLicenseInfoViewListExecute(r ApiGetLicense localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5499,52 +5499,52 @@ func (a *LicenseApiService) GetLicenseLicenseRegistrationStatusListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5928,52 +5928,52 @@ func (a *LicenseApiService) GetLicenseLicenseReservationOpListExecute(r ApiGetLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6357,52 +6357,52 @@ func (a *LicenseApiService) GetLicenseSmartlicenseTokenListExecute(r ApiGetLicen localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6593,7 +6593,7 @@ func (a *LicenseApiService) PatchLicenseAccountLicenseDataExecute(r ApiPatchLice localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseAccountLicenseData @@ -6769,7 +6769,7 @@ func (a *LicenseApiService) PatchLicenseCustomerOpExecute(r ApiPatchLicenseCusto localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseCustomerOp @@ -6945,7 +6945,7 @@ func (a *LicenseApiService) PatchLicenseIksCustomerOpExecute(r ApiPatchLicenseIk localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseIksCustomerOp @@ -7121,7 +7121,7 @@ func (a *LicenseApiService) PatchLicenseIksLicenseCountExecute(r ApiPatchLicense localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseIksLicenseCount @@ -7297,7 +7297,7 @@ func (a *LicenseApiService) PatchLicenseIncCustomerOpExecute(r ApiPatchLicenseIn localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseIncCustomerOp @@ -7473,7 +7473,7 @@ func (a *LicenseApiService) PatchLicenseIncLicenseCountExecute(r ApiPatchLicense localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseIncLicenseCount @@ -7649,7 +7649,7 @@ func (a *LicenseApiService) PatchLicenseIwoCustomerOpExecute(r ApiPatchLicenseIw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseIwoCustomerOp @@ -7825,7 +7825,7 @@ func (a *LicenseApiService) PatchLicenseIwoLicenseCountExecute(r ApiPatchLicense localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseIwoLicenseCount @@ -8001,7 +8001,7 @@ func (a *LicenseApiService) PatchLicenseLicenseInfoExecute(r ApiPatchLicenseLice localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseLicenseInfo @@ -8177,7 +8177,7 @@ func (a *LicenseApiService) PatchLicenseLicenseRegistrationStatusExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseLicenseRegistrationStatus @@ -8353,7 +8353,7 @@ func (a *LicenseApiService) PatchLicenseLicenseReservationOpExecute(r ApiPatchLi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseLicenseReservationOp @@ -8529,7 +8529,7 @@ func (a *LicenseApiService) PatchLicenseSmartlicenseTokenExecute(r ApiPatchLicen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseSmartlicenseToken @@ -8705,7 +8705,7 @@ func (a *LicenseApiService) UpdateLicenseAccountLicenseDataExecute(r ApiUpdateLi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseAccountLicenseData @@ -8881,7 +8881,7 @@ func (a *LicenseApiService) UpdateLicenseCustomerOpExecute(r ApiUpdateLicenseCus localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseCustomerOp @@ -9057,7 +9057,7 @@ func (a *LicenseApiService) UpdateLicenseIksCustomerOpExecute(r ApiUpdateLicense localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseIksCustomerOp @@ -9233,7 +9233,7 @@ func (a *LicenseApiService) UpdateLicenseIksLicenseCountExecute(r ApiUpdateLicen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseIksLicenseCount @@ -9409,7 +9409,7 @@ func (a *LicenseApiService) UpdateLicenseIncCustomerOpExecute(r ApiUpdateLicense localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseIncCustomerOp @@ -9585,7 +9585,7 @@ func (a *LicenseApiService) UpdateLicenseIncLicenseCountExecute(r ApiUpdateLicen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseIncLicenseCount @@ -9761,7 +9761,7 @@ func (a *LicenseApiService) UpdateLicenseIwoCustomerOpExecute(r ApiUpdateLicense localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseIwoCustomerOp @@ -9937,7 +9937,7 @@ func (a *LicenseApiService) UpdateLicenseIwoLicenseCountExecute(r ApiUpdateLicen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseIwoLicenseCount @@ -10113,7 +10113,7 @@ func (a *LicenseApiService) UpdateLicenseLicenseInfoExecute(r ApiUpdateLicenseLi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseLicenseInfo @@ -10289,7 +10289,7 @@ func (a *LicenseApiService) UpdateLicenseLicenseRegistrationStatusExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseLicenseRegistrationStatus @@ -10465,7 +10465,7 @@ func (a *LicenseApiService) UpdateLicenseLicenseReservationOpExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseLicenseReservationOp @@ -10641,7 +10641,7 @@ func (a *LicenseApiService) UpdateLicenseSmartlicenseTokenExecute(r ApiUpdateLic localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseSmartlicenseToken diff --git a/intersight_gosdk/api_ls.go b/intersight_gosdk/api_ls.go index 40ffec596d..45dc7ce90b 100644 --- a/intersight_gosdk/api_ls.go +++ b/intersight_gosdk/api_ls.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *LsApiService) GetLsServiceProfileListExecute(r ApiGetLsServiceProfileLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -535,7 +535,7 @@ func (a *LsApiService) PatchLsServiceProfileExecute(r ApiPatchLsServiceProfileRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.lsServiceProfile @@ -711,7 +711,7 @@ func (a *LsApiService) UpdateLsServiceProfileExecute(r ApiUpdateLsServiceProfile localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.lsServiceProfile diff --git a/intersight_gosdk/api_macpool.go b/intersight_gosdk/api_macpool.go index 5a2b980fff..3c156d1ca3 100644 --- a/intersight_gosdk/api_macpool.go +++ b/intersight_gosdk/api_macpool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *MacpoolApiService) CreateMacpoolPoolExecute(r ApiCreateMacpoolPoolReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.macpoolPool @@ -291,10 +291,10 @@ func (a *MacpoolApiService) CreateMacpoolReservationExecute(r ApiCreateMacpoolRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.macpoolReservation @@ -1089,52 +1089,52 @@ func (a *MacpoolApiService) GetMacpoolIdBlockListExecute(r ApiGetMacpoolIdBlockL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1518,52 +1518,52 @@ func (a *MacpoolApiService) GetMacpoolLeaseListExecute(r ApiGetMacpoolLeaseListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1947,52 +1947,52 @@ func (a *MacpoolApiService) GetMacpoolPoolListExecute(r ApiGetMacpoolPoolListReq localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2376,52 +2376,52 @@ func (a *MacpoolApiService) GetMacpoolPoolMemberListExecute(r ApiGetMacpoolPoolM localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2805,52 +2805,52 @@ func (a *MacpoolApiService) GetMacpoolReservationListExecute(r ApiGetMacpoolRese localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3234,52 +3234,52 @@ func (a *MacpoolApiService) GetMacpoolUniverseListExecute(r ApiGetMacpoolUnivers localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3470,7 +3470,7 @@ func (a *MacpoolApiService) PatchMacpoolPoolExecute(r ApiPatchMacpoolPoolRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.macpoolPool @@ -3646,7 +3646,7 @@ func (a *MacpoolApiService) UpdateMacpoolPoolExecute(r ApiUpdateMacpoolPoolReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.macpoolPool diff --git a/intersight_gosdk/api_management.go b/intersight_gosdk/api_management.go index 0d68518d92..1b6d14f7ca 100644 --- a/intersight_gosdk/api_management.go +++ b/intersight_gosdk/api_management.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *ManagementApiService) GetManagementControllerListExecute(r ApiGetManage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *ManagementApiService) GetManagementEntityListExecute(r ApiGetManagement localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *ManagementApiService) GetManagementInterfaceListExecute(r ApiGetManagem localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1393,7 +1393,7 @@ func (a *ManagementApiService) PatchManagementControllerExecute(r ApiPatchManage localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.managementController @@ -1569,7 +1569,7 @@ func (a *ManagementApiService) PatchManagementEntityExecute(r ApiPatchManagement localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.managementEntity @@ -1745,7 +1745,7 @@ func (a *ManagementApiService) PatchManagementInterfaceExecute(r ApiPatchManagem localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.managementInterface @@ -1921,7 +1921,7 @@ func (a *ManagementApiService) UpdateManagementControllerExecute(r ApiUpdateMana localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.managementController @@ -2097,7 +2097,7 @@ func (a *ManagementApiService) UpdateManagementEntityExecute(r ApiUpdateManageme localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.managementEntity @@ -2273,7 +2273,7 @@ func (a *ManagementApiService) UpdateManagementInterfaceExecute(r ApiUpdateManag localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.managementInterface diff --git a/intersight_gosdk/api_marketplace.go b/intersight_gosdk/api_marketplace.go index 05dc38947d..25a30bc53e 100644 --- a/intersight_gosdk/api_marketplace.go +++ b/intersight_gosdk/api_marketplace.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *MarketplaceApiService) CreateMarketplaceUseCaseExecute(r ApiCreateMarke localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.marketplaceUseCase @@ -291,10 +291,10 @@ func (a *MarketplaceApiService) CreateMarketplaceUseCaseVersionExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.marketplaceUseCaseVersion @@ -947,52 +947,52 @@ func (a *MarketplaceApiService) GetMarketplaceUseCaseListExecute(r ApiGetMarketp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1376,52 +1376,52 @@ func (a *MarketplaceApiService) GetMarketplaceUseCaseVersionListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1612,7 +1612,7 @@ func (a *MarketplaceApiService) PatchMarketplaceUseCaseExecute(r ApiPatchMarketp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.marketplaceUseCase @@ -1788,7 +1788,7 @@ func (a *MarketplaceApiService) PatchMarketplaceUseCaseVersionExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.marketplaceUseCaseVersion @@ -1964,7 +1964,7 @@ func (a *MarketplaceApiService) UpdateMarketplaceUseCaseExecute(r ApiUpdateMarke localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.marketplaceUseCase @@ -2140,7 +2140,7 @@ func (a *MarketplaceApiService) UpdateMarketplaceUseCaseVersionExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.marketplaceUseCaseVersion diff --git a/intersight_gosdk/api_memory.go b/intersight_gosdk/api_memory.go index 9b3a8b82eb..6e36fc4e1a 100644 --- a/intersight_gosdk/api_memory.go +++ b/intersight_gosdk/api_memory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *MemoryApiService) CreateMemoryPersistentMemoryPolicyExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryPolicy @@ -623,52 +623,52 @@ func (a *MemoryApiService) GetMemoryArrayListExecute(r ApiGetMemoryArrayListRequ localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *MemoryApiService) GetMemoryPersistentMemoryConfigResultListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1481,52 +1481,52 @@ func (a *MemoryApiService) GetMemoryPersistentMemoryConfigurationListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2064,52 +2064,52 @@ func (a *MemoryApiService) GetMemoryPersistentMemoryNamespaceConfigResultListExe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2339,52 +2339,52 @@ func (a *MemoryApiService) GetMemoryPersistentMemoryNamespaceListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2768,52 +2768,52 @@ func (a *MemoryApiService) GetMemoryPersistentMemoryPolicyListExecute(r ApiGetMe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3197,52 +3197,52 @@ func (a *MemoryApiService) GetMemoryPersistentMemoryRegionListExecute(r ApiGetMe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3626,52 +3626,52 @@ func (a *MemoryApiService) GetMemoryPersistentMemoryUnitListExecute(r ApiGetMemo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4055,52 +4055,52 @@ func (a *MemoryApiService) GetMemoryUnitListExecute(r ApiGetMemoryUnitListReques localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4291,7 +4291,7 @@ func (a *MemoryApiService) PatchMemoryArrayExecute(r ApiPatchMemoryArrayRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryArray @@ -4467,7 +4467,7 @@ func (a *MemoryApiService) PatchMemoryPersistentMemoryConfigResultExecute(r ApiP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryConfigResult @@ -4643,7 +4643,7 @@ func (a *MemoryApiService) PatchMemoryPersistentMemoryConfigurationExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryConfiguration @@ -4819,7 +4819,7 @@ func (a *MemoryApiService) PatchMemoryPersistentMemoryNamespaceExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryNamespace @@ -4995,7 +4995,7 @@ func (a *MemoryApiService) PatchMemoryPersistentMemoryNamespaceConfigResultExecu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryNamespaceConfigResult @@ -5171,7 +5171,7 @@ func (a *MemoryApiService) PatchMemoryPersistentMemoryPolicyExecute(r ApiPatchMe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryPolicy @@ -5347,7 +5347,7 @@ func (a *MemoryApiService) PatchMemoryPersistentMemoryRegionExecute(r ApiPatchMe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryRegion @@ -5523,7 +5523,7 @@ func (a *MemoryApiService) PatchMemoryPersistentMemoryUnitExecute(r ApiPatchMemo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryUnit @@ -5699,7 +5699,7 @@ func (a *MemoryApiService) PatchMemoryUnitExecute(r ApiPatchMemoryUnitRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryUnit @@ -5875,7 +5875,7 @@ func (a *MemoryApiService) UpdateMemoryArrayExecute(r ApiUpdateMemoryArrayReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryArray @@ -6051,7 +6051,7 @@ func (a *MemoryApiService) UpdateMemoryPersistentMemoryConfigResultExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryConfigResult @@ -6227,7 +6227,7 @@ func (a *MemoryApiService) UpdateMemoryPersistentMemoryConfigurationExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryConfiguration @@ -6403,7 +6403,7 @@ func (a *MemoryApiService) UpdateMemoryPersistentMemoryNamespaceExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryNamespace @@ -6579,7 +6579,7 @@ func (a *MemoryApiService) UpdateMemoryPersistentMemoryNamespaceConfigResultExec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryNamespaceConfigResult @@ -6755,7 +6755,7 @@ func (a *MemoryApiService) UpdateMemoryPersistentMemoryPolicyExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryPolicy @@ -6931,7 +6931,7 @@ func (a *MemoryApiService) UpdateMemoryPersistentMemoryRegionExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryRegion @@ -7107,7 +7107,7 @@ func (a *MemoryApiService) UpdateMemoryPersistentMemoryUnitExecute(r ApiUpdateMe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryUnit @@ -7283,7 +7283,7 @@ func (a *MemoryApiService) UpdateMemoryUnitExecute(r ApiUpdateMemoryUnitRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryUnit diff --git a/intersight_gosdk/api_meraki.go b/intersight_gosdk/api_meraki.go index 7682e6a067..e9e221faa1 100644 --- a/intersight_gosdk/api_meraki.go +++ b/intersight_gosdk/api_meraki.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *MerakiApiService) GetMerakiDeviceListExecute(r ApiGetMerakiDeviceListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *MerakiApiService) GetMerakiNetworkListExecute(r ApiGetMerakiNetworkList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *MerakiApiService) GetMerakiOrganizationListExecute(r ApiGetMerakiOrgani localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1586,52 +1586,52 @@ func (a *MerakiApiService) GetMerakiPortProfileListExecute(r ApiGetMerakiPortPro localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2015,52 +2015,52 @@ func (a *MerakiApiService) GetMerakiTagListExecute(r ApiGetMerakiTagListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/intersight_gosdk/api_meta.go b/intersight_gosdk/api_meta.go index 05c8d72ee2..153ba9c15f 100644 --- a/intersight_gosdk/api_meta.go +++ b/intersight_gosdk/api_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -441,52 +441,52 @@ func (a *MetaApiService) GetMetaDefinitionListExecute(r ApiGetMetaDefinitionList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/intersight_gosdk/api_metrics.go b/intersight_gosdk/api_metrics.go index 21377f38c2..e97e41ce0b 100644 --- a/intersight_gosdk/api_metrics.go +++ b/intersight_gosdk/api_metrics.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *MetricsApiService) CreateMetricsMetricsExplorationExecute(r ApiCreateMe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.metricsMetricsExploration @@ -623,52 +623,52 @@ func (a *MetricsApiService) GetMetricsMetricsExplorationListExecute(r ApiGetMetr localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -859,7 +859,7 @@ func (a *MetricsApiService) PatchMetricsMetricsExplorationExecute(r ApiPatchMetr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.metricsMetricsExploration @@ -1035,7 +1035,7 @@ func (a *MetricsApiService) UpdateMetricsMetricsExplorationExecute(r ApiUpdateMe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.metricsMetricsExploration diff --git a/intersight_gosdk/api_monitoring.go b/intersight_gosdk/api_monitoring.go index 978e1b4b5a..9676f768cc 100644 --- a/intersight_gosdk/api_monitoring.go +++ b/intersight_gosdk/api_monitoring.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *MonitoringApiService) GetMonitoringHealthStatusListExecute(r ApiGetMoni localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/intersight_gosdk/api_network.go b/intersight_gosdk/api_network.go index d288ae4a40..60a634729f 100644 --- a/intersight_gosdk/api_network.go +++ b/intersight_gosdk/api_network.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *NetworkApiService) GetNetworkDiscoveredNeighborListExecute(r ApiGetNetw localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *NetworkApiService) GetNetworkDnsListExecute(r ApiGetNetworkDnsListReque localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *NetworkApiService) GetNetworkElementListExecute(r ApiGetNetworkElementL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1586,52 +1586,52 @@ func (a *NetworkApiService) GetNetworkElementSummaryListExecute(r ApiGetNetworkE localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2015,52 +2015,52 @@ func (a *NetworkApiService) GetNetworkFcZoneInfoListExecute(r ApiGetNetworkFcZon localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2444,52 +2444,52 @@ func (a *NetworkApiService) GetNetworkFeatureControlListExecute(r ApiGetNetworkF localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2873,52 +2873,52 @@ func (a *NetworkApiService) GetNetworkInterfaceListListExecute(r ApiGetNetworkIn localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3302,52 +3302,52 @@ func (a *NetworkApiService) GetNetworkLicenseFileListExecute(r ApiGetNetworkLice localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3731,52 +3731,52 @@ func (a *NetworkApiService) GetNetworkSupervisorCardListExecute(r ApiGetNetworkS localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4160,52 +4160,52 @@ func (a *NetworkApiService) GetNetworkTelemetryCheckListExecute(r ApiGetNetworkT localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4589,52 +4589,52 @@ func (a *NetworkApiService) GetNetworkVethernetListExecute(r ApiGetNetworkVether localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5018,52 +5018,52 @@ func (a *NetworkApiService) GetNetworkVfcListExecute(r ApiGetNetworkVfcListReque localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5447,52 +5447,52 @@ func (a *NetworkApiService) GetNetworkVlanPortInfoListExecute(r ApiGetNetworkVla localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5876,52 +5876,52 @@ func (a *NetworkApiService) GetNetworkVpcDomainListExecute(r ApiGetNetworkVpcDom localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6305,52 +6305,52 @@ func (a *NetworkApiService) GetNetworkVpcMemberListExecute(r ApiGetNetworkVpcMem localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6734,52 +6734,52 @@ func (a *NetworkApiService) GetNetworkVpcPeerListExecute(r ApiGetNetworkVpcPeerL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7163,52 +7163,52 @@ func (a *NetworkApiService) GetNetworkVrfListExecute(r ApiGetNetworkVrfListReque localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7399,7 +7399,7 @@ func (a *NetworkApiService) PatchNetworkElementExecute(r ApiPatchNetworkElementR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.networkElement @@ -7575,7 +7575,7 @@ func (a *NetworkApiService) PatchNetworkFcZoneInfoExecute(r ApiPatchNetworkFcZon localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.networkFcZoneInfo @@ -7751,7 +7751,7 @@ func (a *NetworkApiService) PatchNetworkVethernetExecute(r ApiPatchNetworkVether localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.networkVethernet @@ -7927,7 +7927,7 @@ func (a *NetworkApiService) PatchNetworkVfcExecute(r ApiPatchNetworkVfcRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.networkVfc @@ -8103,7 +8103,7 @@ func (a *NetworkApiService) PatchNetworkVlanPortInfoExecute(r ApiPatchNetworkVla localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.networkVlanPortInfo @@ -8279,7 +8279,7 @@ func (a *NetworkApiService) UpdateNetworkElementExecute(r ApiUpdateNetworkElemen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.networkElement @@ -8455,7 +8455,7 @@ func (a *NetworkApiService) UpdateNetworkFcZoneInfoExecute(r ApiUpdateNetworkFcZ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.networkFcZoneInfo @@ -8631,7 +8631,7 @@ func (a *NetworkApiService) UpdateNetworkVethernetExecute(r ApiUpdateNetworkVeth localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.networkVethernet @@ -8807,7 +8807,7 @@ func (a *NetworkApiService) UpdateNetworkVfcExecute(r ApiUpdateNetworkVfcRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.networkVfc @@ -8983,7 +8983,7 @@ func (a *NetworkApiService) UpdateNetworkVlanPortInfoExecute(r ApiUpdateNetworkV localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.networkVlanPortInfo diff --git a/intersight_gosdk/api_networkconfig.go b/intersight_gosdk/api_networkconfig.go index 4770f7e418..b2e56fbc02 100644 --- a/intersight_gosdk/api_networkconfig.go +++ b/intersight_gosdk/api_networkconfig.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *NetworkconfigApiService) CreateNetworkconfigPolicyExecute(r ApiCreateNe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.networkconfigPolicy @@ -777,52 +777,52 @@ func (a *NetworkconfigApiService) GetNetworkconfigPolicyInventoryListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *NetworkconfigApiService) GetNetworkconfigPolicyListExecute(r ApiGetNetw localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1288,7 +1288,7 @@ func (a *NetworkconfigApiService) PatchNetworkconfigPolicyExecute(r ApiPatchNetw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.networkconfigPolicy @@ -1464,7 +1464,7 @@ func (a *NetworkconfigApiService) UpdateNetworkconfigPolicyExecute(r ApiUpdateNe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.networkconfigPolicy diff --git a/intersight_gosdk/api_niaapi.go b/intersight_gosdk/api_niaapi.go index bc328ac393..9ac708001c 100644 --- a/intersight_gosdk/api_niaapi.go +++ b/intersight_gosdk/api_niaapi.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *NiaapiApiService) GetNiaapiApicCcoPostListExecute(r ApiGetNiaapiApicCco localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *NiaapiApiService) GetNiaapiApicFieldNoticeListExecute(r ApiGetNiaapiApi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *NiaapiApiService) GetNiaapiApicHweolListExecute(r ApiGetNiaapiApicHweol localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1586,52 +1586,52 @@ func (a *NiaapiApiService) GetNiaapiApicLatestMaintainedReleaseListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2015,52 +2015,52 @@ func (a *NiaapiApiService) GetNiaapiApicReleaseRecommendListExecute(r ApiGetNiaa localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2444,52 +2444,52 @@ func (a *NiaapiApiService) GetNiaapiApicSweolListExecute(r ApiGetNiaapiApicSweol localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2873,52 +2873,52 @@ func (a *NiaapiApiService) GetNiaapiDcnmCcoPostListExecute(r ApiGetNiaapiDcnmCco localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3302,52 +3302,52 @@ func (a *NiaapiApiService) GetNiaapiDcnmFieldNoticeListExecute(r ApiGetNiaapiDcn localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3731,52 +3731,52 @@ func (a *NiaapiApiService) GetNiaapiDcnmHweolListExecute(r ApiGetNiaapiDcnmHweol localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4160,52 +4160,52 @@ func (a *NiaapiApiService) GetNiaapiDcnmLatestMaintainedReleaseListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4589,52 +4589,52 @@ func (a *NiaapiApiService) GetNiaapiDcnmReleaseRecommendListExecute(r ApiGetNiaa localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5018,52 +5018,52 @@ func (a *NiaapiApiService) GetNiaapiDcnmSweolListExecute(r ApiGetNiaapiDcnmSweol localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5447,52 +5447,52 @@ func (a *NiaapiApiService) GetNiaapiFileDownloaderListExecute(r ApiGetNiaapiFile localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5876,52 +5876,52 @@ func (a *NiaapiApiService) GetNiaapiNiaMetadataListExecute(r ApiGetNiaapiNiaMeta localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6305,52 +6305,52 @@ func (a *NiaapiApiService) GetNiaapiNibFileDownloaderListExecute(r ApiGetNiaapiN localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6734,52 +6734,52 @@ func (a *NiaapiApiService) GetNiaapiNibMetadataListExecute(r ApiGetNiaapiNibMeta localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7163,52 +7163,52 @@ func (a *NiaapiApiService) GetNiaapiPuvScriptDownloaderListExecute(r ApiGetNiaap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7592,52 +7592,52 @@ func (a *NiaapiApiService) GetNiaapiSnValidatorMetadataListExecute(r ApiGetNiaap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8021,52 +8021,52 @@ func (a *NiaapiApiService) GetNiaapiUpgradeAssistFileListExecute(r ApiGetNiaapiU localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8450,52 +8450,52 @@ func (a *NiaapiApiService) GetNiaapiVersionRegexListExecute(r ApiGetNiaapiVersio localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/intersight_gosdk/api_niatelemetry.go b/intersight_gosdk/api_niatelemetry.go index c7dd89d5f5..d9588f2f12 100644 --- a/intersight_gosdk/api_niatelemetry.go +++ b/intersight_gosdk/api_niatelemetry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *NiatelemetryApiService) CreateNiatelemetryNexusCloudAccountExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.niatelemetryNexusCloudAccount @@ -291,10 +291,10 @@ func (a *NiatelemetryApiService) CreateNiatelemetryNexusCloudSiteExecute(r ApiCr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.niatelemetryNexusCloudSite @@ -805,52 +805,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryAaaLdapProviderDetailsListExecut localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1234,52 +1234,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryAaaRadiusProviderDetailsListExec localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1663,52 +1663,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryAaaTacacsProviderDetailsListExec localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2092,52 +2092,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicAppPluginDetailsListExecute( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2521,52 +2521,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicCoreFileDetailsListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2950,52 +2950,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicDbgexpRsExportDestListExecut localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3379,52 +3379,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicDbgexpRsTsSchedulerListExecu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3808,52 +3808,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicFanDetailsListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4237,52 +4237,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicFexDetailsListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4666,52 +4666,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicFlashDetailsListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5095,52 +5095,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicNtpAuthListExecute(r ApiGetN localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5524,52 +5524,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicPerformanceDataListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5953,52 +5953,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicPodDataListExecute(r ApiGetN localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6382,52 +6382,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicPsuDetailsListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6811,52 +6811,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicRealmDetailsListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7240,52 +7240,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicSnmpClientGrpDetailsListExec localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7669,52 +7669,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicSnmpCommunityAccessDetailsLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8098,52 +8098,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicSnmpCommunityDetailsListExec localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8527,52 +8527,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicSnmpTrapDetailsListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8956,52 +8956,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicSnmpTrapFwdServerDetailsList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9385,52 +9385,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicSnmpVersionThreeDetailsListE localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9814,52 +9814,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicSysLogGrpListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10243,52 +10243,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicSysLogSrcListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10672,52 +10672,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicTransceiverDetailsListExecut localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11101,52 +11101,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicUiPageCountsListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11530,52 +11530,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicVisionListExecute(r ApiGetNi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11959,52 +11959,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryAppDetailsListExecute(r ApiGetNi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12388,52 +12388,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryCloudDetailsListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12817,52 +12817,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryCommonPoliciesListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13246,52 +13246,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryDcnmFanDetailsListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13675,52 +13675,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryDcnmFexDetailsListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14104,52 +14104,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryDcnmModuleDetailsListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14533,52 +14533,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryDcnmPsuDetailsListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14962,52 +14962,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryDcnmTransceiverDetailsListExecut localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15391,52 +15391,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryEpgListExecute(r ApiGetNiateleme localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15820,52 +15820,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryFabricModuleDetailsListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16249,52 +16249,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryFabricNodeControlDetailsListExec localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16678,52 +16678,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryFabricPodProfileListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17107,52 +17107,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryFabricPodSsListExecute(r ApiGetN localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17536,52 +17536,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryFaultListExecute(r ApiGetNiatele localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17965,52 +17965,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryHcloudDetailsListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18394,52 +18394,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryHealthInsightsDataListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18823,52 +18823,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryHttpsAclContractDetailsListExecu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19252,52 +19252,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryHttpsAclContractFilterMapListExe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19681,52 +19681,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryHttpsAclEpgContractMapListExecut localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20110,52 +20110,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryHttpsAclEpgDetailsListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20539,52 +20539,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryHttpsAclFilterDetailsListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20968,52 +20968,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryInsightGroupDetailsListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21397,52 +21397,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryLcListExecute(r ApiGetNiatelemet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21826,52 +21826,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryLeafPolGrpDetailsListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22255,52 +22255,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryMdsNeighborsListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22684,52 +22684,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryMsoContractDetailsListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23113,52 +23113,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryMsoEpgDetailsListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23542,52 +23542,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryMsoSchemaDetailsListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23971,52 +23971,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryMsoSiteDetailsListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24400,52 +24400,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryMsoTenantDetailsListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24829,52 +24829,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryNexusCloudAccountListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25258,52 +25258,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryNexusCloudSiteListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25687,52 +25687,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryNexusDashboardControllerDetailsL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26116,52 +26116,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryNexusDashboardDetailsListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26545,52 +26545,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryNexusDashboardMemoryDetailsListE localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26974,52 +26974,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryNexusDashboardsListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27403,52 +27403,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryNiaFeatureUsageListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27986,52 +27986,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryNiaInventoryDcnmListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28415,52 +28415,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryNiaInventoryFabricListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28690,52 +28690,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryNiaInventoryListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29119,52 +29119,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryNiaLicenseStateListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29548,52 +29548,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryNiccListExecute(r ApiGetNiatelem localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29977,52 +29977,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryPasswordStrengthCheckListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -30406,52 +30406,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryPodCommPoliciesListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -30835,52 +30835,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryPodSnmpPoliciesListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -31264,52 +31264,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryPodTimeServerPoliciesListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -31693,52 +31693,52 @@ func (a *NiatelemetryApiService) GetNiatelemetrySiteInventoryListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -32122,52 +32122,52 @@ func (a *NiatelemetryApiService) GetNiatelemetrySnmpSrcListExecute(r ApiGetNiate localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -32551,52 +32551,52 @@ func (a *NiatelemetryApiService) GetNiatelemetrySpinePolGrpDetailsListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -32980,52 +32980,52 @@ func (a *NiatelemetryApiService) GetNiatelemetrySshVersionTwoListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -33409,52 +33409,52 @@ func (a *NiatelemetryApiService) GetNiatelemetrySupervisorModuleDetailsListExecu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -33838,52 +33838,52 @@ func (a *NiatelemetryApiService) GetNiatelemetrySyslogRemoteDestListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -34421,52 +34421,52 @@ func (a *NiatelemetryApiService) GetNiatelemetrySyslogSysMsgFacFilterListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -34696,52 +34696,52 @@ func (a *NiatelemetryApiService) GetNiatelemetrySyslogSysMsgListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -35125,52 +35125,52 @@ func (a *NiatelemetryApiService) GetNiatelemetrySystemControllerDetailsListExecu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -35554,52 +35554,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryTenantListExecute(r ApiGetNiatel localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -35790,7 +35790,7 @@ func (a *NiatelemetryApiService) PatchNiatelemetryNexusCloudAccountExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.niatelemetryNexusCloudAccount @@ -35966,7 +35966,7 @@ func (a *NiatelemetryApiService) PatchNiatelemetryNexusCloudSiteExecute(r ApiPat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.niatelemetryNexusCloudSite @@ -36142,7 +36142,7 @@ func (a *NiatelemetryApiService) PatchNiatelemetryNiaInventoryExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.niatelemetryNiaInventory @@ -36318,7 +36318,7 @@ func (a *NiatelemetryApiService) UpdateNiatelemetryNexusCloudAccountExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.niatelemetryNexusCloudAccount @@ -36494,7 +36494,7 @@ func (a *NiatelemetryApiService) UpdateNiatelemetryNexusCloudSiteExecute(r ApiUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.niatelemetryNexusCloudSite @@ -36670,7 +36670,7 @@ func (a *NiatelemetryApiService) UpdateNiatelemetryNiaInventoryExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.niatelemetryNiaInventory diff --git a/intersight_gosdk/api_notification.go b/intersight_gosdk/api_notification.go index e7a5e1b464..6d36e61061 100644 --- a/intersight_gosdk/api_notification.go +++ b/intersight_gosdk/api_notification.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *NotificationApiService) CreateNotificationAccountSubscriptionExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.notificationAccountSubscription @@ -623,52 +623,52 @@ func (a *NotificationApiService) GetNotificationAccountSubscriptionListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -859,7 +859,7 @@ func (a *NotificationApiService) PatchNotificationAccountSubscriptionExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.notificationAccountSubscription @@ -1035,7 +1035,7 @@ func (a *NotificationApiService) UpdateNotificationAccountSubscriptionExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.notificationAccountSubscription diff --git a/intersight_gosdk/api_ntp.go b/intersight_gosdk/api_ntp.go index be9da09d07..9d8004568f 100644 --- a/intersight_gosdk/api_ntp.go +++ b/intersight_gosdk/api_ntp.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *NtpApiService) CreateNtpPolicyExecute(r ApiCreateNtpPolicyRequest) (*Nt localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.ntpPolicy @@ -623,52 +623,52 @@ func (a *NtpApiService) GetNtpNtpServerListExecute(r ApiGetNtpNtpServerListReque localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *NtpApiService) GetNtpPolicyListExecute(r ApiGetNtpPolicyListRequest) (* localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1288,7 +1288,7 @@ func (a *NtpApiService) PatchNtpPolicyExecute(r ApiPatchNtpPolicyRequest) (*NtpP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.ntpPolicy @@ -1464,7 +1464,7 @@ func (a *NtpApiService) UpdateNtpPolicyExecute(r ApiUpdateNtpPolicyRequest) (*Nt localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.ntpPolicy diff --git a/intersight_gosdk/api_oauth.go b/intersight_gosdk/api_oauth.go index 95b0c0b4fd..4ff626ffc8 100644 --- a/intersight_gosdk/api_oauth.go +++ b/intersight_gosdk/api_oauth.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *OauthApiService) CreateOauthAuthorizationExecute(r ApiCreateOauthAuthor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.oauthAuthorization @@ -623,52 +623,52 @@ func (a *OauthApiService) GetOauthAccessTokenListExecute(r ApiGetOauthAccessToke localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *OauthApiService) GetOauthAuthorizationListExecute(r ApiGetOauthAuthoriz localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1288,7 +1288,7 @@ func (a *OauthApiService) PatchOauthAuthorizationExecute(r ApiPatchOauthAuthoriz localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.oauthAuthorization @@ -1464,7 +1464,7 @@ func (a *OauthApiService) UpdateOauthAuthorizationExecute(r ApiUpdateOauthAuthor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.oauthAuthorization diff --git a/intersight_gosdk/api_openapi.go b/intersight_gosdk/api_openapi.go index b6cafe6ee6..811d8e8039 100644 --- a/intersight_gosdk/api_openapi.go +++ b/intersight_gosdk/api_openapi.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *OpenapiApiService) CreateOpenapiOpenApiSpecificationExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.openapiOpenApiSpecification @@ -291,10 +291,10 @@ func (a *OpenapiApiService) CreateOpenapiProcessFileExecute(r ApiCreateOpenapiPr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.openapiProcessFile @@ -473,10 +473,10 @@ func (a *OpenapiApiService) CreateOpenapiTaskGenerationRequestExecute(r ApiCreat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.openapiTaskGenerationRequest @@ -1555,52 +1555,52 @@ func (a *OpenapiApiService) GetOpenapiApiMethodMetaListExecute(r ApiGetOpenapiAp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1984,52 +1984,52 @@ func (a *OpenapiApiService) GetOpenapiOpenApiSpecificationListExecute(r ApiGetOp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2413,52 +2413,52 @@ func (a *OpenapiApiService) GetOpenapiProcessFileListExecute(r ApiGetOpenapiProc localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2842,52 +2842,52 @@ func (a *OpenapiApiService) GetOpenapiTaskGenerationRequestListExecute(r ApiGetO localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3271,52 +3271,52 @@ func (a *OpenapiApiService) GetOpenapiTaskGenerationResultListExecute(r ApiGetOp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3507,7 +3507,7 @@ func (a *OpenapiApiService) PatchOpenapiOpenApiSpecificationExecute(r ApiPatchOp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.openapiOpenApiSpecification @@ -3683,7 +3683,7 @@ func (a *OpenapiApiService) PatchOpenapiTaskGenerationRequestExecute(r ApiPatchO localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.openapiTaskGenerationRequest @@ -3859,7 +3859,7 @@ func (a *OpenapiApiService) UpdateOpenapiOpenApiSpecificationExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.openapiOpenApiSpecification @@ -4035,7 +4035,7 @@ func (a *OpenapiApiService) UpdateOpenapiTaskGenerationRequestExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.openapiTaskGenerationRequest diff --git a/intersight_gosdk/api_oprs.go b/intersight_gosdk/api_oprs.go index 0e3ac6cf11..77fba42bed 100644 --- a/intersight_gosdk/api_oprs.go +++ b/intersight_gosdk/api_oprs.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *OprsApiService) CreateOprsDeploymentExecute(r ApiCreateOprsDeploymentRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.oprsDeployment @@ -291,10 +291,10 @@ func (a *OprsApiService) CreateOprsSyncTargetListMessageExecute(r ApiCreateOprsS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.oprsSyncTargetListMessage @@ -947,52 +947,52 @@ func (a *OprsApiService) GetOprsDeploymentListExecute(r ApiGetOprsDeploymentList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1376,52 +1376,52 @@ func (a *OprsApiService) GetOprsSyncTargetListMessageListExecute(r ApiGetOprsSyn localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1612,7 +1612,7 @@ func (a *OprsApiService) PatchOprsDeploymentExecute(r ApiPatchOprsDeploymentRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.oprsDeployment @@ -1788,7 +1788,7 @@ func (a *OprsApiService) PatchOprsSyncTargetListMessageExecute(r ApiPatchOprsSyn localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.oprsSyncTargetListMessage @@ -1964,7 +1964,7 @@ func (a *OprsApiService) UpdateOprsDeploymentExecute(r ApiUpdateOprsDeploymentRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.oprsDeployment @@ -2140,7 +2140,7 @@ func (a *OprsApiService) UpdateOprsSyncTargetListMessageExecute(r ApiUpdateOprsS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.oprsSyncTargetListMessage diff --git a/intersight_gosdk/api_organization.go b/intersight_gosdk/api_organization.go index 753a11eac8..cd87010782 100644 --- a/intersight_gosdk/api_organization.go +++ b/intersight_gosdk/api_organization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *OrganizationApiService) CreateOrganizationOrganizationExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.organizationOrganization @@ -623,52 +623,52 @@ func (a *OrganizationApiService) GetOrganizationOrganizationListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -859,7 +859,7 @@ func (a *OrganizationApiService) PatchOrganizationOrganizationExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.organizationOrganization @@ -1035,7 +1035,7 @@ func (a *OrganizationApiService) UpdateOrganizationOrganizationExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.organizationOrganization diff --git a/intersight_gosdk/api_os.go b/intersight_gosdk/api_os.go index 4ccdbb19fa..4508a88022 100644 --- a/intersight_gosdk/api_os.go +++ b/intersight_gosdk/api_os.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *OsApiService) CreateOsBulkInstallInfoExecute(r ApiCreateOsBulkInstallIn localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.osBulkInstallInfo @@ -291,10 +291,10 @@ func (a *OsApiService) CreateOsConfigurationFileExecute(r ApiCreateOsConfigurati localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.osConfigurationFile @@ -473,10 +473,10 @@ func (a *OsApiService) CreateOsInstallExecute(r ApiCreateOsInstallRequest) (*OsI localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.osInstall @@ -655,10 +655,10 @@ func (a *OsApiService) CreateOsOsSupportExecute(r ApiCreateOsOsSupportRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.osOsSupport @@ -837,10 +837,10 @@ func (a *OsApiService) CreateOsTemplateFileExecute(r ApiCreateOsTemplateFileRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.osTemplateFile @@ -1019,10 +1019,10 @@ func (a *OsApiService) CreateOsValidInstallTargetExecute(r ApiCreateOsValidInsta localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.osValidInstallTarget @@ -1533,52 +1533,52 @@ func (a *OsApiService) GetOsBulkInstallInfoListExecute(r ApiGetOsBulkInstallInfo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1962,52 +1962,52 @@ func (a *OsApiService) GetOsCatalogListExecute(r ApiGetOsCatalogListRequest) (*O localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2391,52 +2391,52 @@ func (a *OsApiService) GetOsConfigurationFileListExecute(r ApiGetOsConfiguration localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2820,52 +2820,52 @@ func (a *OsApiService) GetOsDistributionListExecute(r ApiGetOsDistributionListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3249,52 +3249,52 @@ func (a *OsApiService) GetOsInstallListExecute(r ApiGetOsInstallListRequest) (*O localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3678,52 +3678,52 @@ func (a *OsApiService) GetOsSupportedVersionListExecute(r ApiGetOsSupportedVersi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3914,7 +3914,7 @@ func (a *OsApiService) PatchOsConfigurationFileExecute(r ApiPatchOsConfiguration localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.osConfigurationFile @@ -4090,7 +4090,7 @@ func (a *OsApiService) UpdateOsConfigurationFileExecute(r ApiUpdateOsConfigurati localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.osConfigurationFile diff --git a/intersight_gosdk/api_partnerintegration.go b/intersight_gosdk/api_partnerintegration.go index aaeba88b4c..39d2b057c3 100644 --- a/intersight_gosdk/api_partnerintegration.go +++ b/intersight_gosdk/api_partnerintegration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *PartnerintegrationApiService) CreatePartnerintegrationDeviceConnectorEx localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationDeviceConnector @@ -291,10 +291,10 @@ func (a *PartnerintegrationApiService) CreatePartnerintegrationEtlExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationEtl @@ -473,10 +473,10 @@ func (a *PartnerintegrationApiService) CreatePartnerintegrationFileExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationFile @@ -655,10 +655,10 @@ func (a *PartnerintegrationApiService) CreatePartnerintegrationInventoryExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationInventory @@ -837,10 +837,10 @@ func (a *PartnerintegrationApiService) CreatePartnerintegrationMetricsExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationMetrics @@ -1019,10 +1019,10 @@ func (a *PartnerintegrationApiService) CreatePartnerintegrationModelExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationModel @@ -2243,52 +2243,52 @@ func (a *PartnerintegrationApiService) GetPartnerintegrationDcLogsListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2672,52 +2672,52 @@ func (a *PartnerintegrationApiService) GetPartnerintegrationDeviceConnectorListE localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3101,52 +3101,52 @@ func (a *PartnerintegrationApiService) GetPartnerintegrationDocIssuesListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3530,52 +3530,52 @@ func (a *PartnerintegrationApiService) GetPartnerintegrationEtlListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3959,52 +3959,52 @@ func (a *PartnerintegrationApiService) GetPartnerintegrationFileListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4388,52 +4388,52 @@ func (a *PartnerintegrationApiService) GetPartnerintegrationInventoryListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4817,52 +4817,52 @@ func (a *PartnerintegrationApiService) GetPartnerintegrationLogsListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5246,52 +5246,52 @@ func (a *PartnerintegrationApiService) GetPartnerintegrationMetricsListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5675,52 +5675,52 @@ func (a *PartnerintegrationApiService) GetPartnerintegrationModelListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5911,7 +5911,7 @@ func (a *PartnerintegrationApiService) PatchPartnerintegrationDeviceConnectorExe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationDeviceConnector @@ -6087,7 +6087,7 @@ func (a *PartnerintegrationApiService) PatchPartnerintegrationEtlExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationEtl @@ -6263,7 +6263,7 @@ func (a *PartnerintegrationApiService) PatchPartnerintegrationFileExecute(r ApiP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationFile @@ -6439,7 +6439,7 @@ func (a *PartnerintegrationApiService) PatchPartnerintegrationInventoryExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationInventory @@ -6615,7 +6615,7 @@ func (a *PartnerintegrationApiService) PatchPartnerintegrationMetricsExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationMetrics @@ -6791,7 +6791,7 @@ func (a *PartnerintegrationApiService) PatchPartnerintegrationModelExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationModel @@ -6967,7 +6967,7 @@ func (a *PartnerintegrationApiService) UpdatePartnerintegrationDeviceConnectorEx localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationDeviceConnector @@ -7143,7 +7143,7 @@ func (a *PartnerintegrationApiService) UpdatePartnerintegrationEtlExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationEtl @@ -7319,7 +7319,7 @@ func (a *PartnerintegrationApiService) UpdatePartnerintegrationFileExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationFile @@ -7495,7 +7495,7 @@ func (a *PartnerintegrationApiService) UpdatePartnerintegrationInventoryExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationInventory @@ -7671,7 +7671,7 @@ func (a *PartnerintegrationApiService) UpdatePartnerintegrationMetricsExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationMetrics @@ -7847,7 +7847,7 @@ func (a *PartnerintegrationApiService) UpdatePartnerintegrationModelExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationModel diff --git a/intersight_gosdk/api_pci.go b/intersight_gosdk/api_pci.go index 60791602e9..628a9b5eb7 100644 --- a/intersight_gosdk/api_pci.go +++ b/intersight_gosdk/api_pci.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *PciApiService) GetPciCoprocessorCardListExecute(r ApiGetPciCoprocessorC localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *PciApiService) GetPciDeviceListExecute(r ApiGetPciDeviceListRequest) (* localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *PciApiService) GetPciLinkListExecute(r ApiGetPciLinkListRequest) (*PciL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1586,52 +1586,52 @@ func (a *PciApiService) GetPciNodeListExecute(r ApiGetPciNodeListRequest) (*PciN localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2015,52 +2015,52 @@ func (a *PciApiService) GetPciSwitchListExecute(r ApiGetPciSwitchListRequest) (* localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2251,7 +2251,7 @@ func (a *PciApiService) PatchPciDeviceExecute(r ApiPatchPciDeviceRequest) (*PciD localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.pciDevice @@ -2427,7 +2427,7 @@ func (a *PciApiService) PatchPciLinkExecute(r ApiPatchPciLinkRequest) (*PciLink, localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.pciLink @@ -2603,7 +2603,7 @@ func (a *PciApiService) PatchPciNodeExecute(r ApiPatchPciNodeRequest) (*PciNode, localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.pciNode @@ -2779,7 +2779,7 @@ func (a *PciApiService) PatchPciSwitchExecute(r ApiPatchPciSwitchRequest) (*PciS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.pciSwitch @@ -2955,7 +2955,7 @@ func (a *PciApiService) UpdatePciDeviceExecute(r ApiUpdatePciDeviceRequest) (*Pc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.pciDevice @@ -3131,7 +3131,7 @@ func (a *PciApiService) UpdatePciLinkExecute(r ApiUpdatePciLinkRequest) (*PciLin localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.pciLink @@ -3307,7 +3307,7 @@ func (a *PciApiService) UpdatePciNodeExecute(r ApiUpdatePciNodeRequest) (*PciNod localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.pciNode @@ -3483,7 +3483,7 @@ func (a *PciApiService) UpdatePciSwitchExecute(r ApiUpdatePciSwitchRequest) (*Pc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.pciSwitch diff --git a/intersight_gosdk/api_port.go b/intersight_gosdk/api_port.go index 73eabf82ee..660730304a 100644 --- a/intersight_gosdk/api_port.go +++ b/intersight_gosdk/api_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *PortApiService) GetPortGroupListExecute(r ApiGetPortGroupListRequest) ( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *PortApiService) GetPortMacBindingListExecute(r ApiGetPortMacBindingList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *PortApiService) GetPortSubGroupListExecute(r ApiGetPortSubGroupListRequ localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1393,7 +1393,7 @@ func (a *PortApiService) PatchPortGroupExecute(r ApiPatchPortGroupRequest) (*Por localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.portGroup @@ -1569,7 +1569,7 @@ func (a *PortApiService) PatchPortMacBindingExecute(r ApiPatchPortMacBindingRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.portMacBinding @@ -1745,7 +1745,7 @@ func (a *PortApiService) PatchPortSubGroupExecute(r ApiPatchPortSubGroupRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.portSubGroup @@ -1921,7 +1921,7 @@ func (a *PortApiService) UpdatePortGroupExecute(r ApiUpdatePortGroupRequest) (*P localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.portGroup @@ -2097,7 +2097,7 @@ func (a *PortApiService) UpdatePortMacBindingExecute(r ApiUpdatePortMacBindingRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.portMacBinding @@ -2273,7 +2273,7 @@ func (a *PortApiService) UpdatePortSubGroupExecute(r ApiUpdatePortSubGroupReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.portSubGroup diff --git a/intersight_gosdk/api_power.go b/intersight_gosdk/api_power.go index ef0d1da583..9d8cdf08c2 100644 --- a/intersight_gosdk/api_power.go +++ b/intersight_gosdk/api_power.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *PowerApiService) CreatePowerPolicyExecute(r ApiCreatePowerPolicyRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.powerPolicy @@ -623,52 +623,52 @@ func (a *PowerApiService) GetPowerControlStateListExecute(r ApiGetPowerControlSt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1206,52 +1206,52 @@ func (a *PowerApiService) GetPowerPolicyInventoryListExecute(r ApiGetPowerPolicy localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1481,52 +1481,52 @@ func (a *PowerApiService) GetPowerPolicyListExecute(r ApiGetPowerPolicyListReque localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1717,7 +1717,7 @@ func (a *PowerApiService) PatchPowerPolicyExecute(r ApiPatchPowerPolicyRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.powerPolicy @@ -1893,7 +1893,7 @@ func (a *PowerApiService) UpdatePowerPolicyExecute(r ApiUpdatePowerPolicyRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.powerPolicy diff --git a/intersight_gosdk/api_processor.go b/intersight_gosdk/api_processor.go index 14168b6f31..966029c5c7 100644 --- a/intersight_gosdk/api_processor.go +++ b/intersight_gosdk/api_processor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *ProcessorApiService) GetProcessorUnitListExecute(r ApiGetProcessorUnitL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -535,7 +535,7 @@ func (a *ProcessorApiService) PatchProcessorUnitExecute(r ApiPatchProcessorUnitR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.processorUnit @@ -711,7 +711,7 @@ func (a *ProcessorApiService) UpdateProcessorUnitExecute(r ApiUpdateProcessorUni localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.processorUnit diff --git a/intersight_gosdk/api_rack.go b/intersight_gosdk/api_rack.go index 658f5092bb..5a073f31e4 100644 --- a/intersight_gosdk/api_rack.go +++ b/intersight_gosdk/api_rack.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *RackApiService) GetRackUnitPersonalityListExecute(r ApiGetRackUnitPerso localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -535,7 +535,7 @@ func (a *RackApiService) PatchRackUnitPersonalityExecute(r ApiPatchRackUnitPerso localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.rackUnitPersonality @@ -711,7 +711,7 @@ func (a *RackApiService) UpdateRackUnitPersonalityExecute(r ApiUpdateRackUnitPer localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.rackUnitPersonality diff --git a/intersight_gosdk/api_recommendation.go b/intersight_gosdk/api_recommendation.go index baf18f8480..8abc460022 100644 --- a/intersight_gosdk/api_recommendation.go +++ b/intersight_gosdk/api_recommendation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *RecommendationApiService) CreateRecommendationHardwareExpansionRequestE localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.recommendationHardwareExpansionRequest @@ -291,10 +291,10 @@ func (a *RecommendationApiService) CreateRecommendationHardwareExpansionRequestI localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.recommendationHardwareExpansionRequestItem @@ -477,10 +477,10 @@ func (a *RecommendationApiService) CreateRecommendationPurchaseOrderEstimateExec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.recommendationPurchaseOrderEstimate @@ -849,52 +849,52 @@ func (a *RecommendationApiService) GetRecommendationCapacityRunwayListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1278,52 +1278,52 @@ func (a *RecommendationApiService) GetRecommendationClusterExpansionListExecute( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1861,52 +1861,52 @@ func (a *RecommendationApiService) GetRecommendationHardwareExpansionRequestItem localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2136,52 +2136,52 @@ func (a *RecommendationApiService) GetRecommendationHardwareExpansionRequestList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2565,52 +2565,52 @@ func (a *RecommendationApiService) GetRecommendationPhysicalItemListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3002,52 +3002,52 @@ func (a *RecommendationApiService) GetRecommendationPurchaseOrderEstimateListExe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3431,52 +3431,52 @@ func (a *RecommendationApiService) GetRecommendationPurchaseOrderListListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3860,52 +3860,52 @@ func (a *RecommendationApiService) GetRecommendationSoftwareItemListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4096,7 +4096,7 @@ func (a *RecommendationApiService) PatchRecommendationHardwareExpansionRequestEx localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recommendationHardwareExpansionRequest @@ -4272,7 +4272,7 @@ func (a *RecommendationApiService) PatchRecommendationHardwareExpansionRequestIt localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recommendationHardwareExpansionRequestItem @@ -4452,7 +4452,7 @@ func (a *RecommendationApiService) PatchRecommendationPurchaseOrderEstimateExecu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recommendationPurchaseOrderEstimate @@ -4628,7 +4628,7 @@ func (a *RecommendationApiService) UpdateRecommendationHardwareExpansionRequestE localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recommendationHardwareExpansionRequest @@ -4804,7 +4804,7 @@ func (a *RecommendationApiService) UpdateRecommendationHardwareExpansionRequestI localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recommendationHardwareExpansionRequestItem @@ -4984,7 +4984,7 @@ func (a *RecommendationApiService) UpdateRecommendationPurchaseOrderEstimateExec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recommendationPurchaseOrderEstimate diff --git a/intersight_gosdk/api_recovery.go b/intersight_gosdk/api_recovery.go index 8e9974ae1b..faccc83f5b 100644 --- a/intersight_gosdk/api_recovery.go +++ b/intersight_gosdk/api_recovery.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *RecoveryApiService) CreateRecoveryBackupConfigPolicyExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.recoveryBackupConfigPolicy @@ -291,10 +291,10 @@ func (a *RecoveryApiService) CreateRecoveryBackupProfileExecute(r ApiCreateRecov localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.recoveryBackupProfile @@ -473,10 +473,10 @@ func (a *RecoveryApiService) CreateRecoveryOnDemandBackupExecute(r ApiCreateReco localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.recoveryOnDemandBackup @@ -655,10 +655,10 @@ func (a *RecoveryApiService) CreateRecoveryRestoreExecute(r ApiCreateRecoveryRes localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.recoveryRestore @@ -837,10 +837,10 @@ func (a *RecoveryApiService) CreateRecoveryScheduleConfigPolicyExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.recoveryScheduleConfigPolicy @@ -1919,52 +1919,52 @@ func (a *RecoveryApiService) GetRecoveryBackupConfigPolicyListExecute(r ApiGetRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2348,52 +2348,52 @@ func (a *RecoveryApiService) GetRecoveryBackupProfileListExecute(r ApiGetRecover localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2931,52 +2931,52 @@ func (a *RecoveryApiService) GetRecoveryConfigResultEntryListExecute(r ApiGetRec localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3206,52 +3206,52 @@ func (a *RecoveryApiService) GetRecoveryConfigResultListExecute(r ApiGetRecovery localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3635,52 +3635,52 @@ func (a *RecoveryApiService) GetRecoveryOnDemandBackupListExecute(r ApiGetRecove localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4064,52 +4064,52 @@ func (a *RecoveryApiService) GetRecoveryRestoreListExecute(r ApiGetRecoveryResto localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4493,52 +4493,52 @@ func (a *RecoveryApiService) GetRecoveryScheduleConfigPolicyListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4729,7 +4729,7 @@ func (a *RecoveryApiService) PatchRecoveryBackupConfigPolicyExecute(r ApiPatchRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recoveryBackupConfigPolicy @@ -4905,7 +4905,7 @@ func (a *RecoveryApiService) PatchRecoveryBackupProfileExecute(r ApiPatchRecover localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recoveryBackupProfile @@ -5081,7 +5081,7 @@ func (a *RecoveryApiService) PatchRecoveryOnDemandBackupExecute(r ApiPatchRecove localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recoveryOnDemandBackup @@ -5257,7 +5257,7 @@ func (a *RecoveryApiService) PatchRecoveryScheduleConfigPolicyExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recoveryScheduleConfigPolicy @@ -5433,7 +5433,7 @@ func (a *RecoveryApiService) UpdateRecoveryBackupConfigPolicyExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recoveryBackupConfigPolicy @@ -5609,7 +5609,7 @@ func (a *RecoveryApiService) UpdateRecoveryBackupProfileExecute(r ApiUpdateRecov localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recoveryBackupProfile @@ -5785,7 +5785,7 @@ func (a *RecoveryApiService) UpdateRecoveryOnDemandBackupExecute(r ApiUpdateReco localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recoveryOnDemandBackup @@ -5961,7 +5961,7 @@ func (a *RecoveryApiService) UpdateRecoveryScheduleConfigPolicyExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recoveryScheduleConfigPolicy diff --git a/intersight_gosdk/api_resource.go b/intersight_gosdk/api_resource.go index 3975b1ab73..711088d81d 100644 --- a/intersight_gosdk/api_resource.go +++ b/intersight_gosdk/api_resource.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *ResourceApiService) CreateResourceGroupExecute(r ApiCreateResourceGroup localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.resourceGroup @@ -291,10 +291,10 @@ func (a *ResourceApiService) CreateResourceMembershipExecute(r ApiCreateResource localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.resourceMembership @@ -473,10 +473,10 @@ func (a *ResourceApiService) CreateResourceReservationExecute(r ApiCreateResourc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.resourceReservation @@ -655,10 +655,10 @@ func (a *ResourceApiService) CreateResourceSelectionCriteriaExecute(r ApiCreateR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.resourceSelectionCriteria @@ -1737,52 +1737,52 @@ func (a *ResourceApiService) GetResourceGroupListExecute(r ApiGetResourceGroupLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2166,52 +2166,52 @@ func (a *ResourceApiService) GetResourceGroupMemberListExecute(r ApiGetResourceG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2595,52 +2595,52 @@ func (a *ResourceApiService) GetResourceLicenseResourceCountListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3178,52 +3178,52 @@ func (a *ResourceApiService) GetResourceMembershipHolderListExecute(r ApiGetReso localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3453,52 +3453,52 @@ func (a *ResourceApiService) GetResourceMembershipListExecute(r ApiGetResourceMe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3882,52 +3882,52 @@ func (a *ResourceApiService) GetResourceReservationListExecute(r ApiGetResourceR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4311,52 +4311,52 @@ func (a *ResourceApiService) GetResourceSelectionCriteriaListExecute(r ApiGetRes localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4740,52 +4740,52 @@ func (a *ResourceApiService) GetResourceSharedResourcesInfoHolderListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4976,7 +4976,7 @@ func (a *ResourceApiService) PatchResourceGroupExecute(r ApiPatchResourceGroupRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.resourceGroup @@ -5152,7 +5152,7 @@ func (a *ResourceApiService) PatchResourceMembershipExecute(r ApiPatchResourceMe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.resourceMembership @@ -5328,7 +5328,7 @@ func (a *ResourceApiService) PatchResourceReservationExecute(r ApiPatchResourceR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.resourceReservation @@ -5504,7 +5504,7 @@ func (a *ResourceApiService) PatchResourceSelectionCriteriaExecute(r ApiPatchRes localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.resourceSelectionCriteria @@ -5680,7 +5680,7 @@ func (a *ResourceApiService) UpdateResourceGroupExecute(r ApiUpdateResourceGroup localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.resourceGroup @@ -5856,7 +5856,7 @@ func (a *ResourceApiService) UpdateResourceMembershipExecute(r ApiUpdateResource localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.resourceMembership @@ -6032,7 +6032,7 @@ func (a *ResourceApiService) UpdateResourceReservationExecute(r ApiUpdateResourc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.resourceReservation @@ -6208,7 +6208,7 @@ func (a *ResourceApiService) UpdateResourceSelectionCriteriaExecute(r ApiUpdateR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.resourceSelectionCriteria diff --git a/intersight_gosdk/api_resourcepool.go b/intersight_gosdk/api_resourcepool.go index 1bd325b12d..378e46f320 100644 --- a/intersight_gosdk/api_resourcepool.go +++ b/intersight_gosdk/api_resourcepool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *ResourcepoolApiService) CreateResourcepoolPoolExecute(r ApiCreateResour localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.resourcepoolPool @@ -907,52 +907,52 @@ func (a *ResourcepoolApiService) GetResourcepoolLeaseListExecute(r ApiGetResourc localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1336,52 +1336,52 @@ func (a *ResourcepoolApiService) GetResourcepoolLeaseResourceListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1765,52 +1765,52 @@ func (a *ResourcepoolApiService) GetResourcepoolMembershipReservationListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2194,52 +2194,52 @@ func (a *ResourcepoolApiService) GetResourcepoolPoolListExecute(r ApiGetResource localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2623,52 +2623,52 @@ func (a *ResourcepoolApiService) GetResourcepoolPoolMemberListExecute(r ApiGetRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3052,52 +3052,52 @@ func (a *ResourcepoolApiService) GetResourcepoolUniverseListExecute(r ApiGetReso localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3288,7 +3288,7 @@ func (a *ResourcepoolApiService) PatchResourcepoolMembershipReservationExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.resourcepoolMembershipReservation @@ -3464,7 +3464,7 @@ func (a *ResourcepoolApiService) PatchResourcepoolPoolExecute(r ApiPatchResource localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.resourcepoolPool @@ -3640,7 +3640,7 @@ func (a *ResourcepoolApiService) UpdateResourcepoolMembershipReservationExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.resourcepoolMembershipReservation @@ -3816,7 +3816,7 @@ func (a *ResourcepoolApiService) UpdateResourcepoolPoolExecute(r ApiUpdateResour localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.resourcepoolPool diff --git a/intersight_gosdk/api_rproxy.go b/intersight_gosdk/api_rproxy.go index bcac1b4836..12347b4d42 100644 --- a/intersight_gosdk/api_rproxy.go +++ b/intersight_gosdk/api_rproxy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -108,10 +108,10 @@ func (a *RproxyApiService) CreateRproxyReverseProxyExecute(r ApiCreateRproxyReve localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.rproxyReverseProxy diff --git a/intersight_gosdk/api_scheduler.go b/intersight_gosdk/api_scheduler.go index 492028830b..29377e8603 100644 --- a/intersight_gosdk/api_scheduler.go +++ b/intersight_gosdk/api_scheduler.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *SchedulerApiService) CreateSchedulerTaskScheduleExecute(r ApiCreateSche localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.schedulerTaskSchedule @@ -765,52 +765,52 @@ func (a *SchedulerApiService) GetSchedulerTaskResultListExecute(r ApiGetSchedule localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1194,52 +1194,52 @@ func (a *SchedulerApiService) GetSchedulerTaskScheduleListExecute(r ApiGetSchedu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1430,7 +1430,7 @@ func (a *SchedulerApiService) PatchSchedulerTaskScheduleExecute(r ApiPatchSchedu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.schedulerTaskSchedule @@ -1606,7 +1606,7 @@ func (a *SchedulerApiService) UpdateSchedulerTaskScheduleExecute(r ApiUpdateSche localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.schedulerTaskSchedule diff --git a/intersight_gosdk/api_sdaaci.go b/intersight_gosdk/api_sdaaci.go index 681b981467..441b2f61ae 100644 --- a/intersight_gosdk/api_sdaaci.go +++ b/intersight_gosdk/api_sdaaci.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *SdaaciApiService) CreateSdaaciConnectionExecute(r ApiCreateSdaaciConnec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.sdaaciConnection @@ -291,10 +291,10 @@ func (a *SdaaciApiService) CreateSdaaciConnectionDetailExecute(r ApiCreateSdaaci localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.sdaaciConnectionDetail @@ -1101,52 +1101,52 @@ func (a *SdaaciApiService) GetSdaaciConnectionDetailListExecute(r ApiGetSdaaciCo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1376,52 +1376,52 @@ func (a *SdaaciApiService) GetSdaaciConnectionListExecute(r ApiGetSdaaciConnecti localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1612,7 +1612,7 @@ func (a *SdaaciApiService) PatchSdaaciConnectionExecute(r ApiPatchSdaaciConnecti localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.sdaaciConnection @@ -1788,7 +1788,7 @@ func (a *SdaaciApiService) PatchSdaaciConnectionDetailExecute(r ApiPatchSdaaciCo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.sdaaciConnectionDetail @@ -1964,7 +1964,7 @@ func (a *SdaaciApiService) UpdateSdaaciConnectionExecute(r ApiUpdateSdaaciConnec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.sdaaciConnection @@ -2140,7 +2140,7 @@ func (a *SdaaciApiService) UpdateSdaaciConnectionDetailExecute(r ApiUpdateSdaaci localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.sdaaciConnectionDetail diff --git a/intersight_gosdk/api_sdcard.go b/intersight_gosdk/api_sdcard.go index fb419e9a89..a5ca8fa429 100644 --- a/intersight_gosdk/api_sdcard.go +++ b/intersight_gosdk/api_sdcard.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *SdcardApiService) CreateSdcardPolicyExecute(r ApiCreateSdcardPolicyRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.sdcardPolicy @@ -777,52 +777,52 @@ func (a *SdcardApiService) GetSdcardPolicyInventoryListExecute(r ApiGetSdcardPol localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *SdcardApiService) GetSdcardPolicyListExecute(r ApiGetSdcardPolicyListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1288,7 +1288,7 @@ func (a *SdcardApiService) PatchSdcardPolicyExecute(r ApiPatchSdcardPolicyReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.sdcardPolicy @@ -1464,7 +1464,7 @@ func (a *SdcardApiService) UpdateSdcardPolicyExecute(r ApiUpdateSdcardPolicyRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.sdcardPolicy diff --git a/intersight_gosdk/api_search.go b/intersight_gosdk/api_search.go index b3485b4f2c..0d17cd9491 100644 --- a/intersight_gosdk/api_search.go +++ b/intersight_gosdk/api_search.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *SearchApiService) CreateSearchSuggestItemExecute(r ApiCreateSearchSugge localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.searchSuggestItem @@ -481,52 +481,52 @@ func (a *SearchApiService) GetSearchSearchItemListExecute(r ApiGetSearchSearchIt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -910,52 +910,52 @@ func (a *SearchApiService) GetSearchTagItemListExecute(r ApiGetSearchTagItemList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/intersight_gosdk/api_security.go b/intersight_gosdk/api_security.go index c54f4b1c2d..0366b03f37 100644 --- a/intersight_gosdk/api_security.go +++ b/intersight_gosdk/api_security.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *SecurityApiService) GetSecurityUnitListExecute(r ApiGetSecurityUnitList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -535,7 +535,7 @@ func (a *SecurityApiService) PatchSecurityUnitExecute(r ApiPatchSecurityUnitRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.securityUnit @@ -711,7 +711,7 @@ func (a *SecurityApiService) UpdateSecurityUnitExecute(r ApiUpdateSecurityUnitRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.securityUnit diff --git a/intersight_gosdk/api_server.go b/intersight_gosdk/api_server.go index 70d5a03143..a8a6cc7e72 100644 --- a/intersight_gosdk/api_server.go +++ b/intersight_gosdk/api_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *ServerApiService) CreateServerConfigImportExecute(r ApiCreateServerConf localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.serverConfigImport @@ -291,10 +291,10 @@ func (a *ServerApiService) CreateServerProfileExecute(r ApiCreateServerProfileRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.serverProfile @@ -473,10 +473,10 @@ func (a *ServerApiService) CreateServerProfileTemplateExecute(r ApiCreateServerP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.serverProfileTemplate @@ -1129,52 +1129,52 @@ func (a *ServerApiService) GetServerConfigChangeDetailListExecute(r ApiGetServer localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1558,52 +1558,52 @@ func (a *ServerApiService) GetServerConfigImportListExecute(r ApiGetServerConfig localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2141,52 +2141,52 @@ func (a *ServerApiService) GetServerConfigResultEntryListExecute(r ApiGetServerC localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2416,52 +2416,52 @@ func (a *ServerApiService) GetServerConfigResultListExecute(r ApiGetServerConfig localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2845,52 +2845,52 @@ func (a *ServerApiService) GetServerDisruptionListExecute(r ApiGetServerDisrupti localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3274,52 +3274,52 @@ func (a *ServerApiService) GetServerProfileListExecute(r ApiGetServerProfileList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3703,52 +3703,52 @@ func (a *ServerApiService) GetServerProfileTemplateListExecute(r ApiGetServerPro localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3939,7 +3939,7 @@ func (a *ServerApiService) PatchServerProfileExecute(r ApiPatchServerProfileRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.serverProfile @@ -4115,7 +4115,7 @@ func (a *ServerApiService) PatchServerProfileTemplateExecute(r ApiPatchServerPro localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.serverProfileTemplate @@ -4291,7 +4291,7 @@ func (a *ServerApiService) UpdateServerProfileExecute(r ApiUpdateServerProfileRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.serverProfile @@ -4467,7 +4467,7 @@ func (a *ServerApiService) UpdateServerProfileTemplateExecute(r ApiUpdateServerP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.serverProfileTemplate diff --git a/intersight_gosdk/api_servicenow.go b/intersight_gosdk/api_servicenow.go index 8a27ae3200..c11022c78f 100644 --- a/intersight_gosdk/api_servicenow.go +++ b/intersight_gosdk/api_servicenow.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *ServicenowApiService) GetServicenowChangeRequestListExecute(r ApiGetSer localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *ServicenowApiService) GetServicenowIncidentListExecute(r ApiGetServicen localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/intersight_gosdk/api_smtp.go b/intersight_gosdk/api_smtp.go index 32cfcf696c..8bb4b2f464 100644 --- a/intersight_gosdk/api_smtp.go +++ b/intersight_gosdk/api_smtp.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *SmtpApiService) CreateSmtpPolicyExecute(r ApiCreateSmtpPolicyRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.smtpPolicy @@ -623,52 +623,52 @@ func (a *SmtpApiService) GetSmtpPolicyListExecute(r ApiGetSmtpPolicyListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -859,7 +859,7 @@ func (a *SmtpApiService) PatchSmtpPolicyExecute(r ApiPatchSmtpPolicyRequest) (*S localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.smtpPolicy @@ -1035,7 +1035,7 @@ func (a *SmtpApiService) UpdateSmtpPolicyExecute(r ApiUpdateSmtpPolicyRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.smtpPolicy diff --git a/intersight_gosdk/api_snmp.go b/intersight_gosdk/api_snmp.go index eaef8cdf41..a0b6927cfb 100644 --- a/intersight_gosdk/api_snmp.go +++ b/intersight_gosdk/api_snmp.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *SnmpApiService) CreateSnmpPolicyExecute(r ApiCreateSnmpPolicyRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.snmpPolicy @@ -777,52 +777,52 @@ func (a *SnmpApiService) GetSnmpPolicyInventoryListExecute(r ApiGetSnmpPolicyInv localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *SnmpApiService) GetSnmpPolicyListExecute(r ApiGetSnmpPolicyListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1288,7 +1288,7 @@ func (a *SnmpApiService) PatchSnmpPolicyExecute(r ApiPatchSnmpPolicyRequest) (*S localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.snmpPolicy @@ -1464,7 +1464,7 @@ func (a *SnmpApiService) UpdateSnmpPolicyExecute(r ApiUpdateSnmpPolicyRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.snmpPolicy diff --git a/intersight_gosdk/api_software.go b/intersight_gosdk/api_software.go index f4bbf8633b..64516cac9c 100644 --- a/intersight_gosdk/api_software.go +++ b/intersight_gosdk/api_software.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *SoftwareApiService) CreateSoftwareApplianceDistributableExecute(r ApiCr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwareApplianceDistributable @@ -291,10 +291,10 @@ func (a *SoftwareApiService) CreateSoftwareHciBundleDistributableExecute(r ApiCr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwareHciBundleDistributable @@ -473,10 +473,10 @@ func (a *SoftwareApiService) CreateSoftwareHciDistributableExecute(r ApiCreateSo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwareHciDistributable @@ -655,10 +655,10 @@ func (a *SoftwareApiService) CreateSoftwareHclMetaExecute(r ApiCreateSoftwareHcl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwareHclMeta @@ -837,10 +837,10 @@ func (a *SoftwareApiService) CreateSoftwareHyperflexBundleDistributableExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwareHyperflexBundleDistributable @@ -1019,10 +1019,10 @@ func (a *SoftwareApiService) CreateSoftwareHyperflexDistributableExecute(r ApiCr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwareHyperflexDistributable @@ -1201,10 +1201,10 @@ func (a *SoftwareApiService) CreateSoftwareIksBundleDistributableExecute(r ApiCr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwareIksBundleDistributable @@ -1383,10 +1383,10 @@ func (a *SoftwareApiService) CreateSoftwareReleaseMetaExecute(r ApiCreateSoftwar localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwareReleaseMeta @@ -1565,10 +1565,10 @@ func (a *SoftwareApiService) CreateSoftwareSolutionDistributableExecute(r ApiCre localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwareSolutionDistributable @@ -1747,10 +1747,10 @@ func (a *SoftwareApiService) CreateSoftwareUcsdBundleDistributableExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwareUcsdBundleDistributable @@ -1929,10 +1929,10 @@ func (a *SoftwareApiService) CreateSoftwareUcsdDistributableExecute(r ApiCreateS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwareUcsdDistributable @@ -3863,52 +3863,52 @@ func (a *SoftwareApiService) GetSoftwareApplianceDistributableListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4292,52 +4292,52 @@ func (a *SoftwareApiService) GetSoftwareDownloadHistoryListExecute(r ApiGetSoftw localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4721,52 +4721,52 @@ func (a *SoftwareApiService) GetSoftwareHciBundleDistributableListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5150,52 +5150,52 @@ func (a *SoftwareApiService) GetSoftwareHciDistributableListExecute(r ApiGetSoft localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5579,52 +5579,52 @@ func (a *SoftwareApiService) GetSoftwareHclMetaListExecute(r ApiGetSoftwareHclMe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6008,52 +6008,52 @@ func (a *SoftwareApiService) GetSoftwareHyperflexBundleDistributableListExecute( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6437,52 +6437,52 @@ func (a *SoftwareApiService) GetSoftwareHyperflexDistributableListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6866,52 +6866,52 @@ func (a *SoftwareApiService) GetSoftwareIksBundleDistributableListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7295,52 +7295,52 @@ func (a *SoftwareApiService) GetSoftwareReleaseMetaListExecute(r ApiGetSoftwareR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7724,52 +7724,52 @@ func (a *SoftwareApiService) GetSoftwareSolutionDistributableListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8153,52 +8153,52 @@ func (a *SoftwareApiService) GetSoftwareUcsdBundleDistributableListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8582,52 +8582,52 @@ func (a *SoftwareApiService) GetSoftwareUcsdDistributableListExecute(r ApiGetSof localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8818,7 +8818,7 @@ func (a *SoftwareApiService) PatchSoftwareApplianceDistributableExecute(r ApiPat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareApplianceDistributable @@ -8994,7 +8994,7 @@ func (a *SoftwareApiService) PatchSoftwareHciBundleDistributableExecute(r ApiPat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareHciBundleDistributable @@ -9170,7 +9170,7 @@ func (a *SoftwareApiService) PatchSoftwareHciDistributableExecute(r ApiPatchSoft localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareHciDistributable @@ -9346,7 +9346,7 @@ func (a *SoftwareApiService) PatchSoftwareHclMetaExecute(r ApiPatchSoftwareHclMe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareHclMeta @@ -9522,7 +9522,7 @@ func (a *SoftwareApiService) PatchSoftwareHyperflexBundleDistributableExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareHyperflexBundleDistributable @@ -9698,7 +9698,7 @@ func (a *SoftwareApiService) PatchSoftwareHyperflexDistributableExecute(r ApiPat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareHyperflexDistributable @@ -9874,7 +9874,7 @@ func (a *SoftwareApiService) PatchSoftwareIksBundleDistributableExecute(r ApiPat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareIksBundleDistributable @@ -10050,7 +10050,7 @@ func (a *SoftwareApiService) PatchSoftwareReleaseMetaExecute(r ApiPatchSoftwareR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareReleaseMeta @@ -10226,7 +10226,7 @@ func (a *SoftwareApiService) PatchSoftwareSolutionDistributableExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareSolutionDistributable @@ -10402,7 +10402,7 @@ func (a *SoftwareApiService) PatchSoftwareUcsdBundleDistributableExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareUcsdBundleDistributable @@ -10578,7 +10578,7 @@ func (a *SoftwareApiService) PatchSoftwareUcsdDistributableExecute(r ApiPatchSof localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareUcsdDistributable @@ -10754,7 +10754,7 @@ func (a *SoftwareApiService) UpdateSoftwareApplianceDistributableExecute(r ApiUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareApplianceDistributable @@ -10930,7 +10930,7 @@ func (a *SoftwareApiService) UpdateSoftwareHciBundleDistributableExecute(r ApiUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareHciBundleDistributable @@ -11106,7 +11106,7 @@ func (a *SoftwareApiService) UpdateSoftwareHciDistributableExecute(r ApiUpdateSo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareHciDistributable @@ -11282,7 +11282,7 @@ func (a *SoftwareApiService) UpdateSoftwareHclMetaExecute(r ApiUpdateSoftwareHcl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareHclMeta @@ -11458,7 +11458,7 @@ func (a *SoftwareApiService) UpdateSoftwareHyperflexBundleDistributableExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareHyperflexBundleDistributable @@ -11634,7 +11634,7 @@ func (a *SoftwareApiService) UpdateSoftwareHyperflexDistributableExecute(r ApiUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareHyperflexDistributable @@ -11810,7 +11810,7 @@ func (a *SoftwareApiService) UpdateSoftwareIksBundleDistributableExecute(r ApiUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareIksBundleDistributable @@ -11986,7 +11986,7 @@ func (a *SoftwareApiService) UpdateSoftwareReleaseMetaExecute(r ApiUpdateSoftwar localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareReleaseMeta @@ -12162,7 +12162,7 @@ func (a *SoftwareApiService) UpdateSoftwareSolutionDistributableExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareSolutionDistributable @@ -12338,7 +12338,7 @@ func (a *SoftwareApiService) UpdateSoftwareUcsdBundleDistributableExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareUcsdBundleDistributable @@ -12514,7 +12514,7 @@ func (a *SoftwareApiService) UpdateSoftwareUcsdDistributableExecute(r ApiUpdateS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareUcsdDistributable diff --git a/intersight_gosdk/api_softwarerepository.go b/intersight_gosdk/api_softwarerepository.go index 9190624292..727f501834 100644 --- a/intersight_gosdk/api_softwarerepository.go +++ b/intersight_gosdk/api_softwarerepository.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *SoftwarerepositoryApiService) CreateSoftwarerepositoryAuthorizationExec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryAuthorization @@ -291,10 +291,10 @@ func (a *SoftwarerepositoryApiService) CreateSoftwarerepositoryCategoryMapperExe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryCategoryMapper @@ -473,10 +473,10 @@ func (a *SoftwarerepositoryApiService) CreateSoftwarerepositoryCategoryMapperMod localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryCategoryMapperModel @@ -655,10 +655,10 @@ func (a *SoftwarerepositoryApiService) CreateSoftwarerepositoryCategorySupportCo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryCategorySupportConstraint @@ -837,10 +837,10 @@ func (a *SoftwarerepositoryApiService) CreateSoftwarerepositoryCategoryUnsupport localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryCategoryUnsupportedModels @@ -1019,10 +1019,10 @@ func (a *SoftwarerepositoryApiService) CreateSoftwarerepositoryOperatingSystemFi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryOperatingSystemFile @@ -1201,10 +1201,10 @@ func (a *SoftwarerepositoryApiService) CreateSoftwarerepositoryReleaseExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryRelease @@ -2425,52 +2425,52 @@ func (a *SoftwarerepositoryApiService) GetSoftwarerepositoryAuthorizationListExe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2854,52 +2854,52 @@ func (a *SoftwarerepositoryApiService) GetSoftwarerepositoryCachedImageListExecu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3283,52 +3283,52 @@ func (a *SoftwarerepositoryApiService) GetSoftwarerepositoryCatalogListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3712,52 +3712,52 @@ func (a *SoftwarerepositoryApiService) GetSoftwarerepositoryCategoryMapperListEx localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4141,52 +4141,52 @@ func (a *SoftwarerepositoryApiService) GetSoftwarerepositoryCategoryMapperModelL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4570,52 +4570,52 @@ func (a *SoftwarerepositoryApiService) GetSoftwarerepositoryCategorySupportConst localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4999,52 +4999,52 @@ func (a *SoftwarerepositoryApiService) GetSoftwarerepositoryCategoryUnsupportedM localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5428,52 +5428,52 @@ func (a *SoftwarerepositoryApiService) GetSoftwarerepositoryDownloadSpecListExec localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5857,52 +5857,52 @@ func (a *SoftwarerepositoryApiService) GetSoftwarerepositoryOperatingSystemFileL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6286,52 +6286,52 @@ func (a *SoftwarerepositoryApiService) GetSoftwarerepositoryReleaseListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6522,7 +6522,7 @@ func (a *SoftwarerepositoryApiService) PatchSoftwarerepositoryAuthorizationExecu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryAuthorization @@ -6698,7 +6698,7 @@ func (a *SoftwarerepositoryApiService) PatchSoftwarerepositoryCategoryMapperExec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryCategoryMapper @@ -6874,7 +6874,7 @@ func (a *SoftwarerepositoryApiService) PatchSoftwarerepositoryCategoryMapperMode localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryCategoryMapperModel @@ -7050,7 +7050,7 @@ func (a *SoftwarerepositoryApiService) PatchSoftwarerepositoryCategorySupportCon localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryCategorySupportConstraint @@ -7226,7 +7226,7 @@ func (a *SoftwarerepositoryApiService) PatchSoftwarerepositoryCategoryUnsupporte localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryCategoryUnsupportedModels @@ -7402,7 +7402,7 @@ func (a *SoftwarerepositoryApiService) PatchSoftwarerepositoryOperatingSystemFil localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryOperatingSystemFile @@ -7578,7 +7578,7 @@ func (a *SoftwarerepositoryApiService) PatchSoftwarerepositoryReleaseExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryRelease @@ -7754,7 +7754,7 @@ func (a *SoftwarerepositoryApiService) UpdateSoftwarerepositoryAuthorizationExec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryAuthorization @@ -7930,7 +7930,7 @@ func (a *SoftwarerepositoryApiService) UpdateSoftwarerepositoryCategoryMapperExe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryCategoryMapper @@ -8106,7 +8106,7 @@ func (a *SoftwarerepositoryApiService) UpdateSoftwarerepositoryCategoryMapperMod localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryCategoryMapperModel @@ -8282,7 +8282,7 @@ func (a *SoftwarerepositoryApiService) UpdateSoftwarerepositoryCategorySupportCo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryCategorySupportConstraint @@ -8458,7 +8458,7 @@ func (a *SoftwarerepositoryApiService) UpdateSoftwarerepositoryCategoryUnsupport localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryCategoryUnsupportedModels @@ -8634,7 +8634,7 @@ func (a *SoftwarerepositoryApiService) UpdateSoftwarerepositoryOperatingSystemFi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryOperatingSystemFile @@ -8810,7 +8810,7 @@ func (a *SoftwarerepositoryApiService) UpdateSoftwarerepositoryReleaseExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryRelease diff --git a/intersight_gosdk/api_sol.go b/intersight_gosdk/api_sol.go index 843b3d95c3..98d1648e03 100644 --- a/intersight_gosdk/api_sol.go +++ b/intersight_gosdk/api_sol.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *SolApiService) CreateSolPolicyExecute(r ApiCreateSolPolicyRequest) (*So localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.solPolicy @@ -777,52 +777,52 @@ func (a *SolApiService) GetSolPolicyInventoryListExecute(r ApiGetSolPolicyInvent localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *SolApiService) GetSolPolicyListExecute(r ApiGetSolPolicyListRequest) (* localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1288,7 +1288,7 @@ func (a *SolApiService) PatchSolPolicyExecute(r ApiPatchSolPolicyRequest) (*SolP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.solPolicy @@ -1464,7 +1464,7 @@ func (a *SolApiService) UpdateSolPolicyExecute(r ApiUpdateSolPolicyRequest) (*So localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.solPolicy diff --git a/intersight_gosdk/api_ssh.go b/intersight_gosdk/api_ssh.go index aad8db7e23..d69568e8a9 100644 --- a/intersight_gosdk/api_ssh.go +++ b/intersight_gosdk/api_ssh.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *SshApiService) CreateSshPolicyExecute(r ApiCreateSshPolicyRequest) (*Ss localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.sshPolicy @@ -777,52 +777,52 @@ func (a *SshApiService) GetSshPolicyInventoryListExecute(r ApiGetSshPolicyInvent localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *SshApiService) GetSshPolicyListExecute(r ApiGetSshPolicyListRequest) (* localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1288,7 +1288,7 @@ func (a *SshApiService) PatchSshPolicyExecute(r ApiPatchSshPolicyRequest) (*SshP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.sshPolicy @@ -1464,7 +1464,7 @@ func (a *SshApiService) UpdateSshPolicyExecute(r ApiUpdateSshPolicyRequest) (*Ss localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.sshPolicy diff --git a/intersight_gosdk/api_storage.go b/intersight_gosdk/api_storage.go index b91c02b438..d2483ceaa7 100644 --- a/intersight_gosdk/api_storage.go +++ b/intersight_gosdk/api_storage.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *StorageApiService) CreateStorageDriveGroupExecute(r ApiCreateStorageDri localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.storageDriveGroup @@ -291,10 +291,10 @@ func (a *StorageApiService) CreateStorageDriveSecurityPolicyExecute(r ApiCreateS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.storageDriveSecurityPolicy @@ -473,10 +473,10 @@ func (a *StorageApiService) CreateStorageStoragePolicyExecute(r ApiCreateStorage localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.storageStoragePolicy @@ -1271,52 +1271,52 @@ func (a *StorageApiService) GetStorageBatteryBackupUnitListExecute(r ApiGetStora localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1854,52 +1854,52 @@ func (a *StorageApiService) GetStorageControllerDriveListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2129,52 +2129,52 @@ func (a *StorageApiService) GetStorageControllerListExecute(r ApiGetStorageContr localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2558,52 +2558,52 @@ func (a *StorageApiService) GetStorageDiskGroupListExecute(r ApiGetStorageDiskGr localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2987,52 +2987,52 @@ func (a *StorageApiService) GetStorageDiskSlotListExecute(r ApiGetStorageDiskSlo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3416,52 +3416,52 @@ func (a *StorageApiService) GetStorageDriveGroupListExecute(r ApiGetStorageDrive localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3845,52 +3845,52 @@ func (a *StorageApiService) GetStorageDriveSecurityPolicyListExecute(r ApiGetSto localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4428,52 +4428,52 @@ func (a *StorageApiService) GetStorageEnclosureDiskListExecute(r ApiGetStorageEn localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4857,52 +4857,52 @@ func (a *StorageApiService) GetStorageEnclosureDiskSlotEpListExecute(r ApiGetSto localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5132,52 +5132,52 @@ func (a *StorageApiService) GetStorageEnclosureListExecute(r ApiGetStorageEnclos localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5561,52 +5561,52 @@ func (a *StorageApiService) GetStorageFileItemListExecute(r ApiGetStorageFileIte localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5990,52 +5990,52 @@ func (a *StorageApiService) GetStorageFlexFlashControllerListExecute(r ApiGetSto localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6419,52 +6419,52 @@ func (a *StorageApiService) GetStorageFlexFlashControllerPropsListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6848,52 +6848,52 @@ func (a *StorageApiService) GetStorageFlexFlashPhysicalDriveListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7277,52 +7277,52 @@ func (a *StorageApiService) GetStorageFlexFlashVirtualDriveListExecute(r ApiGetS localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7706,52 +7706,52 @@ func (a *StorageApiService) GetStorageFlexUtilControllerListExecute(r ApiGetStor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8135,52 +8135,52 @@ func (a *StorageApiService) GetStorageFlexUtilPhysicalDriveListExecute(r ApiGetS localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8564,52 +8564,52 @@ func (a *StorageApiService) GetStorageFlexUtilVirtualDriveListExecute(r ApiGetSt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8993,52 +8993,52 @@ func (a *StorageApiService) GetStorageHitachiArrayListExecute(r ApiGetStorageHit localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9422,52 +9422,52 @@ func (a *StorageApiService) GetStorageHitachiControllerListExecute(r ApiGetStora localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9851,52 +9851,52 @@ func (a *StorageApiService) GetStorageHitachiDiskListExecute(r ApiGetStorageHita localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10280,52 +10280,52 @@ func (a *StorageApiService) GetStorageHitachiExternalParityGroupListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10709,52 +10709,52 @@ func (a *StorageApiService) GetStorageHitachiExternalPathGroupListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11138,52 +11138,52 @@ func (a *StorageApiService) GetStorageHitachiExternalStorageLunListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11567,52 +11567,52 @@ func (a *StorageApiService) GetStorageHitachiExternalStoragePortListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11996,52 +11996,52 @@ func (a *StorageApiService) GetStorageHitachiHostListExecute(r ApiGetStorageHita localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12425,52 +12425,52 @@ func (a *StorageApiService) GetStorageHitachiHostLunListExecute(r ApiGetStorageH localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12854,52 +12854,52 @@ func (a *StorageApiService) GetStorageHitachiParityGroupListExecute(r ApiGetStor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13283,52 +13283,52 @@ func (a *StorageApiService) GetStorageHitachiPoolListExecute(r ApiGetStorageHita localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13712,52 +13712,52 @@ func (a *StorageApiService) GetStorageHitachiPortListExecute(r ApiGetStorageHita localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14141,52 +14141,52 @@ func (a *StorageApiService) GetStorageHitachiRemoteCopyPairGadListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14570,52 +14570,52 @@ func (a *StorageApiService) GetStorageHitachiRemoteCopyPairTcListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14999,52 +14999,52 @@ func (a *StorageApiService) GetStorageHitachiRemoteCopyPairUrListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15428,52 +15428,52 @@ func (a *StorageApiService) GetStorageHitachiRemoteReplicationListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15857,52 +15857,52 @@ func (a *StorageApiService) GetStorageHitachiSnapshotListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16286,52 +16286,52 @@ func (a *StorageApiService) GetStorageHitachiVolumeListExecute(r ApiGetStorageHi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16715,52 +16715,52 @@ func (a *StorageApiService) GetStorageHitachiVolumeMigrationPairListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17144,52 +17144,52 @@ func (a *StorageApiService) GetStorageHyperFlexStorageContainerListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17573,52 +17573,52 @@ func (a *StorageApiService) GetStorageHyperFlexVolumeListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18002,52 +18002,52 @@ func (a *StorageApiService) GetStorageItemListExecute(r ApiGetStorageItemListReq localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18585,52 +18585,52 @@ func (a *StorageApiService) GetStorageNetAppAggregateEventListExecute(r ApiGetSt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18860,52 +18860,52 @@ func (a *StorageApiService) GetStorageNetAppAggregateListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19289,52 +19289,52 @@ func (a *StorageApiService) GetStorageNetAppBaseDiskListExecute(r ApiGetStorageN localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19718,52 +19718,52 @@ func (a *StorageApiService) GetStorageNetAppCifsServiceListExecute(r ApiGetStora localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20147,52 +20147,52 @@ func (a *StorageApiService) GetStorageNetAppCifsShareListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20576,52 +20576,52 @@ func (a *StorageApiService) GetStorageNetAppCloudTargetListExecute(r ApiGetStora localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21159,52 +21159,52 @@ func (a *StorageApiService) GetStorageNetAppClusterEventListExecute(r ApiGetStor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21434,52 +21434,52 @@ func (a *StorageApiService) GetStorageNetAppClusterListExecute(r ApiGetStorageNe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21863,52 +21863,52 @@ func (a *StorageApiService) GetStorageNetAppClusterSnapMirrorPolicyListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22292,52 +22292,52 @@ func (a *StorageApiService) GetStorageNetAppClusterSnapshotPolicyListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22875,52 +22875,52 @@ func (a *StorageApiService) GetStorageNetAppDataIpInterfaceEventListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23150,52 +23150,52 @@ func (a *StorageApiService) GetStorageNetAppDataIpInterfaceListExecute(r ApiGetS localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23579,52 +23579,52 @@ func (a *StorageApiService) GetStorageNetAppDiskEventListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24162,52 +24162,52 @@ func (a *StorageApiService) GetStorageNetAppEthernetPortEventListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24437,52 +24437,52 @@ func (a *StorageApiService) GetStorageNetAppEthernetPortListExecute(r ApiGetStor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24866,52 +24866,52 @@ func (a *StorageApiService) GetStorageNetAppExportPolicyListExecute(r ApiGetStor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25449,52 +25449,52 @@ func (a *StorageApiService) GetStorageNetAppFcInterfaceEventListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25724,52 +25724,52 @@ func (a *StorageApiService) GetStorageNetAppFcInterfaceListExecute(r ApiGetStora localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26307,52 +26307,52 @@ func (a *StorageApiService) GetStorageNetAppFcPortEventListExecute(r ApiGetStora localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26582,52 +26582,52 @@ func (a *StorageApiService) GetStorageNetAppFcPortListExecute(r ApiGetStorageNet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27011,52 +27011,52 @@ func (a *StorageApiService) GetStorageNetAppInitiatorGroupListExecute(r ApiGetSt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27598,52 +27598,52 @@ func (a *StorageApiService) GetStorageNetAppIpInterfaceEventListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27877,52 +27877,52 @@ func (a *StorageApiService) GetStorageNetAppIpInterfaceListExecute(r ApiGetStora localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28306,52 +28306,52 @@ func (a *StorageApiService) GetStorageNetAppIscsiServiceListExecute(r ApiGetStor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28735,52 +28735,52 @@ func (a *StorageApiService) GetStorageNetAppLicenseListExecute(r ApiGetStorageNe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29318,52 +29318,52 @@ func (a *StorageApiService) GetStorageNetAppLunEventListExecute(r ApiGetStorageN localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29593,52 +29593,52 @@ func (a *StorageApiService) GetStorageNetAppLunListExecute(r ApiGetStorageNetApp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -30022,52 +30022,52 @@ func (a *StorageApiService) GetStorageNetAppLunMapListExecute(r ApiGetStorageNet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -30451,52 +30451,52 @@ func (a *StorageApiService) GetStorageNetAppNamespaceListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -30880,52 +30880,52 @@ func (a *StorageApiService) GetStorageNetAppNfsClientListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -31309,52 +31309,52 @@ func (a *StorageApiService) GetStorageNetAppNfsServiceListExecute(r ApiGetStorag localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -31892,52 +31892,52 @@ func (a *StorageApiService) GetStorageNetAppNodeCdpNeighborListExecute(r ApiGetS localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -32321,52 +32321,52 @@ func (a *StorageApiService) GetStorageNetAppNodeEventListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -32596,52 +32596,52 @@ func (a *StorageApiService) GetStorageNetAppNodeListExecute(r ApiGetStorageNetAp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -33179,52 +33179,52 @@ func (a *StorageApiService) GetStorageNetAppNonDataIpInterfaceEventListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -33454,52 +33454,52 @@ func (a *StorageApiService) GetStorageNetAppNonDataIpInterfaceListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -33883,52 +33883,52 @@ func (a *StorageApiService) GetStorageNetAppNtpServerListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -34312,52 +34312,52 @@ func (a *StorageApiService) GetStorageNetAppQtreeListExecute(r ApiGetStorageNetA localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -34741,52 +34741,52 @@ func (a *StorageApiService) GetStorageNetAppScheduleListExecute(r ApiGetStorageN localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -35170,52 +35170,52 @@ func (a *StorageApiService) GetStorageNetAppSensorListExecute(r ApiGetStorageNet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -35599,52 +35599,52 @@ func (a *StorageApiService) GetStorageNetAppSnapMirrorRelationshipListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -36028,52 +36028,52 @@ func (a *StorageApiService) GetStorageNetAppStorageVmListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -36457,52 +36457,52 @@ func (a *StorageApiService) GetStorageNetAppSvmEventListExecute(r ApiGetStorageN localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -36886,52 +36886,52 @@ func (a *StorageApiService) GetStorageNetAppSvmSnapMirrorPolicyListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -37315,52 +37315,52 @@ func (a *StorageApiService) GetStorageNetAppSvmSnapshotPolicyListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -37898,52 +37898,52 @@ func (a *StorageApiService) GetStorageNetAppVolumeEventListExecute(r ApiGetStora localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -38173,52 +38173,52 @@ func (a *StorageApiService) GetStorageNetAppVolumeListExecute(r ApiGetStorageNet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -38602,52 +38602,52 @@ func (a *StorageApiService) GetStorageNetAppVolumeSnapshotListExecute(r ApiGetSt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -39031,52 +39031,52 @@ func (a *StorageApiService) GetStorageNvmeRaidConfigurationListExecute(r ApiGetS localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -39614,52 +39614,52 @@ func (a *StorageApiService) GetStoragePhysicalDiskExtensionListExecute(r ApiGetS localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -39889,52 +39889,52 @@ func (a *StorageApiService) GetStoragePhysicalDiskListExecute(r ApiGetStoragePhy localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -40318,52 +40318,52 @@ func (a *StorageApiService) GetStoragePhysicalDiskUsageListExecute(r ApiGetStora localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -40747,52 +40747,52 @@ func (a *StorageApiService) GetStoragePureArrayAlertsListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -41176,52 +41176,52 @@ func (a *StorageApiService) GetStoragePureArrayListExecute(r ApiGetStoragePureAr localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -41605,52 +41605,52 @@ func (a *StorageApiService) GetStoragePureControllerListExecute(r ApiGetStorageP localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -42034,52 +42034,52 @@ func (a *StorageApiService) GetStoragePureDiskListExecute(r ApiGetStoragePureDis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -42617,52 +42617,52 @@ func (a *StorageApiService) GetStoragePureHostGroupListExecute(r ApiGetStoragePu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -42892,52 +42892,52 @@ func (a *StorageApiService) GetStoragePureHostListExecute(r ApiGetStoragePureHos localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -43321,52 +43321,52 @@ func (a *StorageApiService) GetStoragePureHostLunListExecute(r ApiGetStoragePure localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -43750,52 +43750,52 @@ func (a *StorageApiService) GetStoragePurePortListExecute(r ApiGetStoragePurePor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -44179,52 +44179,52 @@ func (a *StorageApiService) GetStoragePureProtectionGroupListExecute(r ApiGetSto localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -44608,52 +44608,52 @@ func (a *StorageApiService) GetStoragePureProtectionGroupSnapshotListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -45037,52 +45037,52 @@ func (a *StorageApiService) GetStoragePureReplicationScheduleListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -45466,52 +45466,52 @@ func (a *StorageApiService) GetStoragePureSnapshotScheduleListExecute(r ApiGetSt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -45895,52 +45895,52 @@ func (a *StorageApiService) GetStoragePureTargetArrayListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -46324,52 +46324,52 @@ func (a *StorageApiService) GetStoragePureVolumeListExecute(r ApiGetStoragePureV localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -46753,52 +46753,52 @@ func (a *StorageApiService) GetStoragePureVolumeSnapshotListExecute(r ApiGetStor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -47182,52 +47182,52 @@ func (a *StorageApiService) GetStorageSasExpanderListExecute(r ApiGetStorageSasE localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -47611,52 +47611,52 @@ func (a *StorageApiService) GetStorageSasPortListExecute(r ApiGetStorageSasPortL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -48040,52 +48040,52 @@ func (a *StorageApiService) GetStorageSpanListExecute(r ApiGetStorageSpanListReq localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -48469,52 +48469,52 @@ func (a *StorageApiService) GetStorageStoragePolicyListExecute(r ApiGetStorageSt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -48898,52 +48898,52 @@ func (a *StorageApiService) GetStorageVdMemberEpListExecute(r ApiGetStorageVdMem localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -49481,52 +49481,52 @@ func (a *StorageApiService) GetStorageVirtualDriveContainerListExecute(r ApiGetS localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -49910,52 +49910,52 @@ func (a *StorageApiService) GetStorageVirtualDriveExtensionListExecute(r ApiGetS localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -50339,52 +50339,52 @@ func (a *StorageApiService) GetStorageVirtualDriveIdentityListExecute(r ApiGetSt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -50614,52 +50614,52 @@ func (a *StorageApiService) GetStorageVirtualDriveListExecute(r ApiGetStorageVir localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -50850,7 +50850,7 @@ func (a *StorageApiService) PatchStorageBatteryBackupUnitExecute(r ApiPatchStora localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageBatteryBackupUnit @@ -51026,7 +51026,7 @@ func (a *StorageApiService) PatchStorageControllerExecute(r ApiPatchStorageContr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageController @@ -51202,7 +51202,7 @@ func (a *StorageApiService) PatchStorageDiskGroupExecute(r ApiPatchStorageDiskGr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageDiskGroup @@ -51378,7 +51378,7 @@ func (a *StorageApiService) PatchStorageDriveGroupExecute(r ApiPatchStorageDrive localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageDriveGroup @@ -51554,7 +51554,7 @@ func (a *StorageApiService) PatchStorageDriveSecurityPolicyExecute(r ApiPatchSto localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageDriveSecurityPolicy @@ -51730,7 +51730,7 @@ func (a *StorageApiService) PatchStorageEnclosureExecute(r ApiPatchStorageEnclos localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageEnclosure @@ -51906,7 +51906,7 @@ func (a *StorageApiService) PatchStorageEnclosureDiskExecute(r ApiPatchStorageEn localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageEnclosureDisk @@ -52082,7 +52082,7 @@ func (a *StorageApiService) PatchStorageEnclosureDiskSlotEpExecute(r ApiPatchSto localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageEnclosureDiskSlotEp @@ -52258,7 +52258,7 @@ func (a *StorageApiService) PatchStorageFlexFlashControllerExecute(r ApiPatchSto localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexFlashController @@ -52434,7 +52434,7 @@ func (a *StorageApiService) PatchStorageFlexFlashControllerPropsExecute(r ApiPat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexFlashControllerProps @@ -52610,7 +52610,7 @@ func (a *StorageApiService) PatchStorageFlexFlashPhysicalDriveExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexFlashPhysicalDrive @@ -52786,7 +52786,7 @@ func (a *StorageApiService) PatchStorageFlexFlashVirtualDriveExecute(r ApiPatchS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexFlashVirtualDrive @@ -52962,7 +52962,7 @@ func (a *StorageApiService) PatchStorageFlexUtilControllerExecute(r ApiPatchStor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexUtilController @@ -53138,7 +53138,7 @@ func (a *StorageApiService) PatchStorageFlexUtilPhysicalDriveExecute(r ApiPatchS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexUtilPhysicalDrive @@ -53314,7 +53314,7 @@ func (a *StorageApiService) PatchStorageFlexUtilVirtualDriveExecute(r ApiPatchSt localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexUtilVirtualDrive @@ -53490,7 +53490,7 @@ func (a *StorageApiService) PatchStorageHitachiArrayExecute(r ApiPatchStorageHit localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageHitachiArray @@ -53666,7 +53666,7 @@ func (a *StorageApiService) PatchStorageNetAppClusterExecute(r ApiPatchStorageNe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageNetAppCluster @@ -53842,7 +53842,7 @@ func (a *StorageApiService) PatchStoragePhysicalDiskExecute(r ApiPatchStoragePhy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storagePhysicalDisk @@ -54018,7 +54018,7 @@ func (a *StorageApiService) PatchStoragePhysicalDiskExtensionExecute(r ApiPatchS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storagePhysicalDiskExtension @@ -54194,7 +54194,7 @@ func (a *StorageApiService) PatchStoragePhysicalDiskUsageExecute(r ApiPatchStora localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storagePhysicalDiskUsage @@ -54370,7 +54370,7 @@ func (a *StorageApiService) PatchStoragePureArrayExecute(r ApiPatchStoragePureAr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storagePureArray @@ -54546,7 +54546,7 @@ func (a *StorageApiService) PatchStorageSasExpanderExecute(r ApiPatchStorageSasE localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageSasExpander @@ -54722,7 +54722,7 @@ func (a *StorageApiService) PatchStorageSasPortExecute(r ApiPatchStorageSasPortR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageSasPort @@ -54898,7 +54898,7 @@ func (a *StorageApiService) PatchStorageSpanExecute(r ApiPatchStorageSpanRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageSpan @@ -55074,7 +55074,7 @@ func (a *StorageApiService) PatchStorageStoragePolicyExecute(r ApiPatchStorageSt localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageStoragePolicy @@ -55250,7 +55250,7 @@ func (a *StorageApiService) PatchStorageVdMemberEpExecute(r ApiPatchStorageVdMem localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageVdMemberEp @@ -55426,7 +55426,7 @@ func (a *StorageApiService) PatchStorageVirtualDriveExecute(r ApiPatchStorageVir localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageVirtualDrive @@ -55602,7 +55602,7 @@ func (a *StorageApiService) PatchStorageVirtualDriveContainerExecute(r ApiPatchS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageVirtualDriveContainer @@ -55778,7 +55778,7 @@ func (a *StorageApiService) PatchStorageVirtualDriveExtensionExecute(r ApiPatchS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageVirtualDriveExtension @@ -55954,7 +55954,7 @@ func (a *StorageApiService) UpdateStorageBatteryBackupUnitExecute(r ApiUpdateSto localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageBatteryBackupUnit @@ -56130,7 +56130,7 @@ func (a *StorageApiService) UpdateStorageControllerExecute(r ApiUpdateStorageCon localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageController @@ -56306,7 +56306,7 @@ func (a *StorageApiService) UpdateStorageDiskGroupExecute(r ApiUpdateStorageDisk localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageDiskGroup @@ -56482,7 +56482,7 @@ func (a *StorageApiService) UpdateStorageDriveGroupExecute(r ApiUpdateStorageDri localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageDriveGroup @@ -56658,7 +56658,7 @@ func (a *StorageApiService) UpdateStorageDriveSecurityPolicyExecute(r ApiUpdateS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageDriveSecurityPolicy @@ -56834,7 +56834,7 @@ func (a *StorageApiService) UpdateStorageEnclosureExecute(r ApiUpdateStorageEncl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageEnclosure @@ -57010,7 +57010,7 @@ func (a *StorageApiService) UpdateStorageEnclosureDiskExecute(r ApiUpdateStorage localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageEnclosureDisk @@ -57186,7 +57186,7 @@ func (a *StorageApiService) UpdateStorageEnclosureDiskSlotEpExecute(r ApiUpdateS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageEnclosureDiskSlotEp @@ -57362,7 +57362,7 @@ func (a *StorageApiService) UpdateStorageFlexFlashControllerExecute(r ApiUpdateS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexFlashController @@ -57538,7 +57538,7 @@ func (a *StorageApiService) UpdateStorageFlexFlashControllerPropsExecute(r ApiUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexFlashControllerProps @@ -57714,7 +57714,7 @@ func (a *StorageApiService) UpdateStorageFlexFlashPhysicalDriveExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexFlashPhysicalDrive @@ -57890,7 +57890,7 @@ func (a *StorageApiService) UpdateStorageFlexFlashVirtualDriveExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexFlashVirtualDrive @@ -58066,7 +58066,7 @@ func (a *StorageApiService) UpdateStorageFlexUtilControllerExecute(r ApiUpdateSt localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexUtilController @@ -58242,7 +58242,7 @@ func (a *StorageApiService) UpdateStorageFlexUtilPhysicalDriveExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexUtilPhysicalDrive @@ -58418,7 +58418,7 @@ func (a *StorageApiService) UpdateStorageFlexUtilVirtualDriveExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexUtilVirtualDrive @@ -58594,7 +58594,7 @@ func (a *StorageApiService) UpdateStorageHitachiArrayExecute(r ApiUpdateStorageH localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageHitachiArray @@ -58770,7 +58770,7 @@ func (a *StorageApiService) UpdateStorageNetAppClusterExecute(r ApiUpdateStorage localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageNetAppCluster @@ -58946,7 +58946,7 @@ func (a *StorageApiService) UpdateStoragePhysicalDiskExecute(r ApiUpdateStorageP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storagePhysicalDisk @@ -59122,7 +59122,7 @@ func (a *StorageApiService) UpdateStoragePhysicalDiskExtensionExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storagePhysicalDiskExtension @@ -59298,7 +59298,7 @@ func (a *StorageApiService) UpdateStoragePhysicalDiskUsageExecute(r ApiUpdateSto localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storagePhysicalDiskUsage @@ -59474,7 +59474,7 @@ func (a *StorageApiService) UpdateStoragePureArrayExecute(r ApiUpdateStoragePure localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storagePureArray @@ -59650,7 +59650,7 @@ func (a *StorageApiService) UpdateStorageSasExpanderExecute(r ApiUpdateStorageSa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageSasExpander @@ -59826,7 +59826,7 @@ func (a *StorageApiService) UpdateStorageSasPortExecute(r ApiUpdateStorageSasPor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageSasPort @@ -60002,7 +60002,7 @@ func (a *StorageApiService) UpdateStorageSpanExecute(r ApiUpdateStorageSpanReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageSpan @@ -60178,7 +60178,7 @@ func (a *StorageApiService) UpdateStorageStoragePolicyExecute(r ApiUpdateStorage localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageStoragePolicy @@ -60354,7 +60354,7 @@ func (a *StorageApiService) UpdateStorageVdMemberEpExecute(r ApiUpdateStorageVdM localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageVdMemberEp @@ -60530,7 +60530,7 @@ func (a *StorageApiService) UpdateStorageVirtualDriveExecute(r ApiUpdateStorageV localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageVirtualDrive @@ -60706,7 +60706,7 @@ func (a *StorageApiService) UpdateStorageVirtualDriveContainerExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageVirtualDriveContainer @@ -60882,7 +60882,7 @@ func (a *StorageApiService) UpdateStorageVirtualDriveExtensionExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageVirtualDriveExtension diff --git a/intersight_gosdk/api_syslog.go b/intersight_gosdk/api_syslog.go index 9a77492ac8..3fcc9bf803 100644 --- a/intersight_gosdk/api_syslog.go +++ b/intersight_gosdk/api_syslog.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *SyslogApiService) CreateSyslogPolicyExecute(r ApiCreateSyslogPolicyRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.syslogPolicy @@ -777,52 +777,52 @@ func (a *SyslogApiService) GetSyslogPolicyInventoryListExecute(r ApiGetSyslogPol localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *SyslogApiService) GetSyslogPolicyListExecute(r ApiGetSyslogPolicyListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1288,7 +1288,7 @@ func (a *SyslogApiService) PatchSyslogPolicyExecute(r ApiPatchSyslogPolicyReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.syslogPolicy @@ -1464,7 +1464,7 @@ func (a *SyslogApiService) UpdateSyslogPolicyExecute(r ApiUpdateSyslogPolicyRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.syslogPolicy diff --git a/intersight_gosdk/api_tam.go b/intersight_gosdk/api_tam.go index 5c09187193..1ac271b9fe 100644 --- a/intersight_gosdk/api_tam.go +++ b/intersight_gosdk/api_tam.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *TamApiService) CreateTamAdvisoryCountExecute(r ApiCreateTamAdvisoryCoun localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.tamAdvisoryCount @@ -291,10 +291,10 @@ func (a *TamApiService) CreateTamAdvisoryDefinitionExecute(r ApiCreateTamAdvisor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.tamAdvisoryDefinition @@ -473,10 +473,10 @@ func (a *TamApiService) CreateTamAdvisoryInfoExecute(r ApiCreateTamAdvisoryInfoR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.tamAdvisoryInfo @@ -655,10 +655,10 @@ func (a *TamApiService) CreateTamAdvisoryInstanceExecute(r ApiCreateTamAdvisoryI localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.tamAdvisoryInstance @@ -837,10 +837,10 @@ func (a *TamApiService) CreateTamSecurityAdvisoryExecute(r ApiCreateTamSecurityA localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.tamSecurityAdvisory @@ -1919,52 +1919,52 @@ func (a *TamApiService) GetTamAdvisoryCountListExecute(r ApiGetTamAdvisoryCountL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2348,52 +2348,52 @@ func (a *TamApiService) GetTamAdvisoryDefinitionListExecute(r ApiGetTamAdvisoryD localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2777,52 +2777,52 @@ func (a *TamApiService) GetTamAdvisoryInfoListExecute(r ApiGetTamAdvisoryInfoLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3206,52 +3206,52 @@ func (a *TamApiService) GetTamAdvisoryInstanceListExecute(r ApiGetTamAdvisoryIns localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3635,52 +3635,52 @@ func (a *TamApiService) GetTamSecurityAdvisoryListExecute(r ApiGetTamSecurityAdv localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3871,7 +3871,7 @@ func (a *TamApiService) PatchTamAdvisoryCountExecute(r ApiPatchTamAdvisoryCountR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.tamAdvisoryCount @@ -4047,7 +4047,7 @@ func (a *TamApiService) PatchTamAdvisoryDefinitionExecute(r ApiPatchTamAdvisoryD localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.tamAdvisoryDefinition @@ -4223,7 +4223,7 @@ func (a *TamApiService) PatchTamAdvisoryInfoExecute(r ApiPatchTamAdvisoryInfoReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.tamAdvisoryInfo @@ -4399,7 +4399,7 @@ func (a *TamApiService) PatchTamAdvisoryInstanceExecute(r ApiPatchTamAdvisoryIns localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.tamAdvisoryInstance @@ -4575,7 +4575,7 @@ func (a *TamApiService) PatchTamSecurityAdvisoryExecute(r ApiPatchTamSecurityAdv localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.tamSecurityAdvisory @@ -4751,7 +4751,7 @@ func (a *TamApiService) UpdateTamAdvisoryCountExecute(r ApiUpdateTamAdvisoryCoun localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.tamAdvisoryCount @@ -4927,7 +4927,7 @@ func (a *TamApiService) UpdateTamAdvisoryDefinitionExecute(r ApiUpdateTamAdvisor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.tamAdvisoryDefinition @@ -5103,7 +5103,7 @@ func (a *TamApiService) UpdateTamAdvisoryInfoExecute(r ApiUpdateTamAdvisoryInfoR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.tamAdvisoryInfo @@ -5279,7 +5279,7 @@ func (a *TamApiService) UpdateTamAdvisoryInstanceExecute(r ApiUpdateTamAdvisoryI localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.tamAdvisoryInstance @@ -5455,7 +5455,7 @@ func (a *TamApiService) UpdateTamSecurityAdvisoryExecute(r ApiUpdateTamSecurityA localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.tamSecurityAdvisory diff --git a/intersight_gosdk/api_task.go b/intersight_gosdk/api_task.go index 438df61b7e..b86ce073a0 100644 --- a/intersight_gosdk/api_task.go +++ b/intersight_gosdk/api_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -108,10 +108,10 @@ func (a *TaskApiService) CreateTaskFabricMosScopedInventoryExecute(r ApiCreateTa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskFabricMosScopedInventory @@ -290,10 +290,10 @@ func (a *TaskApiService) CreateTaskHitachiScopedInventoryExecute(r ApiCreateTask localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskHitachiScopedInventory @@ -472,10 +472,10 @@ func (a *TaskApiService) CreateTaskHyperFlexManagementScopedInventoryExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskHyperFlexManagementScopedInventory @@ -654,10 +654,10 @@ func (a *TaskApiService) CreateTaskHyperflexScopedInventoryExecute(r ApiCreateTa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskHyperflexScopedInventory @@ -836,10 +836,10 @@ func (a *TaskApiService) CreateTaskMdsScopedInventoryExecute(r ApiCreateTaskMdsS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskMdsScopedInventory @@ -1018,10 +1018,10 @@ func (a *TaskApiService) CreateTaskMdsSystemScopedInventoryExecute(r ApiCreateTa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskMdsSystemScopedInventory @@ -1200,10 +1200,10 @@ func (a *TaskApiService) CreateTaskMerakiScopedInventoryExecute(r ApiCreateTaskM localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskMerakiScopedInventory @@ -1382,10 +1382,10 @@ func (a *TaskApiService) CreateTaskNetAppScopedInventoryExecute(r ApiCreateTaskN localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskNetAppScopedInventory @@ -1564,10 +1564,10 @@ func (a *TaskApiService) CreateTaskNexusScopedInventoryExecute(r ApiCreateTaskNe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskNexusScopedInventory @@ -1746,10 +1746,10 @@ func (a *TaskApiService) CreateTaskNexusSystemScopedInventoryExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskNexusSystemScopedInventory @@ -1928,10 +1928,10 @@ func (a *TaskApiService) CreateTaskNexusVlanScopedInventoryExecute(r ApiCreateTa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskNexusVlanScopedInventory @@ -2110,10 +2110,10 @@ func (a *TaskApiService) CreateTaskPublicCloudScopedInventoryExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskPublicCloudScopedInventory @@ -2292,10 +2292,10 @@ func (a *TaskApiService) CreateTaskPureScopedInventoryExecute(r ApiCreateTaskPur localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskPureScopedInventory @@ -2474,10 +2474,10 @@ func (a *TaskApiService) CreateTaskServerScopedInventoryExecute(r ApiCreateTaskS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskServerScopedInventory diff --git a/intersight_gosdk/api_techsupportmanagement.go b/intersight_gosdk/api_techsupportmanagement.go index 87de51855e..a3b6ab4d68 100644 --- a/intersight_gosdk/api_techsupportmanagement.go +++ b/intersight_gosdk/api_techsupportmanagement.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *TechsupportmanagementApiService) CreateTechsupportmanagementCollectionC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.techsupportmanagementCollectionControlPolicy @@ -291,10 +291,10 @@ func (a *TechsupportmanagementApiService) CreateTechsupportmanagementTechSupport localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.techsupportmanagementTechSupportBundle @@ -947,52 +947,52 @@ func (a *TechsupportmanagementApiService) GetTechsupportmanagementCollectionCont localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1376,52 +1376,52 @@ func (a *TechsupportmanagementApiService) GetTechsupportmanagementDownloadListEx localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1805,52 +1805,52 @@ func (a *TechsupportmanagementApiService) GetTechsupportmanagementEndPointListEx localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2234,52 +2234,52 @@ func (a *TechsupportmanagementApiService) GetTechsupportmanagementTechSupportBun localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2663,52 +2663,52 @@ func (a *TechsupportmanagementApiService) GetTechsupportmanagementTechSupportSta localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2899,7 +2899,7 @@ func (a *TechsupportmanagementApiService) PatchTechsupportmanagementCollectionCo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.techsupportmanagementCollectionControlPolicy @@ -3075,7 +3075,7 @@ func (a *TechsupportmanagementApiService) UpdateTechsupportmanagementCollectionC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.techsupportmanagementCollectionControlPolicy diff --git a/intersight_gosdk/api_telemetry.go b/intersight_gosdk/api_telemetry.go index e6310b879f..20d0d19dd9 100644 --- a/intersight_gosdk/api_telemetry.go +++ b/intersight_gosdk/api_telemetry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_terminal.go b/intersight_gosdk/api_terminal.go index 8ddc8f4893..4dfc5b76f6 100644 --- a/intersight_gosdk/api_terminal.go +++ b/intersight_gosdk/api_terminal.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *TerminalApiService) GetTerminalAuditLogListExecute(r ApiGetTerminalAudi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/intersight_gosdk/api_terraform.go b/intersight_gosdk/api_terraform.go index 3e3f36c97f..ff83e7e2aa 100644 --- a/intersight_gosdk/api_terraform.go +++ b/intersight_gosdk/api_terraform.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *TerraformApiService) CreateTerraformExecutorExecute(r ApiCreateTerrafor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.terraformExecutor @@ -623,52 +623,52 @@ func (a *TerraformApiService) GetTerraformExecutorListExecute(r ApiGetTerraformE localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -859,7 +859,7 @@ func (a *TerraformApiService) PatchTerraformExecutorExecute(r ApiPatchTerraformE localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.terraformExecutor @@ -1035,7 +1035,7 @@ func (a *TerraformApiService) UpdateTerraformExecutorExecute(r ApiUpdateTerrafor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.terraformExecutor diff --git a/intersight_gosdk/api_thermal.go b/intersight_gosdk/api_thermal.go index 5c5b2324b9..9dc69a0c36 100644 --- a/intersight_gosdk/api_thermal.go +++ b/intersight_gosdk/api_thermal.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *ThermalApiService) CreateThermalPolicyExecute(r ApiCreateThermalPolicyR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.thermalPolicy @@ -777,52 +777,52 @@ func (a *ThermalApiService) GetThermalPolicyInventoryListExecute(r ApiGetThermal localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *ThermalApiService) GetThermalPolicyListExecute(r ApiGetThermalPolicyLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1288,7 +1288,7 @@ func (a *ThermalApiService) PatchThermalPolicyExecute(r ApiPatchThermalPolicyReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.thermalPolicy @@ -1464,7 +1464,7 @@ func (a *ThermalApiService) UpdateThermalPolicyExecute(r ApiUpdateThermalPolicyR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.thermalPolicy diff --git a/intersight_gosdk/api_top.go b/intersight_gosdk/api_top.go index 3120861854..332cd552fa 100644 --- a/intersight_gosdk/api_top.go +++ b/intersight_gosdk/api_top.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *TopApiService) GetTopSystemListExecute(r ApiGetTopSystemListRequest) (* localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -535,7 +535,7 @@ func (a *TopApiService) PatchTopSystemExecute(r ApiPatchTopSystemRequest) (*TopS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.topSystem @@ -711,7 +711,7 @@ func (a *TopApiService) UpdateTopSystemExecute(r ApiUpdateTopSystemRequest) (*To localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.topSystem diff --git a/intersight_gosdk/api_ucsd.go b/intersight_gosdk/api_ucsd.go index 0f59f4ca8d..77f1a95c72 100644 --- a/intersight_gosdk/api_ucsd.go +++ b/intersight_gosdk/api_ucsd.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -441,52 +441,52 @@ func (a *UcsdApiService) GetUcsdBackupInfoListExecute(r ApiGetUcsdBackupInfoList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/intersight_gosdk/api_uuidpool.go b/intersight_gosdk/api_uuidpool.go index 265b619e08..b0b3993663 100644 --- a/intersight_gosdk/api_uuidpool.go +++ b/intersight_gosdk/api_uuidpool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *UuidpoolApiService) CreateUuidpoolPoolExecute(r ApiCreateUuidpoolPoolRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.uuidpoolPool @@ -291,10 +291,10 @@ func (a *UuidpoolApiService) CreateUuidpoolReservationExecute(r ApiCreateUuidpoo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.uuidpoolReservation @@ -1089,52 +1089,52 @@ func (a *UuidpoolApiService) GetUuidpoolBlockListExecute(r ApiGetUuidpoolBlockLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1518,52 +1518,52 @@ func (a *UuidpoolApiService) GetUuidpoolPoolListExecute(r ApiGetUuidpoolPoolList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1947,52 +1947,52 @@ func (a *UuidpoolApiService) GetUuidpoolPoolMemberListExecute(r ApiGetUuidpoolPo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2376,52 +2376,52 @@ func (a *UuidpoolApiService) GetUuidpoolReservationListExecute(r ApiGetUuidpoolR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2805,52 +2805,52 @@ func (a *UuidpoolApiService) GetUuidpoolUniverseListExecute(r ApiGetUuidpoolUniv localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3234,52 +3234,52 @@ func (a *UuidpoolApiService) GetUuidpoolUuidLeaseListExecute(r ApiGetUuidpoolUui localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3470,7 +3470,7 @@ func (a *UuidpoolApiService) PatchUuidpoolPoolExecute(r ApiPatchUuidpoolPoolRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.uuidpoolPool @@ -3646,7 +3646,7 @@ func (a *UuidpoolApiService) UpdateUuidpoolPoolExecute(r ApiUpdateUuidpoolPoolRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.uuidpoolPool diff --git a/intersight_gosdk/api_view.go b/intersight_gosdk/api_view.go index ab2371d571..7a6d996a28 100644 --- a/intersight_gosdk/api_view.go +++ b/intersight_gosdk/api_view.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *ViewApiService) GetViewHealthStatusListExecute(r ApiGetViewHealthStatus localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *ViewApiService) GetViewServerListExecute(r ApiGetViewServerListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/intersight_gosdk/api_virtualization.go b/intersight_gosdk/api_virtualization.go index fc66674332..71b8e5d5b2 100644 --- a/intersight_gosdk/api_virtualization.go +++ b/intersight_gosdk/api_virtualization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *VirtualizationApiService) CreateVirtualizationEsxiConsoleExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.virtualizationEsxiConsole @@ -291,10 +291,10 @@ func (a *VirtualizationApiService) CreateVirtualizationVirtualMachineExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVirtualMachine @@ -805,52 +805,52 @@ func (a *VirtualizationApiService) GetVirtualizationEsxiConsoleListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1234,52 +1234,52 @@ func (a *VirtualizationApiService) GetVirtualizationHostListExecute(r ApiGetVirt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1663,52 +1663,52 @@ func (a *VirtualizationApiService) GetVirtualizationVirtualMachineListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2092,52 +2092,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareClusterListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2521,52 +2521,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareDatacenterListExecute( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3104,52 +3104,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareDatastoreClusterListEx localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3379,52 +3379,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareDatastoreListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3808,52 +3808,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareDistributedNetworkList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4237,52 +4237,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareDistributedSwitchListE localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4666,52 +4666,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareFolderListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5249,52 +5249,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareHostGpuListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5524,52 +5524,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareHostListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5953,52 +5953,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareKernelNetworkListExecu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6382,52 +6382,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareNetworkListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6811,52 +6811,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwarePhysicalNetworkInterfa localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7240,52 +7240,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareProactiveHaListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7669,52 +7669,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareUplinkPortListExecute( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8098,52 +8098,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareVcenterListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8527,52 +8527,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareVirtualDiskListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9110,52 +9110,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareVirtualMachineGpuListE localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9385,52 +9385,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareVirtualMachineListExec localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9814,52 +9814,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareVirtualMachineSnapshot localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10243,52 +10243,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareVirtualNetworkInterfac localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10672,52 +10672,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareVirtualSwitchListExecu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10908,7 +10908,7 @@ func (a *VirtualizationApiService) PatchVirtualizationEsxiConsoleExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationEsxiConsole @@ -11084,7 +11084,7 @@ func (a *VirtualizationApiService) PatchVirtualizationHostExecute(r ApiPatchVirt localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationHost @@ -11260,7 +11260,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVirtualMachineExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVirtualMachine @@ -11436,7 +11436,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareClusterExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareCluster @@ -11612,7 +11612,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareDatacenterExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareDatacenter @@ -11788,7 +11788,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareDatastoreExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareDatastore @@ -11964,7 +11964,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareDatastoreClusterExec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareDatastoreCluster @@ -12140,7 +12140,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareDistributedNetworkEx localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareDistributedNetwork @@ -12316,7 +12316,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareDistributedSwitchExe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareDistributedSwitch @@ -12492,7 +12492,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareFolderExecute(r ApiP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareFolder @@ -12668,7 +12668,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareHostExecute(r ApiPat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareHost @@ -12844,7 +12844,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareKernelNetworkExecute localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareKernelNetwork @@ -13020,7 +13020,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareNetworkExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareNetwork @@ -13196,7 +13196,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwarePhysicalNetworkInter localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwarePhysicalNetworkInterface @@ -13372,7 +13372,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareUplinkPortExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareUplinkPort @@ -13548,7 +13548,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareVirtualDiskExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareVirtualDisk @@ -13724,7 +13724,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareVirtualMachineExecut localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareVirtualMachine @@ -13900,7 +13900,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareVirtualMachineSnapsh localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareVirtualMachineSnapshot @@ -14076,7 +14076,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareVirtualNetworkInterf localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareVirtualNetworkInterface @@ -14252,7 +14252,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareVirtualSwitchExecute localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareVirtualSwitch @@ -14428,7 +14428,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationEsxiConsoleExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationEsxiConsole @@ -14604,7 +14604,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationHostExecute(r ApiUpdateVi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationHost @@ -14780,7 +14780,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVirtualMachineExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVirtualMachine @@ -14956,7 +14956,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareClusterExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareCluster @@ -15132,7 +15132,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareDatacenterExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareDatacenter @@ -15308,7 +15308,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareDatastoreExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareDatastore @@ -15484,7 +15484,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareDatastoreClusterExe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareDatastoreCluster @@ -15660,7 +15660,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareDistributedNetworkE localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareDistributedNetwork @@ -15836,7 +15836,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareDistributedSwitchEx localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareDistributedSwitch @@ -16012,7 +16012,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareFolderExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareFolder @@ -16188,7 +16188,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareHostExecute(r ApiUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareHost @@ -16364,7 +16364,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareKernelNetworkExecut localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareKernelNetwork @@ -16540,7 +16540,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareNetworkExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareNetwork @@ -16716,7 +16716,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwarePhysicalNetworkInte localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwarePhysicalNetworkInterface @@ -16892,7 +16892,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareUplinkPortExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareUplinkPort @@ -17068,7 +17068,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareVirtualDiskExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareVirtualDisk @@ -17244,7 +17244,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareVirtualMachineExecu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareVirtualMachine @@ -17420,7 +17420,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareVirtualMachineSnaps localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareVirtualMachineSnapshot @@ -17596,7 +17596,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareVirtualNetworkInter localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareVirtualNetworkInterface @@ -17772,7 +17772,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareVirtualSwitchExecut localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareVirtualSwitch diff --git a/intersight_gosdk/api_vmedia.go b/intersight_gosdk/api_vmedia.go index ca3d1135ae..8fad50994f 100644 --- a/intersight_gosdk/api_vmedia.go +++ b/intersight_gosdk/api_vmedia.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *VmediaApiService) CreateVmediaPolicyExecute(r ApiCreateVmediaPolicyRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vmediaPolicy @@ -777,52 +777,52 @@ func (a *VmediaApiService) GetVmediaPolicyInventoryListExecute(r ApiGetVmediaPol localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *VmediaApiService) GetVmediaPolicyListExecute(r ApiGetVmediaPolicyListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1288,7 +1288,7 @@ func (a *VmediaApiService) PatchVmediaPolicyExecute(r ApiPatchVmediaPolicyReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vmediaPolicy @@ -1464,7 +1464,7 @@ func (a *VmediaApiService) UpdateVmediaPolicyExecute(r ApiUpdateVmediaPolicyRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vmediaPolicy diff --git a/intersight_gosdk/api_vmrc.go b/intersight_gosdk/api_vmrc.go index fd5312e70f..3127fa67ab 100644 --- a/intersight_gosdk/api_vmrc.go +++ b/intersight_gosdk/api_vmrc.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *VmrcApiService) CreateVmrcConsoleExecute(r ApiCreateVmrcConsoleRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vmrcConsole @@ -481,52 +481,52 @@ func (a *VmrcApiService) GetVmrcConsoleListExecute(r ApiGetVmrcConsoleListReques localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -717,7 +717,7 @@ func (a *VmrcApiService) PatchVmrcConsoleExecute(r ApiPatchVmrcConsoleRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vmrcConsole @@ -893,7 +893,7 @@ func (a *VmrcApiService) UpdateVmrcConsoleExecute(r ApiUpdateVmrcConsoleRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vmrcConsole diff --git a/intersight_gosdk/api_vnic.go b/intersight_gosdk/api_vnic.go index dfa079f2d2..b9e30ece6f 100644 --- a/intersight_gosdk/api_vnic.go +++ b/intersight_gosdk/api_vnic.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *VnicApiService) CreateVnicEthAdapterPolicyExecute(r ApiCreateVnicEthAda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicEthAdapterPolicy @@ -291,10 +291,10 @@ func (a *VnicApiService) CreateVnicEthIfExecute(r ApiCreateVnicEthIfRequest) (*V localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicEthIf @@ -473,10 +473,10 @@ func (a *VnicApiService) CreateVnicEthNetworkPolicyExecute(r ApiCreateVnicEthNet localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicEthNetworkPolicy @@ -655,10 +655,10 @@ func (a *VnicApiService) CreateVnicEthQosPolicyExecute(r ApiCreateVnicEthQosPoli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicEthQosPolicy @@ -837,10 +837,10 @@ func (a *VnicApiService) CreateVnicFcAdapterPolicyExecute(r ApiCreateVnicFcAdapt localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicFcAdapterPolicy @@ -1019,10 +1019,10 @@ func (a *VnicApiService) CreateVnicFcIfExecute(r ApiCreateVnicFcIfRequest) (*Vni localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicFcIf @@ -1201,10 +1201,10 @@ func (a *VnicApiService) CreateVnicFcNetworkPolicyExecute(r ApiCreateVnicFcNetwo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicFcNetworkPolicy @@ -1383,10 +1383,10 @@ func (a *VnicApiService) CreateVnicFcQosPolicyExecute(r ApiCreateVnicFcQosPolicy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicFcQosPolicy @@ -1565,10 +1565,10 @@ func (a *VnicApiService) CreateVnicIscsiAdapterPolicyExecute(r ApiCreateVnicIscs localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicIscsiAdapterPolicy @@ -1747,10 +1747,10 @@ func (a *VnicApiService) CreateVnicIscsiBootPolicyExecute(r ApiCreateVnicIscsiBo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicIscsiBootPolicy @@ -1929,10 +1929,10 @@ func (a *VnicApiService) CreateVnicIscsiStaticTargetPolicyExecute(r ApiCreateVni localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicIscsiStaticTargetPolicy @@ -2111,10 +2111,10 @@ func (a *VnicApiService) CreateVnicLanConnectivityPolicyExecute(r ApiCreateVnicL localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicLanConnectivityPolicy @@ -2293,10 +2293,10 @@ func (a *VnicApiService) CreateVnicSanConnectivityPolicyExecute(r ApiCreateVnicS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicSanConnectivityPolicy @@ -2475,10 +2475,10 @@ func (a *VnicApiService) CreateVnicVhbaTemplateExecute(r ApiCreateVnicVhbaTempla localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicVhbaTemplate @@ -2657,10 +2657,10 @@ func (a *VnicApiService) CreateVnicVnicTemplateExecute(r ApiCreateVnicVnicTempla localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicVnicTemplate @@ -5313,52 +5313,52 @@ func (a *VnicApiService) GetVnicEthAdapterPolicyInventoryListExecute(r ApiGetVni localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5588,52 +5588,52 @@ func (a *VnicApiService) GetVnicEthAdapterPolicyListExecute(r ApiGetVnicEthAdapt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6171,52 +6171,52 @@ func (a *VnicApiService) GetVnicEthIfInventoryListExecute(r ApiGetVnicEthIfInven localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6446,52 +6446,52 @@ func (a *VnicApiService) GetVnicEthIfListExecute(r ApiGetVnicEthIfListRequest) ( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7029,52 +7029,52 @@ func (a *VnicApiService) GetVnicEthNetworkPolicyInventoryListExecute(r ApiGetVni localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7304,52 +7304,52 @@ func (a *VnicApiService) GetVnicEthNetworkPolicyListExecute(r ApiGetVnicEthNetwo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7887,52 +7887,52 @@ func (a *VnicApiService) GetVnicEthQosPolicyInventoryListExecute(r ApiGetVnicEth localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8162,52 +8162,52 @@ func (a *VnicApiService) GetVnicEthQosPolicyListExecute(r ApiGetVnicEthQosPolicy localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8591,52 +8591,52 @@ func (a *VnicApiService) GetVnicEthVethInventoryListExecute(r ApiGetVnicEthVethI localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9020,52 +9020,52 @@ func (a *VnicApiService) GetVnicEthVnicInventoryListExecute(r ApiGetVnicEthVnicI localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9603,52 +9603,52 @@ func (a *VnicApiService) GetVnicFcAdapterPolicyInventoryListExecute(r ApiGetVnic localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9878,52 +9878,52 @@ func (a *VnicApiService) GetVnicFcAdapterPolicyListExecute(r ApiGetVnicFcAdapter localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10461,52 +10461,52 @@ func (a *VnicApiService) GetVnicFcIfInventoryListExecute(r ApiGetVnicFcIfInvento localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10736,52 +10736,52 @@ func (a *VnicApiService) GetVnicFcIfListExecute(r ApiGetVnicFcIfListRequest) (*V localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11319,52 +11319,52 @@ func (a *VnicApiService) GetVnicFcNetworkPolicyInventoryListExecute(r ApiGetVnic localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11594,52 +11594,52 @@ func (a *VnicApiService) GetVnicFcNetworkPolicyListExecute(r ApiGetVnicFcNetwork localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12177,52 +12177,52 @@ func (a *VnicApiService) GetVnicFcQosPolicyInventoryListExecute(r ApiGetVnicFcQo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12452,52 +12452,52 @@ func (a *VnicApiService) GetVnicFcQosPolicyListExecute(r ApiGetVnicFcQosPolicyLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12881,52 +12881,52 @@ func (a *VnicApiService) GetVnicFcVethInventoryListExecute(r ApiGetVnicFcVethInv localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13310,52 +13310,52 @@ func (a *VnicApiService) GetVnicFcVhbaPolicyInventoryListExecute(r ApiGetVnicFcV localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13893,52 +13893,52 @@ func (a *VnicApiService) GetVnicIscsiAdapterPolicyInventoryListExecute(r ApiGetV localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14168,52 +14168,52 @@ func (a *VnicApiService) GetVnicIscsiAdapterPolicyListExecute(r ApiGetVnicIscsiA localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14751,52 +14751,52 @@ func (a *VnicApiService) GetVnicIscsiBootPolicyInventoryListExecute(r ApiGetVnic localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15026,52 +15026,52 @@ func (a *VnicApiService) GetVnicIscsiBootPolicyListExecute(r ApiGetVnicIscsiBoot localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15609,52 +15609,52 @@ func (a *VnicApiService) GetVnicIscsiStaticTargetPolicyInventoryListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15884,52 +15884,52 @@ func (a *VnicApiService) GetVnicIscsiStaticTargetPolicyListExecute(r ApiGetVnicI localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16467,52 +16467,52 @@ func (a *VnicApiService) GetVnicLanConnectivityPolicyInventoryListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16742,52 +16742,52 @@ func (a *VnicApiService) GetVnicLanConnectivityPolicyListExecute(r ApiGetVnicLan localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17171,52 +17171,52 @@ func (a *VnicApiService) GetVnicLcpStatusListExecute(r ApiGetVnicLcpStatusListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17754,52 +17754,52 @@ func (a *VnicApiService) GetVnicSanConnectivityPolicyInventoryListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18029,52 +18029,52 @@ func (a *VnicApiService) GetVnicSanConnectivityPolicyListExecute(r ApiGetVnicSan localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18458,52 +18458,52 @@ func (a *VnicApiService) GetVnicScpStatusListExecute(r ApiGetVnicScpStatusListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18887,52 +18887,52 @@ func (a *VnicApiService) GetVnicVhbaTemplateListExecute(r ApiGetVnicVhbaTemplate localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19316,52 +19316,52 @@ func (a *VnicApiService) GetVnicVnicTemplateListExecute(r ApiGetVnicVnicTemplate localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19552,7 +19552,7 @@ func (a *VnicApiService) PatchVnicEthAdapterPolicyExecute(r ApiPatchVnicEthAdapt localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicEthAdapterPolicy @@ -19728,7 +19728,7 @@ func (a *VnicApiService) PatchVnicEthIfExecute(r ApiPatchVnicEthIfRequest) (*Vni localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicEthIf @@ -19904,7 +19904,7 @@ func (a *VnicApiService) PatchVnicEthNetworkPolicyExecute(r ApiPatchVnicEthNetwo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicEthNetworkPolicy @@ -20080,7 +20080,7 @@ func (a *VnicApiService) PatchVnicEthQosPolicyExecute(r ApiPatchVnicEthQosPolicy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicEthQosPolicy @@ -20256,7 +20256,7 @@ func (a *VnicApiService) PatchVnicFcAdapterPolicyExecute(r ApiPatchVnicFcAdapter localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicFcAdapterPolicy @@ -20432,7 +20432,7 @@ func (a *VnicApiService) PatchVnicFcIfExecute(r ApiPatchVnicFcIfRequest) (*VnicF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicFcIf @@ -20608,7 +20608,7 @@ func (a *VnicApiService) PatchVnicFcNetworkPolicyExecute(r ApiPatchVnicFcNetwork localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicFcNetworkPolicy @@ -20784,7 +20784,7 @@ func (a *VnicApiService) PatchVnicFcQosPolicyExecute(r ApiPatchVnicFcQosPolicyRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicFcQosPolicy @@ -20960,7 +20960,7 @@ func (a *VnicApiService) PatchVnicIscsiAdapterPolicyExecute(r ApiPatchVnicIscsiA localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicIscsiAdapterPolicy @@ -21136,7 +21136,7 @@ func (a *VnicApiService) PatchVnicIscsiBootPolicyExecute(r ApiPatchVnicIscsiBoot localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicIscsiBootPolicy @@ -21312,7 +21312,7 @@ func (a *VnicApiService) PatchVnicIscsiStaticTargetPolicyExecute(r ApiPatchVnicI localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicIscsiStaticTargetPolicy @@ -21488,7 +21488,7 @@ func (a *VnicApiService) PatchVnicLanConnectivityPolicyExecute(r ApiPatchVnicLan localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicLanConnectivityPolicy @@ -21664,7 +21664,7 @@ func (a *VnicApiService) PatchVnicSanConnectivityPolicyExecute(r ApiPatchVnicSan localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicSanConnectivityPolicy @@ -21840,7 +21840,7 @@ func (a *VnicApiService) PatchVnicVhbaTemplateExecute(r ApiPatchVnicVhbaTemplate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicVhbaTemplate @@ -22016,7 +22016,7 @@ func (a *VnicApiService) PatchVnicVnicTemplateExecute(r ApiPatchVnicVnicTemplate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicVnicTemplate @@ -22192,7 +22192,7 @@ func (a *VnicApiService) UpdateVnicEthAdapterPolicyExecute(r ApiUpdateVnicEthAda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicEthAdapterPolicy @@ -22368,7 +22368,7 @@ func (a *VnicApiService) UpdateVnicEthIfExecute(r ApiUpdateVnicEthIfRequest) (*V localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicEthIf @@ -22544,7 +22544,7 @@ func (a *VnicApiService) UpdateVnicEthNetworkPolicyExecute(r ApiUpdateVnicEthNet localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicEthNetworkPolicy @@ -22720,7 +22720,7 @@ func (a *VnicApiService) UpdateVnicEthQosPolicyExecute(r ApiUpdateVnicEthQosPoli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicEthQosPolicy @@ -22896,7 +22896,7 @@ func (a *VnicApiService) UpdateVnicFcAdapterPolicyExecute(r ApiUpdateVnicFcAdapt localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicFcAdapterPolicy @@ -23072,7 +23072,7 @@ func (a *VnicApiService) UpdateVnicFcIfExecute(r ApiUpdateVnicFcIfRequest) (*Vni localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicFcIf @@ -23248,7 +23248,7 @@ func (a *VnicApiService) UpdateVnicFcNetworkPolicyExecute(r ApiUpdateVnicFcNetwo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicFcNetworkPolicy @@ -23424,7 +23424,7 @@ func (a *VnicApiService) UpdateVnicFcQosPolicyExecute(r ApiUpdateVnicFcQosPolicy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicFcQosPolicy @@ -23600,7 +23600,7 @@ func (a *VnicApiService) UpdateVnicIscsiAdapterPolicyExecute(r ApiUpdateVnicIscs localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicIscsiAdapterPolicy @@ -23776,7 +23776,7 @@ func (a *VnicApiService) UpdateVnicIscsiBootPolicyExecute(r ApiUpdateVnicIscsiBo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicIscsiBootPolicy @@ -23952,7 +23952,7 @@ func (a *VnicApiService) UpdateVnicIscsiStaticTargetPolicyExecute(r ApiUpdateVni localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicIscsiStaticTargetPolicy @@ -24128,7 +24128,7 @@ func (a *VnicApiService) UpdateVnicLanConnectivityPolicyExecute(r ApiUpdateVnicL localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicLanConnectivityPolicy @@ -24304,7 +24304,7 @@ func (a *VnicApiService) UpdateVnicSanConnectivityPolicyExecute(r ApiUpdateVnicS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicSanConnectivityPolicy @@ -24480,7 +24480,7 @@ func (a *VnicApiService) UpdateVnicVhbaTemplateExecute(r ApiUpdateVnicVhbaTempla localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicVhbaTemplate @@ -24656,7 +24656,7 @@ func (a *VnicApiService) UpdateVnicVnicTemplateExecute(r ApiUpdateVnicVnicTempla localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicVnicTemplate diff --git a/intersight_gosdk/api_vrf.go b/intersight_gosdk/api_vrf.go index e2b803bad0..dafaef1195 100644 --- a/intersight_gosdk/api_vrf.go +++ b/intersight_gosdk/api_vrf.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *VrfApiService) CreateVrfVrfExecute(r ApiCreateVrfVrfRequest) (*VrfVrf, localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vrfVrf @@ -623,52 +623,52 @@ func (a *VrfApiService) GetVrfVrfListExecute(r ApiGetVrfVrfListRequest) (*VrfVrf localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -859,7 +859,7 @@ func (a *VrfApiService) PatchVrfVrfExecute(r ApiPatchVrfVrfRequest) (*VrfVrf, *h localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vrfVrf @@ -1035,7 +1035,7 @@ func (a *VrfApiService) UpdateVrfVrfExecute(r ApiUpdateVrfVrfRequest) (*VrfVrf, localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vrfVrf diff --git a/intersight_gosdk/api_workflow.go b/intersight_gosdk/api_workflow.go index 6b2c12ac24..f4f9358949 100644 --- a/intersight_gosdk/api_workflow.go +++ b/intersight_gosdk/api_workflow.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *WorkflowApiService) CreateWorkflowAnsibleBatchExecutorExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowAnsibleBatchExecutor @@ -291,10 +291,10 @@ func (a *WorkflowApiService) CreateWorkflowBatchApiExecutorExecute(r ApiCreateWo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowBatchApiExecutor @@ -473,10 +473,10 @@ func (a *WorkflowApiService) CreateWorkflowCatalogItemDefinitionExecute(r ApiCre localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowCatalogItemDefinition @@ -655,10 +655,10 @@ func (a *WorkflowApiService) CreateWorkflowCatalogServiceRequestExecute(r ApiCre localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowCatalogServiceRequest @@ -837,10 +837,10 @@ func (a *WorkflowApiService) CreateWorkflowCustomDataTypeDefinitionExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowCustomDataTypeDefinition @@ -1019,10 +1019,10 @@ func (a *WorkflowApiService) CreateWorkflowErrorResponseHandlerExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowErrorResponseHandler @@ -1201,10 +1201,10 @@ func (a *WorkflowApiService) CreateWorkflowPowerShellBatchApiExecutorExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowPowerShellBatchApiExecutor @@ -1383,10 +1383,10 @@ func (a *WorkflowApiService) CreateWorkflowRollbackWorkflowExecute(r ApiCreateWo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowRollbackWorkflow @@ -1565,10 +1565,10 @@ func (a *WorkflowApiService) CreateWorkflowServiceItemActionDefinitionExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemActionDefinition @@ -1747,10 +1747,10 @@ func (a *WorkflowApiService) CreateWorkflowServiceItemActionInstanceExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemActionInstance @@ -1929,10 +1929,10 @@ func (a *WorkflowApiService) CreateWorkflowServiceItemDefinitionExecute(r ApiCre localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemDefinition @@ -2111,10 +2111,10 @@ func (a *WorkflowApiService) CreateWorkflowServiceItemHealthCheckDefinitionExecu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemHealthCheckDefinition @@ -2293,10 +2293,10 @@ func (a *WorkflowApiService) CreateWorkflowServiceItemInstanceExecute(r ApiCreat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemInstance @@ -2475,10 +2475,10 @@ func (a *WorkflowApiService) CreateWorkflowServiceItemOutputExecute(r ApiCreateW localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemOutput @@ -2657,10 +2657,10 @@ func (a *WorkflowApiService) CreateWorkflowSshBatchExecutorExecute(r ApiCreateWo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowSshBatchExecutor @@ -2839,10 +2839,10 @@ func (a *WorkflowApiService) CreateWorkflowTaskDefinitionExecute(r ApiCreateWork localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowTaskDefinition @@ -3021,10 +3021,10 @@ func (a *WorkflowApiService) CreateWorkflowTemplateEvaluationExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowTemplateEvaluation @@ -3203,10 +3203,10 @@ func (a *WorkflowApiService) CreateWorkflowTemplateParserExecute(r ApiCreateWork localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowTemplateParser @@ -3385,10 +3385,10 @@ func (a *WorkflowApiService) CreateWorkflowUiDisplayMetadataExecute(r ApiCreateW localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowUiDisplayMetadata @@ -3567,10 +3567,10 @@ func (a *WorkflowApiService) CreateWorkflowWorkflowDefinitionExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowWorkflowDefinition @@ -3749,10 +3749,10 @@ func (a *WorkflowApiService) CreateWorkflowWorkflowInfoExecute(r ApiCreateWorkfl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowWorkflowInfo @@ -6819,52 +6819,52 @@ func (a *WorkflowApiService) GetWorkflowAnsibleBatchExecutorListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7248,52 +7248,52 @@ func (a *WorkflowApiService) GetWorkflowBatchApiExecutorListExecute(r ApiGetWork localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7831,52 +7831,52 @@ func (a *WorkflowApiService) GetWorkflowCatalogItemDefinitionListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8106,52 +8106,52 @@ func (a *WorkflowApiService) GetWorkflowCatalogListExecute(r ApiGetWorkflowCatal localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8535,52 +8535,52 @@ func (a *WorkflowApiService) GetWorkflowCatalogServiceRequestListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8964,52 +8964,52 @@ func (a *WorkflowApiService) GetWorkflowCustomDataTypeDefinitionListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9393,52 +9393,52 @@ func (a *WorkflowApiService) GetWorkflowErrorResponseHandlerListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9822,52 +9822,52 @@ func (a *WorkflowApiService) GetWorkflowPowerShellBatchApiExecutorListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10251,52 +10251,52 @@ func (a *WorkflowApiService) GetWorkflowRollbackWorkflowListExecute(r ApiGetWork localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10680,52 +10680,52 @@ func (a *WorkflowApiService) GetWorkflowServiceItemActionDefinitionListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11109,52 +11109,52 @@ func (a *WorkflowApiService) GetWorkflowServiceItemActionInstanceListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11538,52 +11538,52 @@ func (a *WorkflowApiService) GetWorkflowServiceItemAttributeListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11967,52 +11967,52 @@ func (a *WorkflowApiService) GetWorkflowServiceItemDefinitionListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12396,52 +12396,52 @@ func (a *WorkflowApiService) GetWorkflowServiceItemHealthCheckDefinitionListExec localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12825,52 +12825,52 @@ func (a *WorkflowApiService) GetWorkflowServiceItemHealthCheckExecutionListExecu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13254,52 +13254,52 @@ func (a *WorkflowApiService) GetWorkflowServiceItemInstanceListExecute(r ApiGetW localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13683,52 +13683,52 @@ func (a *WorkflowApiService) GetWorkflowServiceItemOutputListExecute(r ApiGetWor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14112,52 +14112,52 @@ func (a *WorkflowApiService) GetWorkflowSshBatchExecutorListExecute(r ApiGetWork localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14541,52 +14541,52 @@ func (a *WorkflowApiService) GetWorkflowTaskDebugLogListExecute(r ApiGetWorkflow localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14970,52 +14970,52 @@ func (a *WorkflowApiService) GetWorkflowTaskDefinitionListExecute(r ApiGetWorkfl localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15399,52 +15399,52 @@ func (a *WorkflowApiService) GetWorkflowTaskInfoListExecute(r ApiGetWorkflowTask localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15828,52 +15828,52 @@ func (a *WorkflowApiService) GetWorkflowTaskMetadataListExecute(r ApiGetWorkflow localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16257,52 +16257,52 @@ func (a *WorkflowApiService) GetWorkflowTemplateFunctionMetaListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16686,52 +16686,52 @@ func (a *WorkflowApiService) GetWorkflowUiDisplayMetadataListExecute(r ApiGetWor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17115,52 +17115,52 @@ func (a *WorkflowApiService) GetWorkflowWorkflowDefinitionListExecute(r ApiGetWo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17544,52 +17544,52 @@ func (a *WorkflowApiService) GetWorkflowWorkflowInfoListExecute(r ApiGetWorkflow localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17973,52 +17973,52 @@ func (a *WorkflowApiService) GetWorkflowWorkflowMetadataListExecute(r ApiGetWork localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18209,7 +18209,7 @@ func (a *WorkflowApiService) PatchWorkflowAnsibleBatchExecutorExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowAnsibleBatchExecutor @@ -18385,7 +18385,7 @@ func (a *WorkflowApiService) PatchWorkflowBatchApiExecutorExecute(r ApiPatchWork localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowBatchApiExecutor @@ -18561,7 +18561,7 @@ func (a *WorkflowApiService) PatchWorkflowCatalogItemDefinitionExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowCatalogItemDefinition @@ -18737,7 +18737,7 @@ func (a *WorkflowApiService) PatchWorkflowCatalogServiceRequestExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowCatalogServiceRequest @@ -18913,7 +18913,7 @@ func (a *WorkflowApiService) PatchWorkflowCustomDataTypeDefinitionExecute(r ApiP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowCustomDataTypeDefinition @@ -19089,7 +19089,7 @@ func (a *WorkflowApiService) PatchWorkflowErrorResponseHandlerExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowErrorResponseHandler @@ -19265,7 +19265,7 @@ func (a *WorkflowApiService) PatchWorkflowPowerShellBatchApiExecutorExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowPowerShellBatchApiExecutor @@ -19441,7 +19441,7 @@ func (a *WorkflowApiService) PatchWorkflowRollbackWorkflowExecute(r ApiPatchWork localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowRollbackWorkflow @@ -19617,7 +19617,7 @@ func (a *WorkflowApiService) PatchWorkflowServiceItemActionDefinitionExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemActionDefinition @@ -19793,7 +19793,7 @@ func (a *WorkflowApiService) PatchWorkflowServiceItemActionInstanceExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemActionInstance @@ -19969,7 +19969,7 @@ func (a *WorkflowApiService) PatchWorkflowServiceItemDefinitionExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemDefinition @@ -20145,7 +20145,7 @@ func (a *WorkflowApiService) PatchWorkflowServiceItemHealthCheckDefinitionExecut localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemHealthCheckDefinition @@ -20321,7 +20321,7 @@ func (a *WorkflowApiService) PatchWorkflowServiceItemInstanceExecute(r ApiPatchW localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemInstance @@ -20497,7 +20497,7 @@ func (a *WorkflowApiService) PatchWorkflowServiceItemOutputExecute(r ApiPatchWor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemOutput @@ -20673,7 +20673,7 @@ func (a *WorkflowApiService) PatchWorkflowSshBatchExecutorExecute(r ApiPatchWork localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowSshBatchExecutor @@ -20849,7 +20849,7 @@ func (a *WorkflowApiService) PatchWorkflowTaskDefinitionExecute(r ApiPatchWorkfl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowTaskDefinition @@ -21025,7 +21025,7 @@ func (a *WorkflowApiService) PatchWorkflowTaskInfoExecute(r ApiPatchWorkflowTask localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowTaskInfo @@ -21201,7 +21201,7 @@ func (a *WorkflowApiService) PatchWorkflowUiDisplayMetadataExecute(r ApiPatchWor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowUiDisplayMetadata @@ -21377,7 +21377,7 @@ func (a *WorkflowApiService) PatchWorkflowWorkflowDefinitionExecute(r ApiPatchWo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowWorkflowDefinition @@ -21553,7 +21553,7 @@ func (a *WorkflowApiService) PatchWorkflowWorkflowInfoExecute(r ApiPatchWorkflow localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowWorkflowInfo @@ -21729,7 +21729,7 @@ func (a *WorkflowApiService) UpdateWorkflowAnsibleBatchExecutorExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowAnsibleBatchExecutor @@ -21905,7 +21905,7 @@ func (a *WorkflowApiService) UpdateWorkflowBatchApiExecutorExecute(r ApiUpdateWo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowBatchApiExecutor @@ -22081,7 +22081,7 @@ func (a *WorkflowApiService) UpdateWorkflowCatalogItemDefinitionExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowCatalogItemDefinition @@ -22257,7 +22257,7 @@ func (a *WorkflowApiService) UpdateWorkflowCatalogServiceRequestExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowCatalogServiceRequest @@ -22433,7 +22433,7 @@ func (a *WorkflowApiService) UpdateWorkflowCustomDataTypeDefinitionExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowCustomDataTypeDefinition @@ -22609,7 +22609,7 @@ func (a *WorkflowApiService) UpdateWorkflowErrorResponseHandlerExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowErrorResponseHandler @@ -22785,7 +22785,7 @@ func (a *WorkflowApiService) UpdateWorkflowPowerShellBatchApiExecutorExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowPowerShellBatchApiExecutor @@ -22961,7 +22961,7 @@ func (a *WorkflowApiService) UpdateWorkflowRollbackWorkflowExecute(r ApiUpdateWo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowRollbackWorkflow @@ -23137,7 +23137,7 @@ func (a *WorkflowApiService) UpdateWorkflowServiceItemActionDefinitionExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemActionDefinition @@ -23313,7 +23313,7 @@ func (a *WorkflowApiService) UpdateWorkflowServiceItemActionInstanceExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemActionInstance @@ -23489,7 +23489,7 @@ func (a *WorkflowApiService) UpdateWorkflowServiceItemDefinitionExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemDefinition @@ -23665,7 +23665,7 @@ func (a *WorkflowApiService) UpdateWorkflowServiceItemHealthCheckDefinitionExecu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemHealthCheckDefinition @@ -23841,7 +23841,7 @@ func (a *WorkflowApiService) UpdateWorkflowServiceItemInstanceExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemInstance @@ -24017,7 +24017,7 @@ func (a *WorkflowApiService) UpdateWorkflowServiceItemOutputExecute(r ApiUpdateW localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemOutput @@ -24193,7 +24193,7 @@ func (a *WorkflowApiService) UpdateWorkflowSshBatchExecutorExecute(r ApiUpdateWo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowSshBatchExecutor @@ -24369,7 +24369,7 @@ func (a *WorkflowApiService) UpdateWorkflowTaskDefinitionExecute(r ApiUpdateWork localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowTaskDefinition @@ -24545,7 +24545,7 @@ func (a *WorkflowApiService) UpdateWorkflowTaskInfoExecute(r ApiUpdateWorkflowTa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowTaskInfo @@ -24721,7 +24721,7 @@ func (a *WorkflowApiService) UpdateWorkflowUiDisplayMetadataExecute(r ApiUpdateW localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowUiDisplayMetadata @@ -24897,7 +24897,7 @@ func (a *WorkflowApiService) UpdateWorkflowWorkflowDefinitionExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowWorkflowDefinition @@ -25073,7 +25073,7 @@ func (a *WorkflowApiService) UpdateWorkflowWorkflowInfoExecute(r ApiUpdateWorkfl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowWorkflowInfo diff --git a/intersight_gosdk/api_workspace.go b/intersight_gosdk/api_workspace.go index cc3be24b58..d62c9acbb7 100644 --- a/intersight_gosdk/api_workspace.go +++ b/intersight_gosdk/api_workspace.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *WorkspaceApiService) CreateWorkspaceFolderExecute(r ApiCreateWorkspaceF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workspaceFolder @@ -623,52 +623,52 @@ func (a *WorkspaceApiService) GetWorkspaceFolderListExecute(r ApiGetWorkspaceFol localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -859,7 +859,7 @@ func (a *WorkspaceApiService) PatchWorkspaceFolderExecute(r ApiPatchWorkspaceFol localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workspaceFolder @@ -1035,7 +1035,7 @@ func (a *WorkspaceApiService) UpdateWorkspaceFolderExecute(r ApiUpdateWorkspaceF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workspaceFolder diff --git a/intersight_gosdk/client.go b/intersight_gosdk/client.go index fb7813eb31..c2893c140a 100644 --- a/intersight_gosdk/client.go +++ b/intersight_gosdk/client.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -43,7 +43,7 @@ var ( queryDescape = strings.NewReplacer("%5B", "[", "%5D", "]") ) -// APIClient manages communication with the Cisco Intersight API v1.0.11-17956 +// APIClient manages communication with the Cisco Intersight API v1.0.11-18012 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration @@ -474,7 +474,7 @@ func parameterValueToString(obj interface{}, key string) string { // parameterAddToHeaderOrQuery adds the provided object to the request header or url query // supporting deep object syntax -func parameterAddToHeaderOrQuery(headerOrQueryParams interface{}, keyPrefix string, obj interface{}, collectionType string) { +func parameterAddToHeaderOrQuery(headerOrQueryParams interface{}, keyPrefix string, obj interface{}, style string, collectionType string) { var v = reflect.ValueOf(obj) var value = "" if v == reflect.ValueOf(nil) { @@ -490,11 +490,11 @@ func parameterAddToHeaderOrQuery(headerOrQueryParams interface{}, keyPrefix stri if err != nil { return } - parameterAddToHeaderOrQuery(headerOrQueryParams, keyPrefix, dataMap, collectionType) + parameterAddToHeaderOrQuery(headerOrQueryParams, keyPrefix, dataMap, style, collectionType) return } if t, ok := obj.(time.Time); ok { - parameterAddToHeaderOrQuery(headerOrQueryParams, keyPrefix, t.Format(time.RFC3339Nano), collectionType) + parameterAddToHeaderOrQuery(headerOrQueryParams, keyPrefix, t.Format(time.RFC3339Nano), style, collectionType) return } value = v.Type().String() + " value" @@ -506,7 +506,11 @@ func parameterAddToHeaderOrQuery(headerOrQueryParams interface{}, keyPrefix stri var lenIndValue = indValue.Len() for i := 0; i < lenIndValue; i++ { var arrayValue = indValue.Index(i) - parameterAddToHeaderOrQuery(headerOrQueryParams, keyPrefix, arrayValue.Interface(), collectionType) + var keyPrefixForCollectionType = keyPrefix + if style == "deepObject" { + keyPrefixForCollectionType = keyPrefix + "[" + strconv.Itoa(i) + "]" + } + parameterAddToHeaderOrQuery(headerOrQueryParams, keyPrefixForCollectionType, arrayValue.Interface(), style, collectionType) } return @@ -518,14 +522,14 @@ func parameterAddToHeaderOrQuery(headerOrQueryParams interface{}, keyPrefix stri iter := indValue.MapRange() for iter.Next() { k, v := iter.Key(), iter.Value() - parameterAddToHeaderOrQuery(headerOrQueryParams, fmt.Sprintf("%s[%s]", keyPrefix, k.String()), v.Interface(), collectionType) + parameterAddToHeaderOrQuery(headerOrQueryParams, fmt.Sprintf("%s[%s]", keyPrefix, k.String()), v.Interface(), style, collectionType) } return case reflect.Interface: fallthrough case reflect.Ptr: - parameterAddToHeaderOrQuery(headerOrQueryParams, keyPrefix, v.Elem().Interface(), collectionType) + parameterAddToHeaderOrQuery(headerOrQueryParams, keyPrefix, v.Elem().Interface(), style, collectionType) return case reflect.Int, reflect.Int8, reflect.Int16, @@ -846,18 +850,6 @@ func addFile(w *multipart.Writer, fieldName, path string) error { return err } -// Prevent trying to import "fmt" -func reportError(format string, a ...interface{}) error { - return fmt.Errorf(format, a...) -} - -// A wrapper for strict JSON decoding -func newStrictDecoder(data []byte) *json.Decoder { - dec := json.NewDecoder(bytes.NewBuffer(data)) - dec.DisallowUnknownFields() - return dec -} - // Set request body from an interface{} func setBody(body interface{}, contentType string) (bodyBuf *bytes.Buffer, err error) { if bodyBuf == nil { diff --git a/intersight_gosdk/configuration.go b/intersight_gosdk/configuration.go index 952116e19e..583296d80e 100644 --- a/intersight_gosdk/configuration.go +++ b/intersight_gosdk/configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -96,7 +96,7 @@ type Configuration struct { func NewConfiguration() *Configuration { cfg := &Configuration{ DefaultHeader: make(map[string]string), - UserAgent: "OpenAPI-Generator/1.0.11.17956/go", + UserAgent: "OpenAPI-Generator/1.0.11.18012/go", Debug: false, Servers: ServerConfigurations{ { diff --git a/intersight_gosdk/docs/NetworkElementSummary.md b/intersight_gosdk/docs/NetworkElementSummary.md index 61417ecc6c..1f6608523b 100644 --- a/intersight_gosdk/docs/NetworkElementSummary.md +++ b/intersight_gosdk/docs/NetworkElementSummary.md @@ -69,6 +69,7 @@ Name | Type | Description | Notes **SystemUpTime** | Pointer to **string** | System up time of the switch. | [optional] **Thermal** | Pointer to **string** | The Thermal status of the fabric interconnect. * `unknown` - The default state of the sensor (in case no data is received). * `ok` - State of the sensor indicating the sensor's temperature range is okay. * `upper-non-recoverable` - State of the sensor indicating that the temperature is extremely high above normal range. * `upper-critical` - State of the sensor indicating that the temperature is above normal range. * `upper-non-critical` - State of the sensor indicating that the temperature is a little above the normal range. * `lower-non-critical` - State of the sensor indicating that the temperature is a little below the normal range. * `lower-critical` - State of the sensor indicating that the temperature is below normal range. * `lower-non-recoverable` - State of the sensor indicating that the temperature is extremely below normal range. | [optional] [default to "unknown"] **TotalMemory** | Pointer to **int64** | Total available memory on this switch platform. | [optional] [readonly] +**UserLabel** | Pointer to **string** | The user defined label assigned to the server. | [optional] [readonly] **Vendor** | Pointer to **string** | This field identifies the vendor of the given component. | [optional] [readonly] **Version** | Pointer to **string** | Firmware version of the switch. | [optional] [readonly] **InventoryParent** | Pointer to [**NullableMoBaseMoRelationship**](MoBaseMoRelationship.md) | | [optional] @@ -1718,6 +1719,31 @@ SetTotalMemory sets TotalMemory field to given value. HasTotalMemory returns a boolean if a field has been set. +### GetUserLabel + +`func (o *NetworkElementSummary) GetUserLabel() string` + +GetUserLabel returns the UserLabel field if non-nil, zero value otherwise. + +### GetUserLabelOk + +`func (o *NetworkElementSummary) GetUserLabelOk() (*string, bool)` + +GetUserLabelOk returns a tuple with the UserLabel field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetUserLabel + +`func (o *NetworkElementSummary) SetUserLabel(v string)` + +SetUserLabel sets UserLabel field to given value. + +### HasUserLabel + +`func (o *NetworkElementSummary) HasUserLabel() bool` + +HasUserLabel returns a boolean if a field has been set. + ### GetVendor `func (o *NetworkElementSummary) GetVendor() string` diff --git a/intersight_gosdk/docs/WorkflowEnumEntry.md b/intersight_gosdk/docs/WorkflowEnumEntry.md index 0afa1a7bc4..b0c0634a4c 100644 --- a/intersight_gosdk/docs/WorkflowEnumEntry.md +++ b/intersight_gosdk/docs/WorkflowEnumEntry.md @@ -6,8 +6,8 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **ClassId** | **string** | The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data. | [default to "workflow.EnumEntry"] **ObjectType** | **string** | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. | [default to "workflow.EnumEntry"] -**Label** | Pointer to **string** | 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 have an alphanumeric character. | [optional] -**Value** | Pointer to **string** | 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] +**Label** | Pointer to **string** | 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 (/), round parenthesis ( () ), or an underscore (_) and must have an alphanumeric character. | [optional] +**Value** | Pointer to **string** | 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 ( ), round parenthesis ( () ), forward slash (/), or an underscore (_). | [optional] ## Methods diff --git a/intersight_gosdk/docs/WorkflowTargetProperty.md b/intersight_gosdk/docs/WorkflowTargetProperty.md index d6078deb00..ec89e6d085 100644 --- a/intersight_gosdk/docs/WorkflowTargetProperty.md +++ b/intersight_gosdk/docs/WorkflowTargetProperty.md @@ -9,6 +9,7 @@ Name | Type | Description | Notes **ConnectorAttribute** | Pointer to **string** | A singleton value which will contain the path to connector object from the selected object. | [optional] **ConstraintAttributes** | Pointer to **[]string** | | [optional] **DisplayAttributes** | Pointer to **[]string** | | [optional] +**PlatformType** | Pointer to **[]string** | | [optional] **Selector** | Pointer to **string** | Field to hold an Intersight API along with an optional filter to narrow down the search options for target device. | [optional] **SelectorProperty** | Pointer to [**NullableWorkflowSelectorProperty**](WorkflowSelectorProperty.md) | | [optional] **SupportedObjects** | Pointer to **[]string** | | [optional] @@ -167,6 +168,41 @@ HasDisplayAttributes returns a boolean if a field has been set. `func (o *WorkflowTargetProperty) UnsetDisplayAttributes()` UnsetDisplayAttributes ensures that no value is present for DisplayAttributes, not even an explicit nil +### GetPlatformType + +`func (o *WorkflowTargetProperty) GetPlatformType() []string` + +GetPlatformType returns the PlatformType field if non-nil, zero value otherwise. + +### GetPlatformTypeOk + +`func (o *WorkflowTargetProperty) GetPlatformTypeOk() (*[]string, bool)` + +GetPlatformTypeOk returns a tuple with the PlatformType field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetPlatformType + +`func (o *WorkflowTargetProperty) SetPlatformType(v []string)` + +SetPlatformType sets PlatformType field to given value. + +### HasPlatformType + +`func (o *WorkflowTargetProperty) HasPlatformType() bool` + +HasPlatformType returns a boolean if a field has been set. + +### SetPlatformTypeNil + +`func (o *WorkflowTargetProperty) SetPlatformTypeNil(b bool)` + + SetPlatformTypeNil sets the value for PlatformType to be an explicit nil + +### UnsetPlatformType +`func (o *WorkflowTargetProperty) UnsetPlatformType()` + +UnsetPlatformType ensures that no value is present for PlatformType, not even an explicit nil ### GetSelector `func (o *WorkflowTargetProperty) GetSelector() string` diff --git a/intersight_gosdk/model_aaa_abstract_audit_record.go b/intersight_gosdk/model_aaa_abstract_audit_record.go index 72351a8720..11ad6d1faa 100644 --- a/intersight_gosdk/model_aaa_abstract_audit_record.go +++ b/intersight_gosdk/model_aaa_abstract_audit_record.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_aaa_audit_record.go b/intersight_gosdk/model_aaa_audit_record.go index bb9642bb9b..178eac4377 100644 --- a/intersight_gosdk/model_aaa_audit_record.go +++ b/intersight_gosdk/model_aaa_audit_record.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -32,7 +32,7 @@ type AaaAuditRecord struct { // The user-friendly label for the object type that was changed. AffectedObjectTypeLabel *string `json:"AffectedObjectTypeLabel,omitempty"` // The email of the associated user that made the change. In case the user is later deleted, we still have some reference to the information. - Email *string `json:"Email,omitempty"` + Email *string "json:\"Email,omitempty\" validate:\"regexp=^$|^[a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$\"" // The instance id of AuditRecordLocal, which is used to identify if the comming AuditRecordLocal was already processed before. InstId *string `json:"InstId,omitempty"` // The sessionId in which the user made the change. In case that the session is later deleted, we still have some reference to the information. @@ -599,7 +599,7 @@ func (o *AaaAuditRecord) UnmarshalJSON(data []byte) (err error) { // The user-friendly label for the object type that was changed. AffectedObjectTypeLabel *string `json:"AffectedObjectTypeLabel,omitempty"` // The email of the associated user that made the change. In case the user is later deleted, we still have some reference to the information. - Email *string `json:"Email,omitempty"` + Email *string "json:\"Email,omitempty\" validate:\"regexp=^$|^[a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$\"" // The instance id of AuditRecordLocal, which is used to identify if the comming AuditRecordLocal was already processed before. InstId *string `json:"InstId,omitempty"` // The sessionId in which the user made the change. In case that the session is later deleted, we still have some reference to the information. diff --git a/intersight_gosdk/model_aaa_audit_record_list.go b/intersight_gosdk/model_aaa_audit_record_list.go index 40ed1845d8..155ce0e5b0 100644 --- a/intersight_gosdk/model_aaa_audit_record_list.go +++ b/intersight_gosdk/model_aaa_audit_record_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_aaa_audit_record_response.go b/intersight_gosdk/model_aaa_audit_record_response.go index 5588b79881..7d1a915569 100644 --- a/intersight_gosdk/model_aaa_audit_record_response.go +++ b/intersight_gosdk/model_aaa_audit_record_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_aaa_retention_config.go b/intersight_gosdk/model_aaa_retention_config.go index bd8d439834..1de09b594f 100644 --- a/intersight_gosdk/model_aaa_retention_config.go +++ b/intersight_gosdk/model_aaa_retention_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_aaa_retention_config_list.go b/intersight_gosdk/model_aaa_retention_config_list.go index 02ccda0582..29366baa40 100644 --- a/intersight_gosdk/model_aaa_retention_config_list.go +++ b/intersight_gosdk/model_aaa_retention_config_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_aaa_retention_config_response.go b/intersight_gosdk/model_aaa_retention_config_response.go index 4f254d24d6..3263a924c9 100644 --- a/intersight_gosdk/model_aaa_retention_config_response.go +++ b/intersight_gosdk/model_aaa_retention_config_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_aaa_retention_policy.go b/intersight_gosdk/model_aaa_retention_policy.go index 0a75b43924..b59e478473 100644 --- a/intersight_gosdk/model_aaa_retention_policy.go +++ b/intersight_gosdk/model_aaa_retention_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_aaa_retention_policy_list.go b/intersight_gosdk/model_aaa_retention_policy_list.go index 858caf67bc..a78d667852 100644 --- a/intersight_gosdk/model_aaa_retention_policy_list.go +++ b/intersight_gosdk/model_aaa_retention_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_aaa_retention_policy_response.go b/intersight_gosdk/model_aaa_retention_policy_response.go index ef969f11df..864d568cb5 100644 --- a/intersight_gosdk/model_aaa_retention_policy_response.go +++ b/intersight_gosdk/model_aaa_retention_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_aaa_user_agent.go b/intersight_gosdk/model_aaa_user_agent.go index 0500c6efc7..d4f1c9e43a 100644 --- a/intersight_gosdk/model_aaa_user_agent.go +++ b/intersight_gosdk/model_aaa_user_agent.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_access_address_type.go b/intersight_gosdk/model_access_address_type.go index 2054a45058..f03042c2b6 100644 --- a/intersight_gosdk/model_access_address_type.go +++ b/intersight_gosdk/model_access_address_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_access_configuration_type.go b/intersight_gosdk/model_access_configuration_type.go index 6475a24ce1..34189d1233 100644 --- a/intersight_gosdk/model_access_configuration_type.go +++ b/intersight_gosdk/model_access_configuration_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_access_ip_address.go b/intersight_gosdk/model_access_ip_address.go index 6cf3acba0e..4b2ac7cb04 100644 --- a/intersight_gosdk/model_access_ip_address.go +++ b/intersight_gosdk/model_access_ip_address.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,11 +29,11 @@ type AccessIpAddress struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IPv4 Address leased to this Server Profile for In-Band Deployment. - Ipv4Address *string `json:"Ipv4Address,omitempty"` + Ipv4Address *string `json:"Ipv4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IPv4 Address leased to this Server Profile for In-Band Deployment. - Ipv6Address *string `json:"Ipv6Address,omitempty"` + Ipv6Address *string `json:"Ipv6Address,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // IPv4 Address leased to this Server Profile for Out-Of-Band deployment. - OobIpv4Address *string `json:"OobIpv4Address,omitempty"` + OobIpv4Address *string `json:"OobIpv4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` Ipv4Lease NullableIppoolIpLeaseRelationship `json:"Ipv4Lease,omitempty"` Ipv6Lease NullableIppoolIpLeaseRelationship `json:"Ipv6Lease,omitempty"` OobIpv4Lease NullableIppoolIpLeaseRelationship `json:"OobIpv4Lease,omitempty"` @@ -495,11 +495,11 @@ func (o *AccessIpAddress) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IPv4 Address leased to this Server Profile for In-Band Deployment. - Ipv4Address *string `json:"Ipv4Address,omitempty"` + Ipv4Address *string `json:"Ipv4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IPv4 Address leased to this Server Profile for In-Band Deployment. - Ipv6Address *string `json:"Ipv6Address,omitempty"` + Ipv6Address *string `json:"Ipv6Address,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // IPv4 Address leased to this Server Profile for Out-Of-Band deployment. - OobIpv4Address *string `json:"OobIpv4Address,omitempty"` + OobIpv4Address *string `json:"OobIpv4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` Ipv4Lease NullableIppoolIpLeaseRelationship `json:"Ipv4Lease,omitempty"` Ipv6Lease NullableIppoolIpLeaseRelationship `json:"Ipv6Lease,omitempty"` OobIpv4Lease NullableIppoolIpLeaseRelationship `json:"OobIpv4Lease,omitempty"` diff --git a/intersight_gosdk/model_access_ip_address_list.go b/intersight_gosdk/model_access_ip_address_list.go index b72dcb6a30..0a4458b8bb 100644 --- a/intersight_gosdk/model_access_ip_address_list.go +++ b/intersight_gosdk/model_access_ip_address_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_access_ip_address_response.go b/intersight_gosdk/model_access_ip_address_response.go index f66008df4e..aedfa5c587 100644 --- a/intersight_gosdk/model_access_ip_address_response.go +++ b/intersight_gosdk/model_access_ip_address_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_access_policy.go b/intersight_gosdk/model_access_policy.go index 96177b4735..d413f35371 100644 --- a/intersight_gosdk/model_access_policy.go +++ b/intersight_gosdk/model_access_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_access_policy_inventory.go b/intersight_gosdk/model_access_policy_inventory.go index 12873d9174..1a10b59716 100644 --- a/intersight_gosdk/model_access_policy_inventory.go +++ b/intersight_gosdk/model_access_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_access_policy_inventory_list.go b/intersight_gosdk/model_access_policy_inventory_list.go index 76c0f133b2..1e98d19ea1 100644 --- a/intersight_gosdk/model_access_policy_inventory_list.go +++ b/intersight_gosdk/model_access_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_access_policy_inventory_response.go b/intersight_gosdk/model_access_policy_inventory_response.go index 64a17ddc76..0c8f6b3015 100644 --- a/intersight_gosdk/model_access_policy_inventory_response.go +++ b/intersight_gosdk/model_access_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_access_policy_list.go b/intersight_gosdk/model_access_policy_list.go index f4fa543d47..71c535edbc 100644 --- a/intersight_gosdk/model_access_policy_list.go +++ b/intersight_gosdk/model_access_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_access_policy_response.go b/intersight_gosdk/model_access_policy_response.go index 58fe00e713..e8c14bdec0 100644 --- a/intersight_gosdk/model_access_policy_response.go +++ b/intersight_gosdk/model_access_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_adapter_config.go b/intersight_gosdk/model_adapter_adapter_config.go index 7f6380d37a..da4f2d18d6 100644 --- a/intersight_gosdk/model_adapter_adapter_config.go +++ b/intersight_gosdk/model_adapter_adapter_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -34,7 +34,7 @@ type AdapterAdapterConfig struct { PhysicalNicModeSettings NullableAdapterPhysicalNicModeSettings `json:"PhysicalNicModeSettings,omitempty"` PortChannelSettings NullableAdapterPortChannelSettings `json:"PortChannelSettings,omitempty"` // PCIe slot where the VIC adapter is installed. Supported values are (1-15) and MLOM. - SlotId *string `json:"SlotId,omitempty"` + SlotId *string `json:"SlotId,omitempty" validate:"regexp=^([1-9]|1[0-5]|MLOM)$"` AdditionalProperties map[string]interface{} } @@ -463,7 +463,7 @@ func (o *AdapterAdapterConfig) UnmarshalJSON(data []byte) (err error) { PhysicalNicModeSettings NullableAdapterPhysicalNicModeSettings `json:"PhysicalNicModeSettings,omitempty"` PortChannelSettings NullableAdapterPortChannelSettings `json:"PortChannelSettings,omitempty"` // PCIe slot where the VIC adapter is installed. Supported values are (1-15) and MLOM. - SlotId *string `json:"SlotId,omitempty"` + SlotId *string `json:"SlotId,omitempty" validate:"regexp=^([1-9]|1[0-5]|MLOM)$"` } varAdapterAdapterConfigWithoutEmbeddedStruct := AdapterAdapterConfigWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_adapter_config_policy.go b/intersight_gosdk/model_adapter_config_policy.go index 4451e310e2..39545527f6 100644 --- a/intersight_gosdk/model_adapter_config_policy.go +++ b/intersight_gosdk/model_adapter_config_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_config_policy_list.go b/intersight_gosdk/model_adapter_config_policy_list.go index ea973bd124..570afed2c5 100644 --- a/intersight_gosdk/model_adapter_config_policy_list.go +++ b/intersight_gosdk/model_adapter_config_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_config_policy_response.go b/intersight_gosdk/model_adapter_config_policy_response.go index ad1b642f96..c70ba0ac98 100644 --- a/intersight_gosdk/model_adapter_config_policy_response.go +++ b/intersight_gosdk/model_adapter_config_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_dce_interface_settings.go b/intersight_gosdk/model_adapter_dce_interface_settings.go index 688ec06f1f..4b881f3e70 100644 --- a/intersight_gosdk/model_adapter_dce_interface_settings.go +++ b/intersight_gosdk/model_adapter_dce_interface_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_eth_settings.go b/intersight_gosdk/model_adapter_eth_settings.go index d5a31e953d..3b36d15e51 100644 --- a/intersight_gosdk/model_adapter_eth_settings.go +++ b/intersight_gosdk/model_adapter_eth_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_ext_eth_interface.go b/intersight_gosdk/model_adapter_ext_eth_interface.go index e92b3708f2..dc0e2c9557 100644 --- a/intersight_gosdk/model_adapter_ext_eth_interface.go +++ b/intersight_gosdk/model_adapter_ext_eth_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_ext_eth_interface_list.go b/intersight_gosdk/model_adapter_ext_eth_interface_list.go index a84e2697d3..ad73990d40 100644 --- a/intersight_gosdk/model_adapter_ext_eth_interface_list.go +++ b/intersight_gosdk/model_adapter_ext_eth_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_ext_eth_interface_relationship.go b/intersight_gosdk/model_adapter_ext_eth_interface_relationship.go index d237459909..febd9a863f 100644 --- a/intersight_gosdk/model_adapter_ext_eth_interface_relationship.go +++ b/intersight_gosdk/model_adapter_ext_eth_interface_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_ext_eth_interface_response.go b/intersight_gosdk/model_adapter_ext_eth_interface_response.go index 138320868d..01888f87c4 100644 --- a/intersight_gosdk/model_adapter_ext_eth_interface_response.go +++ b/intersight_gosdk/model_adapter_ext_eth_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_fc_settings.go b/intersight_gosdk/model_adapter_fc_settings.go index bfbf6c0c51..2839f9ed11 100644 --- a/intersight_gosdk/model_adapter_fc_settings.go +++ b/intersight_gosdk/model_adapter_fc_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_host_eth_interface.go b/intersight_gosdk/model_adapter_host_eth_interface.go index 83bf115d65..fdc3bf3884 100644 --- a/intersight_gosdk/model_adapter_host_eth_interface.go +++ b/intersight_gosdk/model_adapter_host_eth_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_host_eth_interface_list.go b/intersight_gosdk/model_adapter_host_eth_interface_list.go index be852bfaa5..f143f5baa3 100644 --- a/intersight_gosdk/model_adapter_host_eth_interface_list.go +++ b/intersight_gosdk/model_adapter_host_eth_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_host_eth_interface_relationship.go b/intersight_gosdk/model_adapter_host_eth_interface_relationship.go index fb6f725220..671c5408a6 100644 --- a/intersight_gosdk/model_adapter_host_eth_interface_relationship.go +++ b/intersight_gosdk/model_adapter_host_eth_interface_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_host_eth_interface_response.go b/intersight_gosdk/model_adapter_host_eth_interface_response.go index 2e9cf2751a..5e8ef5e19e 100644 --- a/intersight_gosdk/model_adapter_host_eth_interface_response.go +++ b/intersight_gosdk/model_adapter_host_eth_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_host_fc_interface.go b/intersight_gosdk/model_adapter_host_fc_interface.go index 812a71281c..6e3d40314a 100644 --- a/intersight_gosdk/model_adapter_host_fc_interface.go +++ b/intersight_gosdk/model_adapter_host_fc_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_host_fc_interface_list.go b/intersight_gosdk/model_adapter_host_fc_interface_list.go index e36bd6fdae..811d593721 100644 --- a/intersight_gosdk/model_adapter_host_fc_interface_list.go +++ b/intersight_gosdk/model_adapter_host_fc_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_host_fc_interface_relationship.go b/intersight_gosdk/model_adapter_host_fc_interface_relationship.go index 7e8fb02040..d00d3f695f 100644 --- a/intersight_gosdk/model_adapter_host_fc_interface_relationship.go +++ b/intersight_gosdk/model_adapter_host_fc_interface_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_host_fc_interface_response.go b/intersight_gosdk/model_adapter_host_fc_interface_response.go index 33281cee1c..3fa281639d 100644 --- a/intersight_gosdk/model_adapter_host_fc_interface_response.go +++ b/intersight_gosdk/model_adapter_host_fc_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_host_iscsi_interface.go b/intersight_gosdk/model_adapter_host_iscsi_interface.go index 110984c463..3ba8b9445d 100644 --- a/intersight_gosdk/model_adapter_host_iscsi_interface.go +++ b/intersight_gosdk/model_adapter_host_iscsi_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_host_iscsi_interface_list.go b/intersight_gosdk/model_adapter_host_iscsi_interface_list.go index de69bad4c0..ed87916afa 100644 --- a/intersight_gosdk/model_adapter_host_iscsi_interface_list.go +++ b/intersight_gosdk/model_adapter_host_iscsi_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_host_iscsi_interface_relationship.go b/intersight_gosdk/model_adapter_host_iscsi_interface_relationship.go index a56c374d80..a70e92f99c 100644 --- a/intersight_gosdk/model_adapter_host_iscsi_interface_relationship.go +++ b/intersight_gosdk/model_adapter_host_iscsi_interface_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_host_iscsi_interface_response.go b/intersight_gosdk/model_adapter_host_iscsi_interface_response.go index 43b79879bd..d5ca0ab3bc 100644 --- a/intersight_gosdk/model_adapter_host_iscsi_interface_response.go +++ b/intersight_gosdk/model_adapter_host_iscsi_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_physical_nic_mode_settings.go b/intersight_gosdk/model_adapter_physical_nic_mode_settings.go index bc7d6bcc20..f0ae7b92d6 100644 --- a/intersight_gosdk/model_adapter_physical_nic_mode_settings.go +++ b/intersight_gosdk/model_adapter_physical_nic_mode_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_port_channel_settings.go b/intersight_gosdk/model_adapter_port_channel_settings.go index a0536fd278..1ed21b87aa 100644 --- a/intersight_gosdk/model_adapter_port_channel_settings.go +++ b/intersight_gosdk/model_adapter_port_channel_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_unit.go b/intersight_gosdk/model_adapter_unit.go index de041e8f0c..2ebaf54a18 100644 --- a/intersight_gosdk/model_adapter_unit.go +++ b/intersight_gosdk/model_adapter_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_unit_expander.go b/intersight_gosdk/model_adapter_unit_expander.go index 5da9b960bb..eac130e421 100644 --- a/intersight_gosdk/model_adapter_unit_expander.go +++ b/intersight_gosdk/model_adapter_unit_expander.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_unit_expander_list.go b/intersight_gosdk/model_adapter_unit_expander_list.go index 4353f2d638..a6556a71bf 100644 --- a/intersight_gosdk/model_adapter_unit_expander_list.go +++ b/intersight_gosdk/model_adapter_unit_expander_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_unit_expander_relationship.go b/intersight_gosdk/model_adapter_unit_expander_relationship.go index ced75856df..707088edc1 100644 --- a/intersight_gosdk/model_adapter_unit_expander_relationship.go +++ b/intersight_gosdk/model_adapter_unit_expander_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_unit_expander_response.go b/intersight_gosdk/model_adapter_unit_expander_response.go index a2642c4f2c..1070f23cf8 100644 --- a/intersight_gosdk/model_adapter_unit_expander_response.go +++ b/intersight_gosdk/model_adapter_unit_expander_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_unit_list.go b/intersight_gosdk/model_adapter_unit_list.go index 09146feb72..2f669f45a6 100644 --- a/intersight_gosdk/model_adapter_unit_list.go +++ b/intersight_gosdk/model_adapter_unit_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_unit_relationship.go b/intersight_gosdk/model_adapter_unit_relationship.go index 06e352b409..dfb1af2218 100644 --- a/intersight_gosdk/model_adapter_unit_relationship.go +++ b/intersight_gosdk/model_adapter_unit_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_unit_response.go b/intersight_gosdk/model_adapter_unit_response.go index b246a3392b..b3f604dc06 100644 --- a/intersight_gosdk/model_adapter_unit_response.go +++ b/intersight_gosdk/model_adapter_unit_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_aci_pod.go b/intersight_gosdk/model_apic_aci_pod.go index 8d02261df3..12dcae7719 100644 --- a/intersight_gosdk/model_apic_aci_pod.go +++ b/intersight_gosdk/model_apic_aci_pod.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_aci_pod_list.go b/intersight_gosdk/model_apic_aci_pod_list.go index bdd351d65b..85ecad7fd9 100644 --- a/intersight_gosdk/model_apic_aci_pod_list.go +++ b/intersight_gosdk/model_apic_aci_pod_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_aci_pod_response.go b/intersight_gosdk/model_apic_aci_pod_response.go index b48d0a9eb4..70a9e6ab3e 100644 --- a/intersight_gosdk/model_apic_aci_pod_response.go +++ b/intersight_gosdk/model_apic_aci_pod_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_application.go b/intersight_gosdk/model_apic_application.go index 60e3a62841..a5516c0f83 100644 --- a/intersight_gosdk/model_apic_application.go +++ b/intersight_gosdk/model_apic_application.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_application_endpoint_group.go b/intersight_gosdk/model_apic_application_endpoint_group.go index 4712ed6d0c..b96d079dd0 100644 --- a/intersight_gosdk/model_apic_application_endpoint_group.go +++ b/intersight_gosdk/model_apic_application_endpoint_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_application_endpoint_group_list.go b/intersight_gosdk/model_apic_application_endpoint_group_list.go index 8a918c7b1d..0fb66d5dd2 100644 --- a/intersight_gosdk/model_apic_application_endpoint_group_list.go +++ b/intersight_gosdk/model_apic_application_endpoint_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_application_endpoint_group_response.go b/intersight_gosdk/model_apic_application_endpoint_group_response.go index ce7153f8a2..add17227c1 100644 --- a/intersight_gosdk/model_apic_application_endpoint_group_response.go +++ b/intersight_gosdk/model_apic_application_endpoint_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_application_list.go b/intersight_gosdk/model_apic_application_list.go index af71a9838f..d462220b1e 100644 --- a/intersight_gosdk/model_apic_application_list.go +++ b/intersight_gosdk/model_apic_application_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_application_relationship.go b/intersight_gosdk/model_apic_application_relationship.go index 35fabebfb4..d18da9aa8b 100644 --- a/intersight_gosdk/model_apic_application_relationship.go +++ b/intersight_gosdk/model_apic_application_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_application_response.go b/intersight_gosdk/model_apic_application_response.go index 44d586133f..12509015e1 100644 --- a/intersight_gosdk/model_apic_application_response.go +++ b/intersight_gosdk/model_apic_application_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_bridge_domain.go b/intersight_gosdk/model_apic_bridge_domain.go index 12970ad4d9..0c4817637b 100644 --- a/intersight_gosdk/model_apic_bridge_domain.go +++ b/intersight_gosdk/model_apic_bridge_domain.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_bridge_domain_list.go b/intersight_gosdk/model_apic_bridge_domain_list.go index e387f91371..7c75ff7305 100644 --- a/intersight_gosdk/model_apic_bridge_domain_list.go +++ b/intersight_gosdk/model_apic_bridge_domain_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_bridge_domain_relationship.go b/intersight_gosdk/model_apic_bridge_domain_relationship.go index 5f6f1b2ae3..d9913d2046 100644 --- a/intersight_gosdk/model_apic_bridge_domain_relationship.go +++ b/intersight_gosdk/model_apic_bridge_domain_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_bridge_domain_response.go b/intersight_gosdk/model_apic_bridge_domain_response.go index 549c8ccb56..c0f81b7b8d 100644 --- a/intersight_gosdk/model_apic_bridge_domain_response.go +++ b/intersight_gosdk/model_apic_bridge_domain_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_external_routed_layer_three_domain.go b/intersight_gosdk/model_apic_external_routed_layer_three_domain.go index 73a3b40793..bdec9170a8 100644 --- a/intersight_gosdk/model_apic_external_routed_layer_three_domain.go +++ b/intersight_gosdk/model_apic_external_routed_layer_three_domain.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_external_routed_layer_three_domain_list.go b/intersight_gosdk/model_apic_external_routed_layer_three_domain_list.go index c56b990010..4761fe17c6 100644 --- a/intersight_gosdk/model_apic_external_routed_layer_three_domain_list.go +++ b/intersight_gosdk/model_apic_external_routed_layer_three_domain_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_external_routed_layer_three_domain_response.go b/intersight_gosdk/model_apic_external_routed_layer_three_domain_response.go index 29a460512e..e6feb22300 100644 --- a/intersight_gosdk/model_apic_external_routed_layer_three_domain_response.go +++ b/intersight_gosdk/model_apic_external_routed_layer_three_domain_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_fabric_leaf_node.go b/intersight_gosdk/model_apic_fabric_leaf_node.go index 6709cb6eb8..64b729d8a7 100644 --- a/intersight_gosdk/model_apic_fabric_leaf_node.go +++ b/intersight_gosdk/model_apic_fabric_leaf_node.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_fabric_leaf_node_details.go b/intersight_gosdk/model_apic_fabric_leaf_node_details.go index e42bcf9476..935aab77f3 100644 --- a/intersight_gosdk/model_apic_fabric_leaf_node_details.go +++ b/intersight_gosdk/model_apic_fabric_leaf_node_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_fabric_leaf_node_interface.go b/intersight_gosdk/model_apic_fabric_leaf_node_interface.go index 65f6fc8bc8..d1da5a021e 100644 --- a/intersight_gosdk/model_apic_fabric_leaf_node_interface.go +++ b/intersight_gosdk/model_apic_fabric_leaf_node_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_fabric_leaf_node_interface_list.go b/intersight_gosdk/model_apic_fabric_leaf_node_interface_list.go index a8a118f66b..8d8e28edd1 100644 --- a/intersight_gosdk/model_apic_fabric_leaf_node_interface_list.go +++ b/intersight_gosdk/model_apic_fabric_leaf_node_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_fabric_leaf_node_interface_response.go b/intersight_gosdk/model_apic_fabric_leaf_node_interface_response.go index 4b00362cfc..3ea7349a04 100644 --- a/intersight_gosdk/model_apic_fabric_leaf_node_interface_response.go +++ b/intersight_gosdk/model_apic_fabric_leaf_node_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_fabric_leaf_node_list.go b/intersight_gosdk/model_apic_fabric_leaf_node_list.go index aa69477d01..6688aa8883 100644 --- a/intersight_gosdk/model_apic_fabric_leaf_node_list.go +++ b/intersight_gosdk/model_apic_fabric_leaf_node_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_fabric_leaf_node_relationship.go b/intersight_gosdk/model_apic_fabric_leaf_node_relationship.go index 0ef216bb58..d48774d455 100644 --- a/intersight_gosdk/model_apic_fabric_leaf_node_relationship.go +++ b/intersight_gosdk/model_apic_fabric_leaf_node_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_fabric_leaf_node_response.go b/intersight_gosdk/model_apic_fabric_leaf_node_response.go index 8b5e4b9f19..ea8204a191 100644 --- a/intersight_gosdk/model_apic_fabric_leaf_node_response.go +++ b/intersight_gosdk/model_apic_fabric_leaf_node_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_inventory_entity.go b/intersight_gosdk/model_apic_inventory_entity.go index 55575d9087..443a265cee 100644 --- a/intersight_gosdk/model_apic_inventory_entity.go +++ b/intersight_gosdk/model_apic_inventory_entity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_out.go b/intersight_gosdk/model_apic_out.go index 5b3cb17a43..47a2f8301d 100644 --- a/intersight_gosdk/model_apic_out.go +++ b/intersight_gosdk/model_apic_out.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_out_list.go b/intersight_gosdk/model_apic_out_list.go index a78eb4717c..c2a0a5b5f0 100644 --- a/intersight_gosdk/model_apic_out_list.go +++ b/intersight_gosdk/model_apic_out_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_out_response.go b/intersight_gosdk/model_apic_out_response.go index c24321c754..2ac5b0423c 100644 --- a/intersight_gosdk/model_apic_out_response.go +++ b/intersight_gosdk/model_apic_out_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_subnet.go b/intersight_gosdk/model_apic_subnet.go index abdae77bcd..ec5747d6b5 100644 --- a/intersight_gosdk/model_apic_subnet.go +++ b/intersight_gosdk/model_apic_subnet.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_subnet_list.go b/intersight_gosdk/model_apic_subnet_list.go index 79c93df0d8..6d596ea8ab 100644 --- a/intersight_gosdk/model_apic_subnet_list.go +++ b/intersight_gosdk/model_apic_subnet_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_subnet_response.go b/intersight_gosdk/model_apic_subnet_response.go index e0cc0af7b7..57c1046ccd 100644 --- a/intersight_gosdk/model_apic_subnet_response.go +++ b/intersight_gosdk/model_apic_subnet_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_tenant.go b/intersight_gosdk/model_apic_tenant.go index 6951e686ab..d56c85ba05 100644 --- a/intersight_gosdk/model_apic_tenant.go +++ b/intersight_gosdk/model_apic_tenant.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_tenant_list.go b/intersight_gosdk/model_apic_tenant_list.go index 89db6658bd..092870d241 100644 --- a/intersight_gosdk/model_apic_tenant_list.go +++ b/intersight_gosdk/model_apic_tenant_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_tenant_relationship.go b/intersight_gosdk/model_apic_tenant_relationship.go index 235a6924f2..396353ddeb 100644 --- a/intersight_gosdk/model_apic_tenant_relationship.go +++ b/intersight_gosdk/model_apic_tenant_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_tenant_response.go b/intersight_gosdk/model_apic_tenant_response.go index 8686352934..e914abbaa7 100644 --- a/intersight_gosdk/model_apic_tenant_response.go +++ b/intersight_gosdk/model_apic_tenant_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_vpc_group.go b/intersight_gosdk/model_apic_vpc_group.go index e4d1d6e7c3..edf85ad7e6 100644 --- a/intersight_gosdk/model_apic_vpc_group.go +++ b/intersight_gosdk/model_apic_vpc_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_vpc_group_list.go b/intersight_gosdk/model_apic_vpc_group_list.go index bf911358d7..58172e2ff7 100644 --- a/intersight_gosdk/model_apic_vpc_group_list.go +++ b/intersight_gosdk/model_apic_vpc_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_vpc_group_response.go b/intersight_gosdk/model_apic_vpc_group_response.go index c23792b27b..8dd26cd9f6 100644 --- a/intersight_gosdk/model_apic_vpc_group_response.go +++ b/intersight_gosdk/model_apic_vpc_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_vrfs.go b/intersight_gosdk/model_apic_vrfs.go index 5c726ff4b7..7a2db51f4b 100644 --- a/intersight_gosdk/model_apic_vrfs.go +++ b/intersight_gosdk/model_apic_vrfs.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_vrfs_list.go b/intersight_gosdk/model_apic_vrfs_list.go index 02fc448a45..16e5716318 100644 --- a/intersight_gosdk/model_apic_vrfs_list.go +++ b/intersight_gosdk/model_apic_vrfs_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_vrfs_response.go b/intersight_gosdk/model_apic_vrfs_response.go index 1697c7f126..c63e8d2d06 100644 --- a/intersight_gosdk/model_apic_vrfs_response.go +++ b/intersight_gosdk/model_apic_vrfs_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_api_status.go b/intersight_gosdk/model_appliance_api_status.go index 3e22d04469..34301d5e63 100644 --- a/intersight_gosdk/model_appliance_api_status.go +++ b/intersight_gosdk/model_appliance_api_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_app_op_status.go b/intersight_gosdk/model_appliance_app_op_status.go index ffe347844a..3044a73e54 100644 --- a/intersight_gosdk/model_appliance_app_op_status.go +++ b/intersight_gosdk/model_appliance_app_op_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_app_op_status_list.go b/intersight_gosdk/model_appliance_app_op_status_list.go index 461d2993da..d5eaa98366 100644 --- a/intersight_gosdk/model_appliance_app_op_status_list.go +++ b/intersight_gosdk/model_appliance_app_op_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_app_op_status_relationship.go b/intersight_gosdk/model_appliance_app_op_status_relationship.go index a51b903fd1..026972719d 100644 --- a/intersight_gosdk/model_appliance_app_op_status_relationship.go +++ b/intersight_gosdk/model_appliance_app_op_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_app_op_status_response.go b/intersight_gosdk/model_appliance_app_op_status_response.go index d01d35a50e..cd92fce93b 100644 --- a/intersight_gosdk/model_appliance_app_op_status_response.go +++ b/intersight_gosdk/model_appliance_app_op_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_app_status.go b/intersight_gosdk/model_appliance_app_status.go index 3d1d1f63c8..0ab778d749 100644 --- a/intersight_gosdk/model_appliance_app_status.go +++ b/intersight_gosdk/model_appliance_app_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_app_status_list.go b/intersight_gosdk/model_appliance_app_status_list.go index 8a9bfe5f3e..79920e643b 100644 --- a/intersight_gosdk/model_appliance_app_status_list.go +++ b/intersight_gosdk/model_appliance_app_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_app_status_relationship.go b/intersight_gosdk/model_appliance_app_status_relationship.go index 56ebd950c0..a5105de134 100644 --- a/intersight_gosdk/model_appliance_app_status_relationship.go +++ b/intersight_gosdk/model_appliance_app_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_app_status_response.go b/intersight_gosdk/model_appliance_app_status_response.go index 8d32b6fbf4..1b716414ec 100644 --- a/intersight_gosdk/model_appliance_app_status_response.go +++ b/intersight_gosdk/model_appliance_app_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_auto_rma_policy.go b/intersight_gosdk/model_appliance_auto_rma_policy.go index 18241802e8..37b257da7e 100644 --- a/intersight_gosdk/model_appliance_auto_rma_policy.go +++ b/intersight_gosdk/model_appliance_auto_rma_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_auto_rma_policy_list.go b/intersight_gosdk/model_appliance_auto_rma_policy_list.go index 8cba26ea6a..c2610612fe 100644 --- a/intersight_gosdk/model_appliance_auto_rma_policy_list.go +++ b/intersight_gosdk/model_appliance_auto_rma_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_auto_rma_policy_response.go b/intersight_gosdk/model_appliance_auto_rma_policy_response.go index 9b8e9cdc1e..a7815f7693 100644 --- a/intersight_gosdk/model_appliance_auto_rma_policy_response.go +++ b/intersight_gosdk/model_appliance_auto_rma_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_backup.go b/intersight_gosdk/model_appliance_backup.go index ad0f3cf5cd..ea009bbf4b 100644 --- a/intersight_gosdk/model_appliance_backup.go +++ b/intersight_gosdk/model_appliance_backup.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -39,7 +39,7 @@ type ApplianceBackup struct { IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` Messages []string `json:"Messages,omitempty"` // Password to authenticate the fileserver. - Password *string `json:"Password,omitempty"` + Password *string "json:\"Password,omitempty\" validate:\"regexp=^$|^[^`]+$\"" // Start date and time of the backup process. StartTime *time.Time `json:"StartTime,omitempty"` // Status of the backup managed object. * `Started` - Backup or restore process has started. * `Created` - Backup or restore is in created state. * `Failed` - Backup or restore process has failed. * `Completed` - Backup or restore process has completed. * `Copied` - Backup file has been copied. * `Cleanup Failed` - Cleanup of the old backup has failed. @@ -551,7 +551,7 @@ func (o *ApplianceBackup) UnmarshalJSON(data []byte) (err error) { IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` Messages []string `json:"Messages,omitempty"` // Password to authenticate the fileserver. - Password *string `json:"Password,omitempty"` + Password *string "json:\"Password,omitempty\" validate:\"regexp=^$|^[^`]+$\"" // Start date and time of the backup process. StartTime *time.Time `json:"StartTime,omitempty"` // Status of the backup managed object. * `Started` - Backup or restore process has started. * `Created` - Backup or restore is in created state. * `Failed` - Backup or restore process has failed. * `Completed` - Backup or restore process has completed. * `Copied` - Backup file has been copied. * `Cleanup Failed` - Cleanup of the old backup has failed. diff --git a/intersight_gosdk/model_appliance_backup_base.go b/intersight_gosdk/model_appliance_backup_base.go index 896705f13c..779ad46c09 100644 --- a/intersight_gosdk/model_appliance_backup_base.go +++ b/intersight_gosdk/model_appliance_backup_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,17 +29,17 @@ type ApplianceBackupBase struct { // 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. ObjectType string `json:"ObjectType"` // Backup filename to backup or restore. - Filename *string `json:"Filename,omitempty"` + Filename *string `json:"Filename,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9_\\\\.\\\\-\\\\+]*$"` // Communication protocol used by the file server (e.g. scp, sftp, or CIFS). * `scp` - Secure Copy Protocol (SCP) to access the file server. * `sftp` - SSH File Transfer Protocol (SFTP) to access file server. * `cifs` - Common Internet File System (CIFS) Protocol to access file server. Protocol *string `json:"Protocol,omitempty"` // Hostname of the remote file server. RemoteHost *string `json:"RemoteHost,omitempty"` // File server directory or share name to copy the file. - RemotePath *string `json:"RemotePath,omitempty"` + RemotePath *string "json:\"RemotePath,omitempty\" validate:\"regexp=^$|^[^`]+$\"" // Remote TCP port on the file server (e.g. 22 for scp). RemotePort *int64 `json:"RemotePort,omitempty"` // Username to authenticate the fileserver. - Username *string `json:"Username,omitempty"` + Username *string `json:"Username,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_][a-zA-Z0-9_\\\\.\\\\@\\\\\\\\\\\\-\\\\+]*$"` AdditionalProperties map[string]interface{} } @@ -399,17 +399,17 @@ func (o *ApplianceBackupBase) UnmarshalJSON(data []byte) (err error) { // 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. ObjectType string `json:"ObjectType"` // Backup filename to backup or restore. - Filename *string `json:"Filename,omitempty"` + Filename *string `json:"Filename,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9_\\\\.\\\\-\\\\+]*$"` // Communication protocol used by the file server (e.g. scp, sftp, or CIFS). * `scp` - Secure Copy Protocol (SCP) to access the file server. * `sftp` - SSH File Transfer Protocol (SFTP) to access file server. * `cifs` - Common Internet File System (CIFS) Protocol to access file server. Protocol *string `json:"Protocol,omitempty"` // Hostname of the remote file server. RemoteHost *string `json:"RemoteHost,omitempty"` // File server directory or share name to copy the file. - RemotePath *string `json:"RemotePath,omitempty"` + RemotePath *string "json:\"RemotePath,omitempty\" validate:\"regexp=^$|^[^`]+$\"" // Remote TCP port on the file server (e.g. 22 for scp). RemotePort *int64 `json:"RemotePort,omitempty"` // Username to authenticate the fileserver. - Username *string `json:"Username,omitempty"` + Username *string `json:"Username,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_][a-zA-Z0-9_\\\\.\\\\@\\\\\\\\\\\\-\\\\+]*$"` } varApplianceBackupBaseWithoutEmbeddedStruct := ApplianceBackupBaseWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_appliance_backup_list.go b/intersight_gosdk/model_appliance_backup_list.go index 1fc6b0329f..711cb51168 100644 --- a/intersight_gosdk/model_appliance_backup_list.go +++ b/intersight_gosdk/model_appliance_backup_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_backup_monitor.go b/intersight_gosdk/model_appliance_backup_monitor.go index a8b6d98aae..114de4b148 100644 --- a/intersight_gosdk/model_appliance_backup_monitor.go +++ b/intersight_gosdk/model_appliance_backup_monitor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_backup_monitor_list.go b/intersight_gosdk/model_appliance_backup_monitor_list.go index ce1ee27aef..2b684c1dce 100644 --- a/intersight_gosdk/model_appliance_backup_monitor_list.go +++ b/intersight_gosdk/model_appliance_backup_monitor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_backup_monitor_response.go b/intersight_gosdk/model_appliance_backup_monitor_response.go index 1dc4ad044e..4f6f6dfe56 100644 --- a/intersight_gosdk/model_appliance_backup_monitor_response.go +++ b/intersight_gosdk/model_appliance_backup_monitor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_backup_policy.go b/intersight_gosdk/model_appliance_backup_policy.go index e60745cbfc..78ba047cac 100644 --- a/intersight_gosdk/model_appliance_backup_policy.go +++ b/intersight_gosdk/model_appliance_backup_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -36,7 +36,7 @@ type ApplianceBackupPolicy struct { // Backup mode of the appliance. Automatic backups of the appliance are not initiated if this property is set to 'true' and the backup schedule field is ignored. ManualBackup *bool `json:"ManualBackup,omitempty"` // Password to authenticate the file server. - Password *string `json:"Password,omitempty"` + Password *string "json:\"Password,omitempty\" validate:\"regexp=^$|^[^`]+$\"" // The number of backups before earliest backup is overwritten. Requires cleanup policy to be enabled. RetentionCount *int64 `json:"RetentionCount,omitempty"` // If backup rotate policy is set, older backups will automatically be overwritten. The number of backups before overwriting is defined by the retentionCount property. @@ -525,7 +525,7 @@ func (o *ApplianceBackupPolicy) UnmarshalJSON(data []byte) (err error) { // Backup mode of the appliance. Automatic backups of the appliance are not initiated if this property is set to 'true' and the backup schedule field is ignored. ManualBackup *bool `json:"ManualBackup,omitempty"` // Password to authenticate the file server. - Password *string `json:"Password,omitempty"` + Password *string "json:\"Password,omitempty\" validate:\"regexp=^$|^[^`]+$\"" // The number of backups before earliest backup is overwritten. Requires cleanup policy to be enabled. RetentionCount *int64 `json:"RetentionCount,omitempty"` // If backup rotate policy is set, older backups will automatically be overwritten. The number of backups before overwriting is defined by the retentionCount property. diff --git a/intersight_gosdk/model_appliance_backup_policy_list.go b/intersight_gosdk/model_appliance_backup_policy_list.go index d8c0e0d52e..eaeaf77640 100644 --- a/intersight_gosdk/model_appliance_backup_policy_list.go +++ b/intersight_gosdk/model_appliance_backup_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_backup_policy_response.go b/intersight_gosdk/model_appliance_backup_policy_response.go index 1c13a1a8e4..3be856196a 100644 --- a/intersight_gosdk/model_appliance_backup_policy_response.go +++ b/intersight_gosdk/model_appliance_backup_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_backup_response.go b/intersight_gosdk/model_appliance_backup_response.go index 46c044cd8b..8821e98354 100644 --- a/intersight_gosdk/model_appliance_backup_response.go +++ b/intersight_gosdk/model_appliance_backup_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_backup_rotate_data.go b/intersight_gosdk/model_appliance_backup_rotate_data.go index 3866f4ed9a..17515a63bf 100644 --- a/intersight_gosdk/model_appliance_backup_rotate_data.go +++ b/intersight_gosdk/model_appliance_backup_rotate_data.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_backup_rotate_data_list.go b/intersight_gosdk/model_appliance_backup_rotate_data_list.go index 4fd69b750e..42ea9653db 100644 --- a/intersight_gosdk/model_appliance_backup_rotate_data_list.go +++ b/intersight_gosdk/model_appliance_backup_rotate_data_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_backup_rotate_data_response.go b/intersight_gosdk/model_appliance_backup_rotate_data_response.go index 19580a13f6..9e93bf1ac4 100644 --- a/intersight_gosdk/model_appliance_backup_rotate_data_response.go +++ b/intersight_gosdk/model_appliance_backup_rotate_data_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_cert_renewal_phase.go b/intersight_gosdk/model_appliance_cert_renewal_phase.go index 951fbc918f..ebfcff7587 100644 --- a/intersight_gosdk/model_appliance_cert_renewal_phase.go +++ b/intersight_gosdk/model_appliance_cert_renewal_phase.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_certificate_setting.go b/intersight_gosdk/model_appliance_certificate_setting.go index 8565255ffd..3f5df11eb2 100644 --- a/intersight_gosdk/model_appliance_certificate_setting.go +++ b/intersight_gosdk/model_appliance_certificate_setting.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_certificate_setting_list.go b/intersight_gosdk/model_appliance_certificate_setting_list.go index be003b6909..4f8566d842 100644 --- a/intersight_gosdk/model_appliance_certificate_setting_list.go +++ b/intersight_gosdk/model_appliance_certificate_setting_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_certificate_setting_response.go b/intersight_gosdk/model_appliance_certificate_setting_response.go index eedc820ade..be99be13c2 100644 --- a/intersight_gosdk/model_appliance_certificate_setting_response.go +++ b/intersight_gosdk/model_appliance_certificate_setting_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_cluster_info.go b/intersight_gosdk/model_appliance_cluster_info.go index 885ba0d2a5..17308dec4a 100644 --- a/intersight_gosdk/model_appliance_cluster_info.go +++ b/intersight_gosdk/model_appliance_cluster_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_cluster_info_list.go b/intersight_gosdk/model_appliance_cluster_info_list.go index 9f368ce639..aedeed5d0e 100644 --- a/intersight_gosdk/model_appliance_cluster_info_list.go +++ b/intersight_gosdk/model_appliance_cluster_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_cluster_info_response.go b/intersight_gosdk/model_appliance_cluster_info_response.go index 6f8aa524c3..0b790ba603 100644 --- a/intersight_gosdk/model_appliance_cluster_info_response.go +++ b/intersight_gosdk/model_appliance_cluster_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_cluster_install.go b/intersight_gosdk/model_appliance_cluster_install.go index 779dc5a261..32916f2133 100644 --- a/intersight_gosdk/model_appliance_cluster_install.go +++ b/intersight_gosdk/model_appliance_cluster_install.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_cluster_install_base.go b/intersight_gosdk/model_appliance_cluster_install_base.go index f72214f701..700c86d406 100644 --- a/intersight_gosdk/model_appliance_cluster_install_base.go +++ b/intersight_gosdk/model_appliance_cluster_install_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_cluster_install_list.go b/intersight_gosdk/model_appliance_cluster_install_list.go index ee50cff925..2c9151e360 100644 --- a/intersight_gosdk/model_appliance_cluster_install_list.go +++ b/intersight_gosdk/model_appliance_cluster_install_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_cluster_install_phase.go b/intersight_gosdk/model_appliance_cluster_install_phase.go index 0d6902fa2e..8c52924e06 100644 --- a/intersight_gosdk/model_appliance_cluster_install_phase.go +++ b/intersight_gosdk/model_appliance_cluster_install_phase.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_cluster_install_response.go b/intersight_gosdk/model_appliance_cluster_install_response.go index 12ef076ec4..2dad70ed41 100644 --- a/intersight_gosdk/model_appliance_cluster_install_response.go +++ b/intersight_gosdk/model_appliance_cluster_install_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_cluster_replace_node.go b/intersight_gosdk/model_appliance_cluster_replace_node.go index 3f45960208..19a6ffb3e5 100644 --- a/intersight_gosdk/model_appliance_cluster_replace_node.go +++ b/intersight_gosdk/model_appliance_cluster_replace_node.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_cluster_replace_node_list.go b/intersight_gosdk/model_appliance_cluster_replace_node_list.go index a220f6b6a9..7ef0fa5c01 100644 --- a/intersight_gosdk/model_appliance_cluster_replace_node_list.go +++ b/intersight_gosdk/model_appliance_cluster_replace_node_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_cluster_replace_node_response.go b/intersight_gosdk/model_appliance_cluster_replace_node_response.go index f1b39d09be..28bb104928 100644 --- a/intersight_gosdk/model_appliance_cluster_replace_node_response.go +++ b/intersight_gosdk/model_appliance_cluster_replace_node_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_data_export_policy.go b/intersight_gosdk/model_appliance_data_export_policy.go index 7d6c59435c..66dfbd21f4 100644 --- a/intersight_gosdk/model_appliance_data_export_policy.go +++ b/intersight_gosdk/model_appliance_data_export_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_data_export_policy_list.go b/intersight_gosdk/model_appliance_data_export_policy_list.go index 280099dbfa..d2e6ecdb19 100644 --- a/intersight_gosdk/model_appliance_data_export_policy_list.go +++ b/intersight_gosdk/model_appliance_data_export_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_data_export_policy_relationship.go b/intersight_gosdk/model_appliance_data_export_policy_relationship.go index 311bfdf5a4..058f0d99d4 100644 --- a/intersight_gosdk/model_appliance_data_export_policy_relationship.go +++ b/intersight_gosdk/model_appliance_data_export_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_data_export_policy_response.go b/intersight_gosdk/model_appliance_data_export_policy_response.go index 7482486120..a0041a1bfe 100644 --- a/intersight_gosdk/model_appliance_data_export_policy_response.go +++ b/intersight_gosdk/model_appliance_data_export_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_device_certificate.go b/intersight_gosdk/model_appliance_device_certificate.go index e70858f837..d214958295 100644 --- a/intersight_gosdk/model_appliance_device_certificate.go +++ b/intersight_gosdk/model_appliance_device_certificate.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_device_certificate_list.go b/intersight_gosdk/model_appliance_device_certificate_list.go index ca82ef4e35..6a8274dcd9 100644 --- a/intersight_gosdk/model_appliance_device_certificate_list.go +++ b/intersight_gosdk/model_appliance_device_certificate_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_device_certificate_response.go b/intersight_gosdk/model_appliance_device_certificate_response.go index f23d59e683..0fde16035a 100644 --- a/intersight_gosdk/model_appliance_device_certificate_response.go +++ b/intersight_gosdk/model_appliance_device_certificate_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_device_claim.go b/intersight_gosdk/model_appliance_device_claim.go index ec76ed34f5..492d734b02 100644 --- a/intersight_gosdk/model_appliance_device_claim.go +++ b/intersight_gosdk/model_appliance_device_claim.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_device_claim_list.go b/intersight_gosdk/model_appliance_device_claim_list.go index 6aefcb1d0e..cf34817a40 100644 --- a/intersight_gosdk/model_appliance_device_claim_list.go +++ b/intersight_gosdk/model_appliance_device_claim_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_device_claim_response.go b/intersight_gosdk/model_appliance_device_claim_response.go index 859e685242..9a4f73ad0f 100644 --- a/intersight_gosdk/model_appliance_device_claim_response.go +++ b/intersight_gosdk/model_appliance_device_claim_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_device_cluster_install.go b/intersight_gosdk/model_appliance_device_cluster_install.go index d8063f56b0..044ad6ac39 100644 --- a/intersight_gosdk/model_appliance_device_cluster_install.go +++ b/intersight_gosdk/model_appliance_device_cluster_install.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_device_cluster_install_list.go b/intersight_gosdk/model_appliance_device_cluster_install_list.go index b84927cb1d..b98708e900 100644 --- a/intersight_gosdk/model_appliance_device_cluster_install_list.go +++ b/intersight_gosdk/model_appliance_device_cluster_install_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_device_cluster_install_response.go b/intersight_gosdk/model_appliance_device_cluster_install_response.go index e18c6085ef..cd8b7af601 100644 --- a/intersight_gosdk/model_appliance_device_cluster_install_response.go +++ b/intersight_gosdk/model_appliance_device_cluster_install_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_device_state.go b/intersight_gosdk/model_appliance_device_state.go index 2db35d0b16..e7539a31af 100644 --- a/intersight_gosdk/model_appliance_device_state.go +++ b/intersight_gosdk/model_appliance_device_state.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_device_state_list.go b/intersight_gosdk/model_appliance_device_state_list.go index 485e8f69f8..d81addf7bb 100644 --- a/intersight_gosdk/model_appliance_device_state_list.go +++ b/intersight_gosdk/model_appliance_device_state_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_device_state_response.go b/intersight_gosdk/model_appliance_device_state_response.go index 6f61222f68..54ce82191f 100644 --- a/intersight_gosdk/model_appliance_device_state_response.go +++ b/intersight_gosdk/model_appliance_device_state_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_device_upgrade_policy.go b/intersight_gosdk/model_appliance_device_upgrade_policy.go index 6a2916bec5..650343c78a 100644 --- a/intersight_gosdk/model_appliance_device_upgrade_policy.go +++ b/intersight_gosdk/model_appliance_device_upgrade_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_device_upgrade_policy_list.go b/intersight_gosdk/model_appliance_device_upgrade_policy_list.go index 5dbe3016e8..485670dfac 100644 --- a/intersight_gosdk/model_appliance_device_upgrade_policy_list.go +++ b/intersight_gosdk/model_appliance_device_upgrade_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_device_upgrade_policy_relationship.go b/intersight_gosdk/model_appliance_device_upgrade_policy_relationship.go index ce1d942e5a..11eec0c85a 100644 --- a/intersight_gosdk/model_appliance_device_upgrade_policy_relationship.go +++ b/intersight_gosdk/model_appliance_device_upgrade_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_device_upgrade_policy_response.go b/intersight_gosdk/model_appliance_device_upgrade_policy_response.go index 3c5546b32d..82e294de41 100644 --- a/intersight_gosdk/model_appliance_device_upgrade_policy_response.go +++ b/intersight_gosdk/model_appliance_device_upgrade_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_diag_setting.go b/intersight_gosdk/model_appliance_diag_setting.go index c5823b4189..02ce93739b 100644 --- a/intersight_gosdk/model_appliance_diag_setting.go +++ b/intersight_gosdk/model_appliance_diag_setting.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_diag_setting_list.go b/intersight_gosdk/model_appliance_diag_setting_list.go index b9eaa0372c..21e7a8fb4a 100644 --- a/intersight_gosdk/model_appliance_diag_setting_list.go +++ b/intersight_gosdk/model_appliance_diag_setting_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_diag_setting_response.go b/intersight_gosdk/model_appliance_diag_setting_response.go index 06944e5969..91f8ebf660 100644 --- a/intersight_gosdk/model_appliance_diag_setting_response.go +++ b/intersight_gosdk/model_appliance_diag_setting_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_external_syslog_setting.go b/intersight_gosdk/model_appliance_external_syslog_setting.go index e5a803ccd9..6d6722f002 100644 --- a/intersight_gosdk/model_appliance_external_syslog_setting.go +++ b/intersight_gosdk/model_appliance_external_syslog_setting.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_external_syslog_setting_list.go b/intersight_gosdk/model_appliance_external_syslog_setting_list.go index 61ffcc15cd..f40e653678 100644 --- a/intersight_gosdk/model_appliance_external_syslog_setting_list.go +++ b/intersight_gosdk/model_appliance_external_syslog_setting_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_external_syslog_setting_response.go b/intersight_gosdk/model_appliance_external_syslog_setting_response.go index 69c1128601..737ec1ee9f 100644 --- a/intersight_gosdk/model_appliance_external_syslog_setting_response.go +++ b/intersight_gosdk/model_appliance_external_syslog_setting_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_file_gateway.go b/intersight_gosdk/model_appliance_file_gateway.go index 38ac1c8f50..9977d68ddd 100644 --- a/intersight_gosdk/model_appliance_file_gateway.go +++ b/intersight_gosdk/model_appliance_file_gateway.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_file_gateway_list.go b/intersight_gosdk/model_appliance_file_gateway_list.go index c2f078d55c..4ec93882cb 100644 --- a/intersight_gosdk/model_appliance_file_gateway_list.go +++ b/intersight_gosdk/model_appliance_file_gateway_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_file_gateway_response.go b/intersight_gosdk/model_appliance_file_gateway_response.go index 11defc37cb..34cc801efa 100644 --- a/intersight_gosdk/model_appliance_file_gateway_response.go +++ b/intersight_gosdk/model_appliance_file_gateway_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_file_system_op_status.go b/intersight_gosdk/model_appliance_file_system_op_status.go index 1c96cdb681..0e2b354d1b 100644 --- a/intersight_gosdk/model_appliance_file_system_op_status.go +++ b/intersight_gosdk/model_appliance_file_system_op_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_file_system_op_status_list.go b/intersight_gosdk/model_appliance_file_system_op_status_list.go index 8be30f180c..8b69022492 100644 --- a/intersight_gosdk/model_appliance_file_system_op_status_list.go +++ b/intersight_gosdk/model_appliance_file_system_op_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_file_system_op_status_relationship.go b/intersight_gosdk/model_appliance_file_system_op_status_relationship.go index faf99096fa..8d302cc58f 100644 --- a/intersight_gosdk/model_appliance_file_system_op_status_relationship.go +++ b/intersight_gosdk/model_appliance_file_system_op_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_file_system_op_status_response.go b/intersight_gosdk/model_appliance_file_system_op_status_response.go index a0ee6046dd..28a331c393 100644 --- a/intersight_gosdk/model_appliance_file_system_op_status_response.go +++ b/intersight_gosdk/model_appliance_file_system_op_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_file_system_status.go b/intersight_gosdk/model_appliance_file_system_status.go index 51f31b0968..6ed6a8a54b 100644 --- a/intersight_gosdk/model_appliance_file_system_status.go +++ b/intersight_gosdk/model_appliance_file_system_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_file_system_status_list.go b/intersight_gosdk/model_appliance_file_system_status_list.go index 5d9153e73d..7b4fc18c0e 100644 --- a/intersight_gosdk/model_appliance_file_system_status_list.go +++ b/intersight_gosdk/model_appliance_file_system_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_file_system_status_relationship.go b/intersight_gosdk/model_appliance_file_system_status_relationship.go index 0e69782e12..b80719b915 100644 --- a/intersight_gosdk/model_appliance_file_system_status_relationship.go +++ b/intersight_gosdk/model_appliance_file_system_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_file_system_status_response.go b/intersight_gosdk/model_appliance_file_system_status_response.go index efe7c8cb86..199907fa1d 100644 --- a/intersight_gosdk/model_appliance_file_system_status_response.go +++ b/intersight_gosdk/model_appliance_file_system_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_group_op_status.go b/intersight_gosdk/model_appliance_group_op_status.go index 73025d2b38..2c6c07d68c 100644 --- a/intersight_gosdk/model_appliance_group_op_status.go +++ b/intersight_gosdk/model_appliance_group_op_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_group_op_status_list.go b/intersight_gosdk/model_appliance_group_op_status_list.go index 06e5925bfc..42c2028d7d 100644 --- a/intersight_gosdk/model_appliance_group_op_status_list.go +++ b/intersight_gosdk/model_appliance_group_op_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_group_op_status_relationship.go b/intersight_gosdk/model_appliance_group_op_status_relationship.go index 0642a2cdd7..1bec649fdf 100644 --- a/intersight_gosdk/model_appliance_group_op_status_relationship.go +++ b/intersight_gosdk/model_appliance_group_op_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_group_op_status_response.go b/intersight_gosdk/model_appliance_group_op_status_response.go index fed417ace4..4c7ff6602d 100644 --- a/intersight_gosdk/model_appliance_group_op_status_response.go +++ b/intersight_gosdk/model_appliance_group_op_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_group_status.go b/intersight_gosdk/model_appliance_group_status.go index b971c340d2..157582a213 100644 --- a/intersight_gosdk/model_appliance_group_status.go +++ b/intersight_gosdk/model_appliance_group_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_group_status_list.go b/intersight_gosdk/model_appliance_group_status_list.go index 2a9b9c066d..c060f42a76 100644 --- a/intersight_gosdk/model_appliance_group_status_list.go +++ b/intersight_gosdk/model_appliance_group_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_group_status_relationship.go b/intersight_gosdk/model_appliance_group_status_relationship.go index aee537ce1b..cd2d4b17d5 100644 --- a/intersight_gosdk/model_appliance_group_status_relationship.go +++ b/intersight_gosdk/model_appliance_group_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_group_status_response.go b/intersight_gosdk/model_appliance_group_status_response.go index 57b5a96e31..ee030cf90d 100644 --- a/intersight_gosdk/model_appliance_group_status_response.go +++ b/intersight_gosdk/model_appliance_group_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_image_bundle.go b/intersight_gosdk/model_appliance_image_bundle.go index 234da63802..467e740339 100644 --- a/intersight_gosdk/model_appliance_image_bundle.go +++ b/intersight_gosdk/model_appliance_image_bundle.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_image_bundle_list.go b/intersight_gosdk/model_appliance_image_bundle_list.go index 8e9550cda7..3429c84db8 100644 --- a/intersight_gosdk/model_appliance_image_bundle_list.go +++ b/intersight_gosdk/model_appliance_image_bundle_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_image_bundle_relationship.go b/intersight_gosdk/model_appliance_image_bundle_relationship.go index e1a2824a11..9155c210e8 100644 --- a/intersight_gosdk/model_appliance_image_bundle_relationship.go +++ b/intersight_gosdk/model_appliance_image_bundle_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_image_bundle_response.go b/intersight_gosdk/model_appliance_image_bundle_response.go index eaf1f763f9..95060b5393 100644 --- a/intersight_gosdk/model_appliance_image_bundle_response.go +++ b/intersight_gosdk/model_appliance_image_bundle_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_key_value_pair.go b/intersight_gosdk/model_appliance_key_value_pair.go index 1310fcd83c..3799503d76 100644 --- a/intersight_gosdk/model_appliance_key_value_pair.go +++ b/intersight_gosdk/model_appliance_key_value_pair.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_meta_manifest.go b/intersight_gosdk/model_appliance_meta_manifest.go index 74b46e6f18..bfd0909abc 100644 --- a/intersight_gosdk/model_appliance_meta_manifest.go +++ b/intersight_gosdk/model_appliance_meta_manifest.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_meta_manifest_list.go b/intersight_gosdk/model_appliance_meta_manifest_list.go index 386bb9400a..507acddc5a 100644 --- a/intersight_gosdk/model_appliance_meta_manifest_list.go +++ b/intersight_gosdk/model_appliance_meta_manifest_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_meta_manifest_response.go b/intersight_gosdk/model_appliance_meta_manifest_response.go index f28350693e..1dae1e6cab 100644 --- a/intersight_gosdk/model_appliance_meta_manifest_response.go +++ b/intersight_gosdk/model_appliance_meta_manifest_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_metadata_manifest_version.go b/intersight_gosdk/model_appliance_metadata_manifest_version.go index 18b8def433..a1196abb14 100644 --- a/intersight_gosdk/model_appliance_metadata_manifest_version.go +++ b/intersight_gosdk/model_appliance_metadata_manifest_version.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_metrics_config.go b/intersight_gosdk/model_appliance_metrics_config.go index e5bce7fd6f..d43c406a83 100644 --- a/intersight_gosdk/model_appliance_metrics_config.go +++ b/intersight_gosdk/model_appliance_metrics_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_metrics_config_list.go b/intersight_gosdk/model_appliance_metrics_config_list.go index 678a74d068..b0f8931714 100644 --- a/intersight_gosdk/model_appliance_metrics_config_list.go +++ b/intersight_gosdk/model_appliance_metrics_config_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_metrics_config_response.go b/intersight_gosdk/model_appliance_metrics_config_response.go index b1a447e2e7..f2f2a8b213 100644 --- a/intersight_gosdk/model_appliance_metrics_config_response.go +++ b/intersight_gosdk/model_appliance_metrics_config_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_network_link_status.go b/intersight_gosdk/model_appliance_network_link_status.go index b8780b7270..c5c36f0548 100644 --- a/intersight_gosdk/model_appliance_network_link_status.go +++ b/intersight_gosdk/model_appliance_network_link_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_network_link_status_list.go b/intersight_gosdk/model_appliance_network_link_status_list.go index d5021234e5..5080226f69 100644 --- a/intersight_gosdk/model_appliance_network_link_status_list.go +++ b/intersight_gosdk/model_appliance_network_link_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_network_link_status_relationship.go b/intersight_gosdk/model_appliance_network_link_status_relationship.go index 43eae8d5ca..b5c886d844 100644 --- a/intersight_gosdk/model_appliance_network_link_status_relationship.go +++ b/intersight_gosdk/model_appliance_network_link_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_network_link_status_response.go b/intersight_gosdk/model_appliance_network_link_status_response.go index 355032738b..838a2111fc 100644 --- a/intersight_gosdk/model_appliance_network_link_status_response.go +++ b/intersight_gosdk/model_appliance_network_link_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_network_status.go b/intersight_gosdk/model_appliance_network_status.go index 19d0f497d6..695d4ef49f 100644 --- a/intersight_gosdk/model_appliance_network_status.go +++ b/intersight_gosdk/model_appliance_network_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_node_info.go b/intersight_gosdk/model_appliance_node_info.go index 2f6addaac9..0dd11b59f7 100644 --- a/intersight_gosdk/model_appliance_node_info.go +++ b/intersight_gosdk/model_appliance_node_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_node_info_list.go b/intersight_gosdk/model_appliance_node_info_list.go index 6e67006e45..3e8d58e33e 100644 --- a/intersight_gosdk/model_appliance_node_info_list.go +++ b/intersight_gosdk/model_appliance_node_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_node_info_relationship.go b/intersight_gosdk/model_appliance_node_info_relationship.go index 9d694ad214..bc5876a146 100644 --- a/intersight_gosdk/model_appliance_node_info_relationship.go +++ b/intersight_gosdk/model_appliance_node_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_node_info_response.go b/intersight_gosdk/model_appliance_node_info_response.go index 39d454d675..29bc6016f8 100644 --- a/intersight_gosdk/model_appliance_node_info_response.go +++ b/intersight_gosdk/model_appliance_node_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_node_ip_info.go b/intersight_gosdk/model_appliance_node_ip_info.go index 2b5c254a22..142652cbcb 100644 --- a/intersight_gosdk/model_appliance_node_ip_info.go +++ b/intersight_gosdk/model_appliance_node_ip_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_node_op_status.go b/intersight_gosdk/model_appliance_node_op_status.go index fc96e9dd03..5c173d9520 100644 --- a/intersight_gosdk/model_appliance_node_op_status.go +++ b/intersight_gosdk/model_appliance_node_op_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_node_op_status_list.go b/intersight_gosdk/model_appliance_node_op_status_list.go index 40d0015155..5009299136 100644 --- a/intersight_gosdk/model_appliance_node_op_status_list.go +++ b/intersight_gosdk/model_appliance_node_op_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_node_op_status_relationship.go b/intersight_gosdk/model_appliance_node_op_status_relationship.go index 81f39032dc..27e340522d 100644 --- a/intersight_gosdk/model_appliance_node_op_status_relationship.go +++ b/intersight_gosdk/model_appliance_node_op_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_node_op_status_response.go b/intersight_gosdk/model_appliance_node_op_status_response.go index 9b9335ae22..f2f6328239 100644 --- a/intersight_gosdk/model_appliance_node_op_status_response.go +++ b/intersight_gosdk/model_appliance_node_op_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_node_status.go b/intersight_gosdk/model_appliance_node_status.go index b8c8e5204b..d4e24a0afb 100644 --- a/intersight_gosdk/model_appliance_node_status.go +++ b/intersight_gosdk/model_appliance_node_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_node_status_list.go b/intersight_gosdk/model_appliance_node_status_list.go index 64e12bb065..a999f3f780 100644 --- a/intersight_gosdk/model_appliance_node_status_list.go +++ b/intersight_gosdk/model_appliance_node_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_node_status_relationship.go b/intersight_gosdk/model_appliance_node_status_relationship.go index 8d59681977..ee2e3ec66f 100644 --- a/intersight_gosdk/model_appliance_node_status_relationship.go +++ b/intersight_gosdk/model_appliance_node_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_node_status_response.go b/intersight_gosdk/model_appliance_node_status_response.go index 0b8285eb52..2935dd753e 100644 --- a/intersight_gosdk/model_appliance_node_status_response.go +++ b/intersight_gosdk/model_appliance_node_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_release_note.go b/intersight_gosdk/model_appliance_release_note.go index cd61a0ae63..9ac19b8ea6 100644 --- a/intersight_gosdk/model_appliance_release_note.go +++ b/intersight_gosdk/model_appliance_release_note.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_release_note_list.go b/intersight_gosdk/model_appliance_release_note_list.go index a48b09b228..e3df13c4e9 100644 --- a/intersight_gosdk/model_appliance_release_note_list.go +++ b/intersight_gosdk/model_appliance_release_note_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_release_note_response.go b/intersight_gosdk/model_appliance_release_note_response.go index a0bec96ef2..74cbaa57cf 100644 --- a/intersight_gosdk/model_appliance_release_note_response.go +++ b/intersight_gosdk/model_appliance_release_note_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_remote_file_import.go b/intersight_gosdk/model_appliance_remote_file_import.go index a42a0dc537..14425074c9 100644 --- a/intersight_gosdk/model_appliance_remote_file_import.go +++ b/intersight_gosdk/model_appliance_remote_file_import.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_remote_file_import_list.go b/intersight_gosdk/model_appliance_remote_file_import_list.go index 7f44b744b5..344bb33339 100644 --- a/intersight_gosdk/model_appliance_remote_file_import_list.go +++ b/intersight_gosdk/model_appliance_remote_file_import_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_remote_file_import_response.go b/intersight_gosdk/model_appliance_remote_file_import_response.go index b10bae97da..4b5ee1fcc7 100644 --- a/intersight_gosdk/model_appliance_remote_file_import_response.go +++ b/intersight_gosdk/model_appliance_remote_file_import_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_restore.go b/intersight_gosdk/model_appliance_restore.go index 14d8bd912d..164b39af67 100644 --- a/intersight_gosdk/model_appliance_restore.go +++ b/intersight_gosdk/model_appliance_restore.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -37,7 +37,7 @@ type ApplianceRestore struct { IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` Messages []string `json:"Messages,omitempty"` // Password for authenticating with the file server. - Password *string `json:"Password,omitempty"` + Password *string "json:\"Password,omitempty\" validate:\"regexp=^$|^[^`]+$\"" // Start date and time of the restore process. StartTime *time.Time `json:"StartTime,omitempty"` // Status of the restore managed object. * `Started` - Backup or restore process has started. * `Created` - Backup or restore is in created state. * `Failed` - Backup or restore process has failed. * `Completed` - Backup or restore process has completed. * `Copied` - Backup file has been copied. * `Cleanup Failed` - Cleanup of the old backup has failed. @@ -512,7 +512,7 @@ func (o *ApplianceRestore) UnmarshalJSON(data []byte) (err error) { IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` Messages []string `json:"Messages,omitempty"` // Password for authenticating with the file server. - Password *string `json:"Password,omitempty"` + Password *string "json:\"Password,omitempty\" validate:\"regexp=^$|^[^`]+$\"" // Start date and time of the restore process. StartTime *time.Time `json:"StartTime,omitempty"` // Status of the restore managed object. * `Started` - Backup or restore process has started. * `Created` - Backup or restore is in created state. * `Failed` - Backup or restore process has failed. * `Completed` - Backup or restore process has completed. * `Copied` - Backup file has been copied. * `Cleanup Failed` - Cleanup of the old backup has failed. diff --git a/intersight_gosdk/model_appliance_restore_list.go b/intersight_gosdk/model_appliance_restore_list.go index 24c2b92a92..876e7ce011 100644 --- a/intersight_gosdk/model_appliance_restore_list.go +++ b/intersight_gosdk/model_appliance_restore_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_restore_response.go b/intersight_gosdk/model_appliance_restore_response.go index 3dc0dd4aad..31fca21538 100644 --- a/intersight_gosdk/model_appliance_restore_response.go +++ b/intersight_gosdk/model_appliance_restore_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_setup_info.go b/intersight_gosdk/model_appliance_setup_info.go index d39c286396..c41a63c63a 100644 --- a/intersight_gosdk/model_appliance_setup_info.go +++ b/intersight_gosdk/model_appliance_setup_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_setup_info_list.go b/intersight_gosdk/model_appliance_setup_info_list.go index 41d62bc7c4..da634dc7d1 100644 --- a/intersight_gosdk/model_appliance_setup_info_list.go +++ b/intersight_gosdk/model_appliance_setup_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_setup_info_response.go b/intersight_gosdk/model_appliance_setup_info_response.go index b8e372efbc..2616f265d3 100644 --- a/intersight_gosdk/model_appliance_setup_info_response.go +++ b/intersight_gosdk/model_appliance_setup_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_status_check.go b/intersight_gosdk/model_appliance_status_check.go index e9beeeea4e..d671a1c421 100644 --- a/intersight_gosdk/model_appliance_status_check.go +++ b/intersight_gosdk/model_appliance_status_check.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_system_info.go b/intersight_gosdk/model_appliance_system_info.go index c0bb5bff27..f4823f15df 100644 --- a/intersight_gosdk/model_appliance_system_info.go +++ b/intersight_gosdk/model_appliance_system_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_system_info_list.go b/intersight_gosdk/model_appliance_system_info_list.go index ffc1c042e7..32fefe0a06 100644 --- a/intersight_gosdk/model_appliance_system_info_list.go +++ b/intersight_gosdk/model_appliance_system_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_system_info_relationship.go b/intersight_gosdk/model_appliance_system_info_relationship.go index f31f949b8c..e4d1ebcc9a 100644 --- a/intersight_gosdk/model_appliance_system_info_relationship.go +++ b/intersight_gosdk/model_appliance_system_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_system_info_response.go b/intersight_gosdk/model_appliance_system_info_response.go index cc82035263..124ce695d7 100644 --- a/intersight_gosdk/model_appliance_system_info_response.go +++ b/intersight_gosdk/model_appliance_system_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_system_op_status.go b/intersight_gosdk/model_appliance_system_op_status.go index ad5cbb11bb..72d9d3de0b 100644 --- a/intersight_gosdk/model_appliance_system_op_status.go +++ b/intersight_gosdk/model_appliance_system_op_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_system_op_status_list.go b/intersight_gosdk/model_appliance_system_op_status_list.go index 05ed13ed23..65a5ef9ae2 100644 --- a/intersight_gosdk/model_appliance_system_op_status_list.go +++ b/intersight_gosdk/model_appliance_system_op_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_system_op_status_relationship.go b/intersight_gosdk/model_appliance_system_op_status_relationship.go index 783af5cfe7..8cbe116778 100644 --- a/intersight_gosdk/model_appliance_system_op_status_relationship.go +++ b/intersight_gosdk/model_appliance_system_op_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_system_op_status_response.go b/intersight_gosdk/model_appliance_system_op_status_response.go index eaecc71517..3bda01ede2 100644 --- a/intersight_gosdk/model_appliance_system_op_status_response.go +++ b/intersight_gosdk/model_appliance_system_op_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_system_status.go b/intersight_gosdk/model_appliance_system_status.go index de10ee19ad..5a857d0ff5 100644 --- a/intersight_gosdk/model_appliance_system_status.go +++ b/intersight_gosdk/model_appliance_system_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_system_status_list.go b/intersight_gosdk/model_appliance_system_status_list.go index 3bd72f9a5c..2f1c005151 100644 --- a/intersight_gosdk/model_appliance_system_status_list.go +++ b/intersight_gosdk/model_appliance_system_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_system_status_relationship.go b/intersight_gosdk/model_appliance_system_status_relationship.go index b49b0c9324..2199c16dba 100644 --- a/intersight_gosdk/model_appliance_system_status_relationship.go +++ b/intersight_gosdk/model_appliance_system_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_system_status_response.go b/intersight_gosdk/model_appliance_system_status_response.go index 2af53ad559..10018f51d6 100644 --- a/intersight_gosdk/model_appliance_system_status_response.go +++ b/intersight_gosdk/model_appliance_system_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_upgrade.go b/intersight_gosdk/model_appliance_upgrade.go index 5358dd13c6..055e2e7982 100644 --- a/intersight_gosdk/model_appliance_upgrade.go +++ b/intersight_gosdk/model_appliance_upgrade.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_upgrade_list.go b/intersight_gosdk/model_appliance_upgrade_list.go index 7e3c870622..86452b5af9 100644 --- a/intersight_gosdk/model_appliance_upgrade_list.go +++ b/intersight_gosdk/model_appliance_upgrade_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_upgrade_policy.go b/intersight_gosdk/model_appliance_upgrade_policy.go index 18ed6866a2..36d9dce812 100644 --- a/intersight_gosdk/model_appliance_upgrade_policy.go +++ b/intersight_gosdk/model_appliance_upgrade_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_upgrade_policy_list.go b/intersight_gosdk/model_appliance_upgrade_policy_list.go index c1e2a6a7cf..0462c9f71f 100644 --- a/intersight_gosdk/model_appliance_upgrade_policy_list.go +++ b/intersight_gosdk/model_appliance_upgrade_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_upgrade_policy_response.go b/intersight_gosdk/model_appliance_upgrade_policy_response.go index e5a460dc2f..b06bece30d 100644 --- a/intersight_gosdk/model_appliance_upgrade_policy_response.go +++ b/intersight_gosdk/model_appliance_upgrade_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_upgrade_relationship.go b/intersight_gosdk/model_appliance_upgrade_relationship.go index 4056064cc8..ee5b9ca6cf 100644 --- a/intersight_gosdk/model_appliance_upgrade_relationship.go +++ b/intersight_gosdk/model_appliance_upgrade_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_upgrade_response.go b/intersight_gosdk/model_appliance_upgrade_response.go index 5c3055be8c..263a8d5c99 100644 --- a/intersight_gosdk/model_appliance_upgrade_response.go +++ b/intersight_gosdk/model_appliance_upgrade_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_upgrade_tracker.go b/intersight_gosdk/model_appliance_upgrade_tracker.go index 503d0c5350..b1c0a1d641 100644 --- a/intersight_gosdk/model_appliance_upgrade_tracker.go +++ b/intersight_gosdk/model_appliance_upgrade_tracker.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_upgrade_tracker_list.go b/intersight_gosdk/model_appliance_upgrade_tracker_list.go index d8bb35d433..52dc0dfb62 100644 --- a/intersight_gosdk/model_appliance_upgrade_tracker_list.go +++ b/intersight_gosdk/model_appliance_upgrade_tracker_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_upgrade_tracker_response.go b/intersight_gosdk/model_appliance_upgrade_tracker_response.go index 12187ae5cb..13c1d8b905 100644 --- a/intersight_gosdk/model_appliance_upgrade_tracker_response.go +++ b/intersight_gosdk/model_appliance_upgrade_tracker_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_address_information.go b/intersight_gosdk/model_asset_address_information.go index f89b790fe2..c3623092f4 100644 --- a/intersight_gosdk/model_asset_address_information.go +++ b/intersight_gosdk/model_asset_address_information.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_alarm_summary.go b/intersight_gosdk/model_asset_alarm_summary.go index 0bb0053f69..8baa958285 100644 --- a/intersight_gosdk/model_asset_alarm_summary.go +++ b/intersight_gosdk/model_asset_alarm_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_api_key_credential.go b/intersight_gosdk/model_asset_api_key_credential.go index c6f07c9a44..861538b4df 100644 --- a/intersight_gosdk/model_asset_api_key_credential.go +++ b/intersight_gosdk/model_asset_api_key_credential.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_claim_signature.go b/intersight_gosdk/model_asset_claim_signature.go index c9d2c40679..7833f2119d 100644 --- a/intersight_gosdk/model_asset_claim_signature.go +++ b/intersight_gosdk/model_asset_claim_signature.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_client_certificate_credential.go b/intersight_gosdk/model_asset_client_certificate_credential.go index b5c16f3247..4c7aa23bea 100644 --- a/intersight_gosdk/model_asset_client_certificate_credential.go +++ b/intersight_gosdk/model_asset_client_certificate_credential.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_cloud_connection.go b/intersight_gosdk/model_asset_cloud_connection.go index b3b80a261b..a3d4fb03b3 100644 --- a/intersight_gosdk/model_asset_cloud_connection.go +++ b/intersight_gosdk/model_asset_cloud_connection.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_cluster_member.go b/intersight_gosdk/model_asset_cluster_member.go index 53f5ed0349..1bd56e7caa 100644 --- a/intersight_gosdk/model_asset_cluster_member.go +++ b/intersight_gosdk/model_asset_cluster_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_cluster_member_list.go b/intersight_gosdk/model_asset_cluster_member_list.go index 0e7e92f2d4..7d1c348545 100644 --- a/intersight_gosdk/model_asset_cluster_member_list.go +++ b/intersight_gosdk/model_asset_cluster_member_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_cluster_member_relationship.go b/intersight_gosdk/model_asset_cluster_member_relationship.go index 8319c13b4f..7f01d46c22 100644 --- a/intersight_gosdk/model_asset_cluster_member_relationship.go +++ b/intersight_gosdk/model_asset_cluster_member_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_cluster_member_response.go b/intersight_gosdk/model_asset_cluster_member_response.go index 9f30a274e7..a024803775 100644 --- a/intersight_gosdk/model_asset_cluster_member_response.go +++ b/intersight_gosdk/model_asset_cluster_member_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_connection.go b/intersight_gosdk/model_asset_connection.go index b7233d4e84..eef263c7b6 100644 --- a/intersight_gosdk/model_asset_connection.go +++ b/intersight_gosdk/model_asset_connection.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_contract_information.go b/intersight_gosdk/model_asset_contract_information.go index b26d8acf8e..0d56380b2c 100644 --- a/intersight_gosdk/model_asset_contract_information.go +++ b/intersight_gosdk/model_asset_contract_information.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_credential.go b/intersight_gosdk/model_asset_credential.go index 986c90dd9c..666dbf3184 100644 --- a/intersight_gosdk/model_asset_credential.go +++ b/intersight_gosdk/model_asset_credential.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_customer_information.go b/intersight_gosdk/model_asset_customer_information.go index 66b841b391..c9cad864d6 100644 --- a/intersight_gosdk/model_asset_customer_information.go +++ b/intersight_gosdk/model_asset_customer_information.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_deployment.go b/intersight_gosdk/model_asset_deployment.go index 6e7fa75727..eb67e91a12 100644 --- a/intersight_gosdk/model_asset_deployment.go +++ b/intersight_gosdk/model_asset_deployment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_deployment_alarm_info.go b/intersight_gosdk/model_asset_deployment_alarm_info.go index 036fc7dbc9..73660d3797 100644 --- a/intersight_gosdk/model_asset_deployment_alarm_info.go +++ b/intersight_gosdk/model_asset_deployment_alarm_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_deployment_device.go b/intersight_gosdk/model_asset_deployment_device.go index b9a79a20a2..36c2ba3625 100644 --- a/intersight_gosdk/model_asset_deployment_device.go +++ b/intersight_gosdk/model_asset_deployment_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_deployment_device_alarm_info.go b/intersight_gosdk/model_asset_deployment_device_alarm_info.go index 96f98b7926..fa14914833 100644 --- a/intersight_gosdk/model_asset_deployment_device_alarm_info.go +++ b/intersight_gosdk/model_asset_deployment_device_alarm_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_deployment_device_information.go b/intersight_gosdk/model_asset_deployment_device_information.go index 0290191b15..ec27c13519 100644 --- a/intersight_gosdk/model_asset_deployment_device_information.go +++ b/intersight_gosdk/model_asset_deployment_device_information.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_deployment_device_list.go b/intersight_gosdk/model_asset_deployment_device_list.go index 1bef0f62de..3138002dca 100644 --- a/intersight_gosdk/model_asset_deployment_device_list.go +++ b/intersight_gosdk/model_asset_deployment_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_deployment_device_relationship.go b/intersight_gosdk/model_asset_deployment_device_relationship.go index cf74d8b118..9ced35abde 100644 --- a/intersight_gosdk/model_asset_deployment_device_relationship.go +++ b/intersight_gosdk/model_asset_deployment_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_deployment_device_response.go b/intersight_gosdk/model_asset_deployment_device_response.go index 0b40c94401..8446d23b8b 100644 --- a/intersight_gosdk/model_asset_deployment_device_response.go +++ b/intersight_gosdk/model_asset_deployment_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_deployment_list.go b/intersight_gosdk/model_asset_deployment_list.go index bcdf91616e..9de07c1005 100644 --- a/intersight_gosdk/model_asset_deployment_list.go +++ b/intersight_gosdk/model_asset_deployment_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_deployment_relationship.go b/intersight_gosdk/model_asset_deployment_relationship.go index b7945ae33b..fedbfef22b 100644 --- a/intersight_gosdk/model_asset_deployment_relationship.go +++ b/intersight_gosdk/model_asset_deployment_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_deployment_response.go b/intersight_gosdk/model_asset_deployment_response.go index 75a716f5ac..748c3f8a10 100644 --- a/intersight_gosdk/model_asset_deployment_response.go +++ b/intersight_gosdk/model_asset_deployment_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_claim.go b/intersight_gosdk/model_asset_device_claim.go index 0df910fa08..c2e9157522 100644 --- a/intersight_gosdk/model_asset_device_claim.go +++ b/intersight_gosdk/model_asset_device_claim.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_claim_relationship.go b/intersight_gosdk/model_asset_device_claim_relationship.go index 4743ce0df0..008d635f11 100644 --- a/intersight_gosdk/model_asset_device_claim_relationship.go +++ b/intersight_gosdk/model_asset_device_claim_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_configuration.go b/intersight_gosdk/model_asset_device_configuration.go index fd8718a3ef..d178963fca 100644 --- a/intersight_gosdk/model_asset_device_configuration.go +++ b/intersight_gosdk/model_asset_device_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_configuration_list.go b/intersight_gosdk/model_asset_device_configuration_list.go index dfa1aee911..91046e27e9 100644 --- a/intersight_gosdk/model_asset_device_configuration_list.go +++ b/intersight_gosdk/model_asset_device_configuration_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_configuration_relationship.go b/intersight_gosdk/model_asset_device_configuration_relationship.go index b23b4cc66f..62a295c9b0 100644 --- a/intersight_gosdk/model_asset_device_configuration_relationship.go +++ b/intersight_gosdk/model_asset_device_configuration_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_configuration_response.go b/intersight_gosdk/model_asset_device_configuration_response.go index 81f9eef13a..4cdf6c7bd4 100644 --- a/intersight_gosdk/model_asset_device_configuration_response.go +++ b/intersight_gosdk/model_asset_device_configuration_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_connection.go b/intersight_gosdk/model_asset_device_connection.go index d6b18c2dca..e00be6dea9 100644 --- a/intersight_gosdk/model_asset_device_connection.go +++ b/intersight_gosdk/model_asset_device_connection.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_connection_relationship.go b/intersight_gosdk/model_asset_device_connection_relationship.go index daf43b73ad..1b72e89e8d 100644 --- a/intersight_gosdk/model_asset_device_connection_relationship.go +++ b/intersight_gosdk/model_asset_device_connection_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_connector_manager.go b/intersight_gosdk/model_asset_device_connector_manager.go index 46fd057399..49e587ab8a 100644 --- a/intersight_gosdk/model_asset_device_connector_manager.go +++ b/intersight_gosdk/model_asset_device_connector_manager.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_connector_manager_list.go b/intersight_gosdk/model_asset_device_connector_manager_list.go index 3ba0dfa914..ab55dc6da1 100644 --- a/intersight_gosdk/model_asset_device_connector_manager_list.go +++ b/intersight_gosdk/model_asset_device_connector_manager_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_connector_manager_response.go b/intersight_gosdk/model_asset_device_connector_manager_response.go index 2332810099..c87039d7ae 100644 --- a/intersight_gosdk/model_asset_device_connector_manager_response.go +++ b/intersight_gosdk/model_asset_device_connector_manager_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_contract_information.go b/intersight_gosdk/model_asset_device_contract_information.go index 26fadcf745..a024d4d5a1 100644 --- a/intersight_gosdk/model_asset_device_contract_information.go +++ b/intersight_gosdk/model_asset_device_contract_information.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_contract_information_list.go b/intersight_gosdk/model_asset_device_contract_information_list.go index 5d9f8de2d8..cad8568822 100644 --- a/intersight_gosdk/model_asset_device_contract_information_list.go +++ b/intersight_gosdk/model_asset_device_contract_information_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_contract_information_relationship.go b/intersight_gosdk/model_asset_device_contract_information_relationship.go index b2c968510d..a4a0da55f2 100644 --- a/intersight_gosdk/model_asset_device_contract_information_relationship.go +++ b/intersight_gosdk/model_asset_device_contract_information_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_contract_information_response.go b/intersight_gosdk/model_asset_device_contract_information_response.go index 4fd35a0e86..500323dc98 100644 --- a/intersight_gosdk/model_asset_device_contract_information_response.go +++ b/intersight_gosdk/model_asset_device_contract_information_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_contract_notification.go b/intersight_gosdk/model_asset_device_contract_notification.go index c51d92753e..93fdf477f1 100644 --- a/intersight_gosdk/model_asset_device_contract_notification.go +++ b/intersight_gosdk/model_asset_device_contract_notification.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_endpoint_local_credential.go b/intersight_gosdk/model_asset_device_endpoint_local_credential.go index f2132af3c9..bf8fd82a1a 100644 --- a/intersight_gosdk/model_asset_device_endpoint_local_credential.go +++ b/intersight_gosdk/model_asset_device_endpoint_local_credential.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_information.go b/intersight_gosdk/model_asset_device_information.go index d11bce42d9..54b024abdf 100644 --- a/intersight_gosdk/model_asset_device_information.go +++ b/intersight_gosdk/model_asset_device_information.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_registration.go b/intersight_gosdk/model_asset_device_registration.go index f3efca24f7..7421f86ef7 100644 --- a/intersight_gosdk/model_asset_device_registration.go +++ b/intersight_gosdk/model_asset_device_registration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_registration_list.go b/intersight_gosdk/model_asset_device_registration_list.go index 41f722bc29..019cf59ee1 100644 --- a/intersight_gosdk/model_asset_device_registration_list.go +++ b/intersight_gosdk/model_asset_device_registration_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_registration_relationship.go b/intersight_gosdk/model_asset_device_registration_relationship.go index 361aead422..0d3deba41f 100644 --- a/intersight_gosdk/model_asset_device_registration_relationship.go +++ b/intersight_gosdk/model_asset_device_registration_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_registration_response.go b/intersight_gosdk/model_asset_device_registration_response.go index 834e1b3eb8..625fc7a084 100644 --- a/intersight_gosdk/model_asset_device_registration_response.go +++ b/intersight_gosdk/model_asset_device_registration_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_statistics.go b/intersight_gosdk/model_asset_device_statistics.go index c0ed9f0832..3bff197f34 100644 --- a/intersight_gosdk/model_asset_device_statistics.go +++ b/intersight_gosdk/model_asset_device_statistics.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_transaction.go b/intersight_gosdk/model_asset_device_transaction.go index 012dc566fc..b177f89960 100644 --- a/intersight_gosdk/model_asset_device_transaction.go +++ b/intersight_gosdk/model_asset_device_transaction.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_generic_target_claim_options.go b/intersight_gosdk/model_asset_generic_target_claim_options.go index 507fe281b7..56e02124ad 100644 --- a/intersight_gosdk/model_asset_generic_target_claim_options.go +++ b/intersight_gosdk/model_asset_generic_target_claim_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_global_ultimate.go b/intersight_gosdk/model_asset_global_ultimate.go index 9b0f96b40e..d6b0dcd6fb 100644 --- a/intersight_gosdk/model_asset_global_ultimate.go +++ b/intersight_gosdk/model_asset_global_ultimate.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_google_cloud_platform_service_account_key_credential.go b/intersight_gosdk/model_asset_google_cloud_platform_service_account_key_credential.go index d8b24ca6b3..83e117d8b7 100644 --- a/intersight_gosdk/model_asset_google_cloud_platform_service_account_key_credential.go +++ b/intersight_gosdk/model_asset_google_cloud_platform_service_account_key_credential.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_http_connection.go b/intersight_gosdk/model_asset_http_connection.go index 2dbb9e9d70..8c5c5988b2 100644 --- a/intersight_gosdk/model_asset_http_connection.go +++ b/intersight_gosdk/model_asset_http_connection.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_intersight_device_connector_connection.go b/intersight_gosdk/model_asset_intersight_device_connector_connection.go index 2ac1b2387e..81dfa18c25 100644 --- a/intersight_gosdk/model_asset_intersight_device_connector_connection.go +++ b/intersight_gosdk/model_asset_intersight_device_connector_connection.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_meraki_cloud_options.go b/intersight_gosdk/model_asset_meraki_cloud_options.go index dae6b63eb5..3c670331fa 100644 --- a/intersight_gosdk/model_asset_meraki_cloud_options.go +++ b/intersight_gosdk/model_asset_meraki_cloud_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_metering_type.go b/intersight_gosdk/model_asset_metering_type.go index 6ccb4a590d..9d58339244 100644 --- a/intersight_gosdk/model_asset_metering_type.go +++ b/intersight_gosdk/model_asset_metering_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_new_relic_credential.go b/intersight_gosdk/model_asset_new_relic_credential.go index 3fa584dab0..371d459d1f 100644 --- a/intersight_gosdk/model_asset_new_relic_credential.go +++ b/intersight_gosdk/model_asset_new_relic_credential.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_no_authentication_credential.go b/intersight_gosdk/model_asset_no_authentication_credential.go index c7d4d43639..3f47db30d6 100644 --- a/intersight_gosdk/model_asset_no_authentication_credential.go +++ b/intersight_gosdk/model_asset_no_authentication_credential.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_oauth_bearer_token_credential.go b/intersight_gosdk/model_asset_oauth_bearer_token_credential.go index 74e9f5c12e..7084c21c07 100644 --- a/intersight_gosdk/model_asset_oauth_bearer_token_credential.go +++ b/intersight_gosdk/model_asset_oauth_bearer_token_credential.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_oauth_client_id_secret_credential.go b/intersight_gosdk/model_asset_oauth_client_id_secret_credential.go index 6e57225b02..f6f7b46d08 100644 --- a/intersight_gosdk/model_asset_oauth_client_id_secret_credential.go +++ b/intersight_gosdk/model_asset_oauth_client_id_secret_credential.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_orchestration_civp_vmware_vcenter_options.go b/intersight_gosdk/model_asset_orchestration_civp_vmware_vcenter_options.go index b64f40fcdf..47f4678d5e 100644 --- a/intersight_gosdk/model_asset_orchestration_civp_vmware_vcenter_options.go +++ b/intersight_gosdk/model_asset_orchestration_civp_vmware_vcenter_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_orchestration_hitachi_virtual_storage_platform_options.go b/intersight_gosdk/model_asset_orchestration_hitachi_virtual_storage_platform_options.go index 66608957e4..58ef3d53a2 100644 --- a/intersight_gosdk/model_asset_orchestration_hitachi_virtual_storage_platform_options.go +++ b/intersight_gosdk/model_asset_orchestration_hitachi_virtual_storage_platform_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_orchestration_hsm_vmware_vcenter_options.go b/intersight_gosdk/model_asset_orchestration_hsm_vmware_vcenter_options.go index b96c33be27..3a96ba8aa9 100644 --- a/intersight_gosdk/model_asset_orchestration_hsm_vmware_vcenter_options.go +++ b/intersight_gosdk/model_asset_orchestration_hsm_vmware_vcenter_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_orchestration_service.go b/intersight_gosdk/model_asset_orchestration_service.go index e63138ee81..fcab154bc8 100644 --- a/intersight_gosdk/model_asset_orchestration_service.go +++ b/intersight_gosdk/model_asset_orchestration_service.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_parent_connection_signature.go b/intersight_gosdk/model_asset_parent_connection_signature.go index 00e304690e..59ac22de07 100644 --- a/intersight_gosdk/model_asset_parent_connection_signature.go +++ b/intersight_gosdk/model_asset_parent_connection_signature.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_private_key_credential.go b/intersight_gosdk/model_asset_private_key_credential.go index 77b7febb2e..9f91053ce4 100644 --- a/intersight_gosdk/model_asset_private_key_credential.go +++ b/intersight_gosdk/model_asset_private_key_credential.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_product_information.go b/intersight_gosdk/model_asset_product_information.go index e8104b98ad..10cb96a684 100644 --- a/intersight_gosdk/model_asset_product_information.go +++ b/intersight_gosdk/model_asset_product_information.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_scoped_target_connection.go b/intersight_gosdk/model_asset_scoped_target_connection.go index 25395fbaf5..2f47d7f4aa 100644 --- a/intersight_gosdk/model_asset_scoped_target_connection.go +++ b/intersight_gosdk/model_asset_scoped_target_connection.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_service.go b/intersight_gosdk/model_asset_service.go index d504074674..03c2dd9fc1 100644 --- a/intersight_gosdk/model_asset_service.go +++ b/intersight_gosdk/model_asset_service.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_service_now_credential.go b/intersight_gosdk/model_asset_service_now_credential.go index 03a816842a..3b78fc0760 100644 --- a/intersight_gosdk/model_asset_service_now_credential.go +++ b/intersight_gosdk/model_asset_service_now_credential.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_service_options.go b/intersight_gosdk/model_asset_service_options.go index 6641557500..1c76ee0ddc 100644 --- a/intersight_gosdk/model_asset_service_options.go +++ b/intersight_gosdk/model_asset_service_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_ssh_connection.go b/intersight_gosdk/model_asset_ssh_connection.go index 931648b6d5..797f776c91 100644 --- a/intersight_gosdk/model_asset_ssh_connection.go +++ b/intersight_gosdk/model_asset_ssh_connection.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_subscription.go b/intersight_gosdk/model_asset_subscription.go index d6445788ff..1ae5b79448 100644 --- a/intersight_gosdk/model_asset_subscription.go +++ b/intersight_gosdk/model_asset_subscription.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_subscription_account.go b/intersight_gosdk/model_asset_subscription_account.go index 872241bd56..6c213e5e72 100644 --- a/intersight_gosdk/model_asset_subscription_account.go +++ b/intersight_gosdk/model_asset_subscription_account.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_subscription_account_list.go b/intersight_gosdk/model_asset_subscription_account_list.go index a2759866d8..8236c39ec0 100644 --- a/intersight_gosdk/model_asset_subscription_account_list.go +++ b/intersight_gosdk/model_asset_subscription_account_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_subscription_account_relationship.go b/intersight_gosdk/model_asset_subscription_account_relationship.go index 70d616ebf4..c405a490c1 100644 --- a/intersight_gosdk/model_asset_subscription_account_relationship.go +++ b/intersight_gosdk/model_asset_subscription_account_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_subscription_account_response.go b/intersight_gosdk/model_asset_subscription_account_response.go index d0de8fcb40..4d94de5a78 100644 --- a/intersight_gosdk/model_asset_subscription_account_response.go +++ b/intersight_gosdk/model_asset_subscription_account_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_subscription_device_contract_information.go b/intersight_gosdk/model_asset_subscription_device_contract_information.go index 3a553aad6c..5796fa7e53 100644 --- a/intersight_gosdk/model_asset_subscription_device_contract_information.go +++ b/intersight_gosdk/model_asset_subscription_device_contract_information.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_subscription_device_contract_information_list.go b/intersight_gosdk/model_asset_subscription_device_contract_information_list.go index b67bcf0aca..879a8e6885 100644 --- a/intersight_gosdk/model_asset_subscription_device_contract_information_list.go +++ b/intersight_gosdk/model_asset_subscription_device_contract_information_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_subscription_device_contract_information_response.go b/intersight_gosdk/model_asset_subscription_device_contract_information_response.go index a1939cf156..804a13e562 100644 --- a/intersight_gosdk/model_asset_subscription_device_contract_information_response.go +++ b/intersight_gosdk/model_asset_subscription_device_contract_information_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_subscription_list.go b/intersight_gosdk/model_asset_subscription_list.go index 9dd1a419ab..5f20db151d 100644 --- a/intersight_gosdk/model_asset_subscription_list.go +++ b/intersight_gosdk/model_asset_subscription_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_subscription_relationship.go b/intersight_gosdk/model_asset_subscription_relationship.go index 06a2c72409..b080fb7833 100644 --- a/intersight_gosdk/model_asset_subscription_relationship.go +++ b/intersight_gosdk/model_asset_subscription_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_subscription_response.go b/intersight_gosdk/model_asset_subscription_response.go index 9d53387d33..bef17dedc8 100644 --- a/intersight_gosdk/model_asset_subscription_response.go +++ b/intersight_gosdk/model_asset_subscription_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_sudi_info.go b/intersight_gosdk/model_asset_sudi_info.go index 6726bbc393..68e826f6f7 100644 --- a/intersight_gosdk/model_asset_sudi_info.go +++ b/intersight_gosdk/model_asset_sudi_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_target.go b/intersight_gosdk/model_asset_target.go index b268282223..c7eae94374 100644 --- a/intersight_gosdk/model_asset_target.go +++ b/intersight_gosdk/model_asset_target.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_target_key.go b/intersight_gosdk/model_asset_target_key.go index fcb070ada2..0b5ea283a1 100644 --- a/intersight_gosdk/model_asset_target_key.go +++ b/intersight_gosdk/model_asset_target_key.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_target_list.go b/intersight_gosdk/model_asset_target_list.go index 1529590ce2..661c793480 100644 --- a/intersight_gosdk/model_asset_target_list.go +++ b/intersight_gosdk/model_asset_target_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_target_relationship.go b/intersight_gosdk/model_asset_target_relationship.go index 9b2f285b5f..91d85ab326 100644 --- a/intersight_gosdk/model_asset_target_relationship.go +++ b/intersight_gosdk/model_asset_target_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_target_response.go b/intersight_gosdk/model_asset_target_response.go index 9672012c19..98aee51e42 100644 --- a/intersight_gosdk/model_asset_target_response.go +++ b/intersight_gosdk/model_asset_target_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_target_signature.go b/intersight_gosdk/model_asset_target_signature.go index 65337ca4a6..7046194699 100644 --- a/intersight_gosdk/model_asset_target_signature.go +++ b/intersight_gosdk/model_asset_target_signature.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_target_status_details.go b/intersight_gosdk/model_asset_target_status_details.go index 9f79960f47..0e85964fb3 100644 --- a/intersight_gosdk/model_asset_target_status_details.go +++ b/intersight_gosdk/model_asset_target_status_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_terraform_integration_service.go b/intersight_gosdk/model_asset_terraform_integration_service.go index 5204a9fcca..35b4aac607 100644 --- a/intersight_gosdk/model_asset_terraform_integration_service.go +++ b/intersight_gosdk/model_asset_terraform_integration_service.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_terraform_integration_terraform_agent_options.go b/intersight_gosdk/model_asset_terraform_integration_terraform_agent_options.go index c862995b83..07ce7dc96e 100644 --- a/intersight_gosdk/model_asset_terraform_integration_terraform_agent_options.go +++ b/intersight_gosdk/model_asset_terraform_integration_terraform_agent_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_terraform_integration_terraform_cloud_options.go b/intersight_gosdk/model_asset_terraform_integration_terraform_cloud_options.go index 77c5a1ce0c..cbe13a3df2 100644 --- a/intersight_gosdk/model_asset_terraform_integration_terraform_cloud_options.go +++ b/intersight_gosdk/model_asset_terraform_integration_terraform_cloud_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_username_password_credential.go b/intersight_gosdk/model_asset_username_password_credential.go index 7f2af73d4b..b44a5eca49 100644 --- a/intersight_gosdk/model_asset_username_password_credential.go +++ b/intersight_gosdk/model_asset_username_password_credential.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_virtualization_amazon_web_service_options.go b/intersight_gosdk/model_asset_virtualization_amazon_web_service_options.go index 629a274d54..125158ed0e 100644 --- a/intersight_gosdk/model_asset_virtualization_amazon_web_service_options.go +++ b/intersight_gosdk/model_asset_virtualization_amazon_web_service_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_virtualization_cloud_options.go b/intersight_gosdk/model_asset_virtualization_cloud_options.go index b8204f0e0d..2193f57f1e 100644 --- a/intersight_gosdk/model_asset_virtualization_cloud_options.go +++ b/intersight_gosdk/model_asset_virtualization_cloud_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_virtualization_service.go b/intersight_gosdk/model_asset_virtualization_service.go index f15a7ea4a3..6a4037972b 100644 --- a/intersight_gosdk/model_asset_virtualization_service.go +++ b/intersight_gosdk/model_asset_virtualization_service.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_vm_host.go b/intersight_gosdk/model_asset_vm_host.go index f64c6b73fe..041e44acb3 100644 --- a/intersight_gosdk/model_asset_vm_host.go +++ b/intersight_gosdk/model_asset_vm_host.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_workload_optimizer_amazon_web_services_billing_options.go b/intersight_gosdk/model_asset_workload_optimizer_amazon_web_services_billing_options.go index afc15576d9..374549a11d 100644 --- a/intersight_gosdk/model_asset_workload_optimizer_amazon_web_services_billing_options.go +++ b/intersight_gosdk/model_asset_workload_optimizer_amazon_web_services_billing_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_workload_optimizer_dynatrace_options.go b/intersight_gosdk/model_asset_workload_optimizer_dynatrace_options.go index 27d2fae462..ad71825f01 100644 --- a/intersight_gosdk/model_asset_workload_optimizer_dynatrace_options.go +++ b/intersight_gosdk/model_asset_workload_optimizer_dynatrace_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_workload_optimizer_google_cloud_platform_billing_options.go b/intersight_gosdk/model_asset_workload_optimizer_google_cloud_platform_billing_options.go index 3e64255226..e5b6fd4335 100644 --- a/intersight_gosdk/model_asset_workload_optimizer_google_cloud_platform_billing_options.go +++ b/intersight_gosdk/model_asset_workload_optimizer_google_cloud_platform_billing_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_workload_optimizer_hyperv_options.go b/intersight_gosdk/model_asset_workload_optimizer_hyperv_options.go index 427eb7a295..069ce5f724 100644 --- a/intersight_gosdk/model_asset_workload_optimizer_hyperv_options.go +++ b/intersight_gosdk/model_asset_workload_optimizer_hyperv_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_application_insights_options.go b/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_application_insights_options.go index 69f472b69d..33909d0b4c 100644 --- a/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_application_insights_options.go +++ b/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_application_insights_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_billing_options.go b/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_billing_options.go index aa447d92d9..fe711f2b84 100644 --- a/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_billing_options.go +++ b/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_billing_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_enterprise_agreement_options.go b/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_enterprise_agreement_options.go index 694baa52d9..041c5dc36b 100644 --- a/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_enterprise_agreement_options.go +++ b/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_enterprise_agreement_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_service_principal_options.go b/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_service_principal_options.go index a3effeb359..f24983fced 100644 --- a/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_service_principal_options.go +++ b/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_service_principal_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_workload_optimizer_microsoft_sql_server_options.go b/intersight_gosdk/model_asset_workload_optimizer_microsoft_sql_server_options.go index 0291a026a0..297df2e6ed 100644 --- a/intersight_gosdk/model_asset_workload_optimizer_microsoft_sql_server_options.go +++ b/intersight_gosdk/model_asset_workload_optimizer_microsoft_sql_server_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_workload_optimizer_new_relic_options.go b/intersight_gosdk/model_asset_workload_optimizer_new_relic_options.go index 06971d02c7..5468fcfe8c 100644 --- a/intersight_gosdk/model_asset_workload_optimizer_new_relic_options.go +++ b/intersight_gosdk/model_asset_workload_optimizer_new_relic_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_workload_optimizer_open_stack_options.go b/intersight_gosdk/model_asset_workload_optimizer_open_stack_options.go index 71088bded4..101077e384 100644 --- a/intersight_gosdk/model_asset_workload_optimizer_open_stack_options.go +++ b/intersight_gosdk/model_asset_workload_optimizer_open_stack_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_workload_optimizer_oracle_database_server_options.go b/intersight_gosdk/model_asset_workload_optimizer_oracle_database_server_options.go index 0081768fe4..ad4ddd46f4 100644 --- a/intersight_gosdk/model_asset_workload_optimizer_oracle_database_server_options.go +++ b/intersight_gosdk/model_asset_workload_optimizer_oracle_database_server_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_workload_optimizer_red_hat_open_stack_options.go b/intersight_gosdk/model_asset_workload_optimizer_red_hat_open_stack_options.go index 2fb91967b8..3419a9edca 100644 --- a/intersight_gosdk/model_asset_workload_optimizer_red_hat_open_stack_options.go +++ b/intersight_gosdk/model_asset_workload_optimizer_red_hat_open_stack_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_workload_optimizer_service.go b/intersight_gosdk/model_asset_workload_optimizer_service.go index a4de0f6fb2..2d67e797a1 100644 --- a/intersight_gosdk/model_asset_workload_optimizer_service.go +++ b/intersight_gosdk/model_asset_workload_optimizer_service.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_workload_optimizer_vmware_vcenter_options.go b/intersight_gosdk/model_asset_workload_optimizer_vmware_vcenter_options.go index e6cb0b7103..c6c3aeb101 100644 --- a/intersight_gosdk/model_asset_workload_optimizer_vmware_vcenter_options.go +++ b/intersight_gosdk/model_asset_workload_optimizer_vmware_vcenter_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_boot_device.go b/intersight_gosdk/model_bios_boot_device.go index 90d7b33c9e..638360e604 100644 --- a/intersight_gosdk/model_bios_boot_device.go +++ b/intersight_gosdk/model_bios_boot_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_boot_device_list.go b/intersight_gosdk/model_bios_boot_device_list.go index 8cfe6de0e3..b04dd1ab4a 100644 --- a/intersight_gosdk/model_bios_boot_device_list.go +++ b/intersight_gosdk/model_bios_boot_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_boot_device_relationship.go b/intersight_gosdk/model_bios_boot_device_relationship.go index 55c6ff827f..2596e0a09d 100644 --- a/intersight_gosdk/model_bios_boot_device_relationship.go +++ b/intersight_gosdk/model_bios_boot_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_boot_device_response.go b/intersight_gosdk/model_bios_boot_device_response.go index c24de90d14..7135116f21 100644 --- a/intersight_gosdk/model_bios_boot_device_response.go +++ b/intersight_gosdk/model_bios_boot_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_boot_mode.go b/intersight_gosdk/model_bios_boot_mode.go index 4f89d2e754..f090471410 100644 --- a/intersight_gosdk/model_bios_boot_mode.go +++ b/intersight_gosdk/model_bios_boot_mode.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_boot_mode_list.go b/intersight_gosdk/model_bios_boot_mode_list.go index 0ff51319c7..abe1eb638c 100644 --- a/intersight_gosdk/model_bios_boot_mode_list.go +++ b/intersight_gosdk/model_bios_boot_mode_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_boot_mode_relationship.go b/intersight_gosdk/model_bios_boot_mode_relationship.go index c98205d4b9..be2bed3ab1 100644 --- a/intersight_gosdk/model_bios_boot_mode_relationship.go +++ b/intersight_gosdk/model_bios_boot_mode_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_boot_mode_response.go b/intersight_gosdk/model_bios_boot_mode_response.go index 80aaac646d..afe8f89028 100644 --- a/intersight_gosdk/model_bios_boot_mode_response.go +++ b/intersight_gosdk/model_bios_boot_mode_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_policy.go b/intersight_gosdk/model_bios_policy.go index 956d6b348c..55d8318457 100644 --- a/intersight_gosdk/model_bios_policy.go +++ b/intersight_gosdk/model_bios_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -93,7 +93,7 @@ type BiosPolicy struct { // BIOS Token for setting APBDIS configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `0` - Value - 0 for configuring CbsCmnApbdis token. * `1` - Value - 1 for configuring CbsCmnApbdis token. * `Auto` - Value - Auto for configuring CbsCmnApbdis token. CbsCmnApbdis *string `json:"CbsCmnApbdis,omitempty"` // BIOS Token for setting Fixed SOC P-State SP5 F19h configuration (0 - 2 P State). - CbsCmnApbdisDfPstateRs *string `json:"CbsCmnApbdisDfPstateRs,omitempty"` + CbsCmnApbdisDfPstateRs *string `json:"CbsCmnApbdisDfPstateRs,omitempty" validate:"regexp=^([0-2])$|^(platform-default)$"` // BIOS Token for setting AVX512 configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsCmnCpuAvx512 token. * `disabled` - Value - disabled for configuring CbsCmnCpuAvx512 token. * `enabled` - Value - enabled for configuring CbsCmnCpuAvx512 token. CbsCmnCpuAvx512 *string `json:"CbsCmnCpuAvx512,omitempty"` // BIOS Token for setting Core Performance Boost configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsCmnCpuCpb token. * `disabled` - Value - disabled for configuring CbsCmnCpuCpb token. @@ -107,7 +107,7 @@ type BiosPolicy struct { // BIOS Token for setting L2 Stream HW Prefetcher configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsCmnCpuL2streamHwPrefetcher token. * `disabled` - Value - disabled for configuring CbsCmnCpuL2streamHwPrefetcher token. * `enabled` - Value - enabled for configuring CbsCmnCpuL2streamHwPrefetcher token. CbsCmnCpuL2streamHwPrefetcher *string `json:"CbsCmnCpuL2streamHwPrefetcher,omitempty"` // BIOS Token for setting SEV-ES ASID Space Limit configuration (1 - 1007 ASIDs). - CbsCmnCpuSevAsidSpaceLimit *string `json:"CbsCmnCpuSevAsidSpaceLimit,omitempty"` + CbsCmnCpuSevAsidSpaceLimit *string `json:"CbsCmnCpuSevAsidSpaceLimit,omitempty" validate:"regexp=^([1-9]|[1-9]\\\\d|[1-9]\\\\d{2}|100[0-7])$|^(platform-default)$"` // BIOS Token for setting CPU SMEE configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsCmnCpuSmee token. * `disabled` - Value - disabled for configuring CbsCmnCpuSmee token. * `enabled` - Value - enabled for configuring CbsCmnCpuSmee token. CbsCmnCpuSmee *string `json:"CbsCmnCpuSmee,omitempty"` // BIOS Token for setting Streaming Stores Control configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsCmnCpuStreamingStoresCtrl token. * `disabled` - Value - disabled for configuring CbsCmnCpuStreamingStoresCtrl token. * `enabled` - Value - enabled for configuring CbsCmnCpuStreamingStoresCtrl token. @@ -167,7 +167,7 @@ type BiosPolicy struct { // BIOS Token for setting SNP Memory Coverage configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsDbgCpuSnpMemCover token. * `Custom` - Value - Custom for configuring CbsDbgCpuSnpMemCover token. * `disabled` - Value - disabled for configuring CbsDbgCpuSnpMemCover token. * `enabled` - Value - enabled for configuring CbsDbgCpuSnpMemCover token. CbsDbgCpuSnpMemCover *string `json:"CbsDbgCpuSnpMemCover,omitempty"` // BIOS Token for setting SNP Memory Size to Cover in MiB configuration (0 - 1048576 MiB). - CbsDbgCpuSnpMemSizeCover *string `json:"CbsDbgCpuSnpMemSizeCover,omitempty"` + CbsDbgCpuSnpMemSizeCover *string `json:"CbsDbgCpuSnpMemSizeCover,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|[1-9]\\\\d{2}|[1-9]\\\\d{3}|[1-9]\\\\d{4}|[1-9]\\\\d{5}|10[0-3]\\\\d{4}|104[0-7]\\\\d{3}|1048[0-4]\\\\d{2}|10485[0-6]\\\\d|104857[0-6])$|^(platform-default)$"` // BIOS Token for setting 4-link xGMI max speed configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `20Gbps` - Value - 20Gbps for configuring CbsDfCmn4linkMaxXgmiSpeed token. * `25Gbps` - Value - 25Gbps for configuring CbsDfCmn4linkMaxXgmiSpeed token. * `32Gbps` - Value - 32Gbps for configuring CbsDfCmn4linkMaxXgmiSpeed token. * `Auto` - Value - Auto for configuring CbsDfCmn4linkMaxXgmiSpeed token. CbsDfCmn4linkMaxXgmiSpeed *string `json:"CbsDfCmn4linkMaxXgmiSpeed,omitempty"` // BIOS Token for setting ACPI SRAT L3 Cache As NUMA Domain configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsDfCmnAcpiSratL3numa token. * `disabled` - Value - disabled for configuring CbsDfCmnAcpiSratL3numa token. * `enabled` - Value - enabled for configuring CbsDfCmnAcpiSratL3numa token. @@ -363,7 +363,7 @@ type BiosPolicy struct { // BIOS Token for setting Memory Refresh Rate configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `1x Refresh` - Value - 1x Refresh for configuring MemoryRefreshRate token. * `2x Refresh` - Value - 2x Refresh for configuring MemoryRefreshRate token. MemoryRefreshRate *string `json:"MemoryRefreshRate,omitempty"` // BIOS Token for setting Memory Size Limit in GiB configuration (0 - 65535 GiB). - MemorySizeLimit *string `json:"MemorySizeLimit,omitempty"` + MemorySizeLimit *string `json:"MemorySizeLimit,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|[1-9]\\\\d{2}|[1-9]\\\\d{3}|[1-5]\\\\d{4}|6[0-4]\\\\d{3}|65[0-4]\\\\d{2}|655[0-2]\\\\d|6553[0-5])$|^(platform-default)$"` // BIOS Token for setting Memory Thermal Throttling Mode configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `CLTT with PECI` - Value - CLTT with PECI for configuring MemoryThermalThrottling token. * `Disabled` - Value - Disabled for configuring MemoryThermalThrottling token. MemoryThermalThrottling *string `json:"MemoryThermalThrottling,omitempty"` // BIOS Token for setting Mirroring Mode configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `inter-socket` - Value - inter-socket for configuring MirroringMode token. * `intra-socket` - Value - intra-socket for configuring MirroringMode token. @@ -409,25 +409,25 @@ type BiosPolicy struct { // BIOS Token for setting Partial Memory Mirror Mode configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `disabled` - Value - disabled for configuring PartialMirrorModeConfig token. * `Percentage` - Value - Percentage for configuring PartialMirrorModeConfig token. * `Value in GB` - Value - Value in GiB for configuring PartialMirrorModeConfig token. PartialMirrorModeConfig *string `json:"PartialMirrorModeConfig,omitempty"` // BIOS Token for setting Partial Mirror Percentage configuration (0.00 - 50.00 Percentage). - PartialMirrorPercent *string `json:"PartialMirrorPercent,omitempty"` + PartialMirrorPercent *string `json:"PartialMirrorPercent,omitempty" validate:"regexp=^(\\\\d\\\\.\\\\d{1,2}|[1-4]\\\\d\\\\.\\\\d{1,2}|50\\\\.[0]{1,2})$|^(platform-default)$"` // BIOS Token for setting Partial Mirror1 Size in GiB configuration (0 - 65535 GiB). - PartialMirrorValue1 *string `json:"PartialMirrorValue1,omitempty"` + PartialMirrorValue1 *string `json:"PartialMirrorValue1,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|[1-9]\\\\d{2}|[1-9]\\\\d{3}|[1-5]\\\\d{4}|6[0-4]\\\\d{3}|65[0-4]\\\\d{2}|655[0-2]\\\\d|6553[0-5])$|^(platform-default)$"` // BIOS Token for setting Partial Mirror2 Size in GiB configuration (0 - 65535 GiB). - PartialMirrorValue2 *string `json:"PartialMirrorValue2,omitempty"` + PartialMirrorValue2 *string `json:"PartialMirrorValue2,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|[1-9]\\\\d{2}|[1-9]\\\\d{3}|[1-5]\\\\d{4}|6[0-4]\\\\d{3}|65[0-4]\\\\d{2}|655[0-2]\\\\d|6553[0-5])$|^(platform-default)$"` // BIOS Token for setting Partial Mirror3 Size in GiB configuration (0 - 65535 GiB). - PartialMirrorValue3 *string `json:"PartialMirrorValue3,omitempty"` + PartialMirrorValue3 *string `json:"PartialMirrorValue3,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|[1-9]\\\\d{2}|[1-9]\\\\d{3}|[1-5]\\\\d{4}|6[0-4]\\\\d{3}|65[0-4]\\\\d{2}|655[0-2]\\\\d|6553[0-5])$|^(platform-default)$"` // BIOS Token for setting Partial Mirror4 Size in GiB configuration (0 - 65535 GiB). - PartialMirrorValue4 *string `json:"PartialMirrorValue4,omitempty"` + PartialMirrorValue4 *string `json:"PartialMirrorValue4,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|[1-9]\\\\d{2}|[1-9]\\\\d{3}|[1-5]\\\\d{4}|6[0-4]\\\\d{3}|65[0-4]\\\\d{2}|655[0-2]\\\\d|6553[0-5])$|^(platform-default)$"` // BIOS Token for setting Patrol Scrub configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `disabled` - Value - disabled for configuring PatrolScrub token. * `Enable at End of POST` - Value - Enable at End of POST for configuring PatrolScrub token. * `enabled` - Value - enabled for configuring PatrolScrub token. PatrolScrub *string `json:"PatrolScrub,omitempty"` // BIOS Token for setting Patrol Scrub Interval configuration (5 - 23 Hour). - PatrolScrubDuration *string `json:"PatrolScrubDuration,omitempty"` + PatrolScrubDuration *string `json:"PatrolScrubDuration,omitempty" validate:"regexp=^([5-9]|1\\\\d|2[0-3])$|^(platform-default)$"` // BIOS Token for setting PCIe RAS Support configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. PcIeRasSupport *string `json:"PcIeRasSupport,omitempty"` // BIOS Token for setting NVMe SSD Hot-Plug Support configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. PcIeSsdHotPlugSupport *string `json:"PcIeSsdHotPlugSupport,omitempty"` // BIOS Token for setting PCIe PLL SSC Percent configuration (0 - 255 (n/10)%). - PchPciePllSsc *string `json:"PchPciePllSsc,omitempty"` + PchPciePllSsc *string `json:"PchPciePllSsc,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|1\\\\d{2}|2[0-4]\\\\d|25[0-5])$|^(platform-default)$"` // BIOS Token for setting xHCI Mode configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. PchUsb30mode *string `json:"PchUsb30mode,omitempty"` // BIOS Token for setting All PCIe Slots OptionROM configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `disabled` - Value - disabled for configuring PciOptionRoMs token. * `enabled` - Value - enabled for configuring PciOptionRoMs token. * `Legacy Only` - Value - Legacy Only for configuring PciOptionRoMs token. * `UEFI Only` - Value - UEFI Only for configuring PciOptionRoMs token. @@ -529,19 +529,19 @@ type BiosPolicy struct { // BIOS Token for setting SGX Auto MP Registration Agent configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. SgxAutoRegistrationAgent *string `json:"SgxAutoRegistrationAgent,omitempty"` // BIOS Token for setting SGX Epoch 0 configuration (0 - ffffffffffffffff Hash byte 7-0). - SgxEpoch0 *string `json:"SgxEpoch0,omitempty"` + SgxEpoch0 *string `json:"SgxEpoch0,omitempty" validate:"regexp=^([0-9a-fA-F]{1,16})$|^(platform-default)$"` // BIOS Token for setting SGX Epoch 1 configuration (0 - ffffffffffffffff Hash byte 7-0). - SgxEpoch1 *string `json:"SgxEpoch1,omitempty"` + SgxEpoch1 *string `json:"SgxEpoch1,omitempty" validate:"regexp=^([0-9a-fA-F]{1,16})$|^(platform-default)$"` // BIOS Token for setting SGX Factory Reset configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. SgxFactoryReset *string `json:"SgxFactoryReset,omitempty"` // BIOS Token for setting SGX PubKey Hash0 configuration (0 - ffffffffffffffff Hash byte 7-0). - SgxLePubKeyHash0 *string `json:"SgxLePubKeyHash0,omitempty"` + SgxLePubKeyHash0 *string `json:"SgxLePubKeyHash0,omitempty" validate:"regexp=^([0-9a-fA-F]{1,16})$|^(platform-default)$"` // BIOS Token for setting SGX PubKey Hash1 configuration (0 - ffffffffffffffff Hash byte 15-8). - SgxLePubKeyHash1 *string `json:"SgxLePubKeyHash1,omitempty"` + SgxLePubKeyHash1 *string `json:"SgxLePubKeyHash1,omitempty" validate:"regexp=^([0-9a-fA-F]{1,16})$|^(platform-default)$"` // BIOS Token for setting SGX PubKey Hash2 configuration (0 - ffffffffffffffff Hash byte 23-16). - SgxLePubKeyHash2 *string `json:"SgxLePubKeyHash2,omitempty"` + SgxLePubKeyHash2 *string `json:"SgxLePubKeyHash2,omitempty" validate:"regexp=^([0-9a-fA-F]{1,16})$|^(platform-default)$"` // BIOS Token for setting SGX PubKey Hash3 configuration (0 - ffffffffffffffff Hash byte 31-24). - SgxLePubKeyHash3 *string `json:"SgxLePubKeyHash3,omitempty"` + SgxLePubKeyHash3 *string `json:"SgxLePubKeyHash3,omitempty" validate:"regexp=^([0-9a-fA-F]{1,16})$|^(platform-default)$"` // BIOS Token for setting SGX Write Enable configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. SgxLeWr *string `json:"SgxLeWr,omitempty"` // BIOS Token for setting SGX Package Information In-Band Access configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. @@ -18549,7 +18549,7 @@ func (o *BiosPolicy) UnmarshalJSON(data []byte) (err error) { // BIOS Token for setting APBDIS configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `0` - Value - 0 for configuring CbsCmnApbdis token. * `1` - Value - 1 for configuring CbsCmnApbdis token. * `Auto` - Value - Auto for configuring CbsCmnApbdis token. CbsCmnApbdis *string `json:"CbsCmnApbdis,omitempty"` // BIOS Token for setting Fixed SOC P-State SP5 F19h configuration (0 - 2 P State). - CbsCmnApbdisDfPstateRs *string `json:"CbsCmnApbdisDfPstateRs,omitempty"` + CbsCmnApbdisDfPstateRs *string `json:"CbsCmnApbdisDfPstateRs,omitempty" validate:"regexp=^([0-2])$|^(platform-default)$"` // BIOS Token for setting AVX512 configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsCmnCpuAvx512 token. * `disabled` - Value - disabled for configuring CbsCmnCpuAvx512 token. * `enabled` - Value - enabled for configuring CbsCmnCpuAvx512 token. CbsCmnCpuAvx512 *string `json:"CbsCmnCpuAvx512,omitempty"` // BIOS Token for setting Core Performance Boost configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsCmnCpuCpb token. * `disabled` - Value - disabled for configuring CbsCmnCpuCpb token. @@ -18563,7 +18563,7 @@ func (o *BiosPolicy) UnmarshalJSON(data []byte) (err error) { // BIOS Token for setting L2 Stream HW Prefetcher configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsCmnCpuL2streamHwPrefetcher token. * `disabled` - Value - disabled for configuring CbsCmnCpuL2streamHwPrefetcher token. * `enabled` - Value - enabled for configuring CbsCmnCpuL2streamHwPrefetcher token. CbsCmnCpuL2streamHwPrefetcher *string `json:"CbsCmnCpuL2streamHwPrefetcher,omitempty"` // BIOS Token for setting SEV-ES ASID Space Limit configuration (1 - 1007 ASIDs). - CbsCmnCpuSevAsidSpaceLimit *string `json:"CbsCmnCpuSevAsidSpaceLimit,omitempty"` + CbsCmnCpuSevAsidSpaceLimit *string `json:"CbsCmnCpuSevAsidSpaceLimit,omitempty" validate:"regexp=^([1-9]|[1-9]\\\\d|[1-9]\\\\d{2}|100[0-7])$|^(platform-default)$"` // BIOS Token for setting CPU SMEE configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsCmnCpuSmee token. * `disabled` - Value - disabled for configuring CbsCmnCpuSmee token. * `enabled` - Value - enabled for configuring CbsCmnCpuSmee token. CbsCmnCpuSmee *string `json:"CbsCmnCpuSmee,omitempty"` // BIOS Token for setting Streaming Stores Control configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsCmnCpuStreamingStoresCtrl token. * `disabled` - Value - disabled for configuring CbsCmnCpuStreamingStoresCtrl token. * `enabled` - Value - enabled for configuring CbsCmnCpuStreamingStoresCtrl token. @@ -18623,7 +18623,7 @@ func (o *BiosPolicy) UnmarshalJSON(data []byte) (err error) { // BIOS Token for setting SNP Memory Coverage configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsDbgCpuSnpMemCover token. * `Custom` - Value - Custom for configuring CbsDbgCpuSnpMemCover token. * `disabled` - Value - disabled for configuring CbsDbgCpuSnpMemCover token. * `enabled` - Value - enabled for configuring CbsDbgCpuSnpMemCover token. CbsDbgCpuSnpMemCover *string `json:"CbsDbgCpuSnpMemCover,omitempty"` // BIOS Token for setting SNP Memory Size to Cover in MiB configuration (0 - 1048576 MiB). - CbsDbgCpuSnpMemSizeCover *string `json:"CbsDbgCpuSnpMemSizeCover,omitempty"` + CbsDbgCpuSnpMemSizeCover *string `json:"CbsDbgCpuSnpMemSizeCover,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|[1-9]\\\\d{2}|[1-9]\\\\d{3}|[1-9]\\\\d{4}|[1-9]\\\\d{5}|10[0-3]\\\\d{4}|104[0-7]\\\\d{3}|1048[0-4]\\\\d{2}|10485[0-6]\\\\d|104857[0-6])$|^(platform-default)$"` // BIOS Token for setting 4-link xGMI max speed configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `20Gbps` - Value - 20Gbps for configuring CbsDfCmn4linkMaxXgmiSpeed token. * `25Gbps` - Value - 25Gbps for configuring CbsDfCmn4linkMaxXgmiSpeed token. * `32Gbps` - Value - 32Gbps for configuring CbsDfCmn4linkMaxXgmiSpeed token. * `Auto` - Value - Auto for configuring CbsDfCmn4linkMaxXgmiSpeed token. CbsDfCmn4linkMaxXgmiSpeed *string `json:"CbsDfCmn4linkMaxXgmiSpeed,omitempty"` // BIOS Token for setting ACPI SRAT L3 Cache As NUMA Domain configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsDfCmnAcpiSratL3numa token. * `disabled` - Value - disabled for configuring CbsDfCmnAcpiSratL3numa token. * `enabled` - Value - enabled for configuring CbsDfCmnAcpiSratL3numa token. @@ -18819,7 +18819,7 @@ func (o *BiosPolicy) UnmarshalJSON(data []byte) (err error) { // BIOS Token for setting Memory Refresh Rate configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `1x Refresh` - Value - 1x Refresh for configuring MemoryRefreshRate token. * `2x Refresh` - Value - 2x Refresh for configuring MemoryRefreshRate token. MemoryRefreshRate *string `json:"MemoryRefreshRate,omitempty"` // BIOS Token for setting Memory Size Limit in GiB configuration (0 - 65535 GiB). - MemorySizeLimit *string `json:"MemorySizeLimit,omitempty"` + MemorySizeLimit *string `json:"MemorySizeLimit,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|[1-9]\\\\d{2}|[1-9]\\\\d{3}|[1-5]\\\\d{4}|6[0-4]\\\\d{3}|65[0-4]\\\\d{2}|655[0-2]\\\\d|6553[0-5])$|^(platform-default)$"` // BIOS Token for setting Memory Thermal Throttling Mode configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `CLTT with PECI` - Value - CLTT with PECI for configuring MemoryThermalThrottling token. * `Disabled` - Value - Disabled for configuring MemoryThermalThrottling token. MemoryThermalThrottling *string `json:"MemoryThermalThrottling,omitempty"` // BIOS Token for setting Mirroring Mode configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `inter-socket` - Value - inter-socket for configuring MirroringMode token. * `intra-socket` - Value - intra-socket for configuring MirroringMode token. @@ -18865,25 +18865,25 @@ func (o *BiosPolicy) UnmarshalJSON(data []byte) (err error) { // BIOS Token for setting Partial Memory Mirror Mode configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `disabled` - Value - disabled for configuring PartialMirrorModeConfig token. * `Percentage` - Value - Percentage for configuring PartialMirrorModeConfig token. * `Value in GB` - Value - Value in GiB for configuring PartialMirrorModeConfig token. PartialMirrorModeConfig *string `json:"PartialMirrorModeConfig,omitempty"` // BIOS Token for setting Partial Mirror Percentage configuration (0.00 - 50.00 Percentage). - PartialMirrorPercent *string `json:"PartialMirrorPercent,omitempty"` + PartialMirrorPercent *string `json:"PartialMirrorPercent,omitempty" validate:"regexp=^(\\\\d\\\\.\\\\d{1,2}|[1-4]\\\\d\\\\.\\\\d{1,2}|50\\\\.[0]{1,2})$|^(platform-default)$"` // BIOS Token for setting Partial Mirror1 Size in GiB configuration (0 - 65535 GiB). - PartialMirrorValue1 *string `json:"PartialMirrorValue1,omitempty"` + PartialMirrorValue1 *string `json:"PartialMirrorValue1,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|[1-9]\\\\d{2}|[1-9]\\\\d{3}|[1-5]\\\\d{4}|6[0-4]\\\\d{3}|65[0-4]\\\\d{2}|655[0-2]\\\\d|6553[0-5])$|^(platform-default)$"` // BIOS Token for setting Partial Mirror2 Size in GiB configuration (0 - 65535 GiB). - PartialMirrorValue2 *string `json:"PartialMirrorValue2,omitempty"` + PartialMirrorValue2 *string `json:"PartialMirrorValue2,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|[1-9]\\\\d{2}|[1-9]\\\\d{3}|[1-5]\\\\d{4}|6[0-4]\\\\d{3}|65[0-4]\\\\d{2}|655[0-2]\\\\d|6553[0-5])$|^(platform-default)$"` // BIOS Token for setting Partial Mirror3 Size in GiB configuration (0 - 65535 GiB). - PartialMirrorValue3 *string `json:"PartialMirrorValue3,omitempty"` + PartialMirrorValue3 *string `json:"PartialMirrorValue3,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|[1-9]\\\\d{2}|[1-9]\\\\d{3}|[1-5]\\\\d{4}|6[0-4]\\\\d{3}|65[0-4]\\\\d{2}|655[0-2]\\\\d|6553[0-5])$|^(platform-default)$"` // BIOS Token for setting Partial Mirror4 Size in GiB configuration (0 - 65535 GiB). - PartialMirrorValue4 *string `json:"PartialMirrorValue4,omitempty"` + PartialMirrorValue4 *string `json:"PartialMirrorValue4,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|[1-9]\\\\d{2}|[1-9]\\\\d{3}|[1-5]\\\\d{4}|6[0-4]\\\\d{3}|65[0-4]\\\\d{2}|655[0-2]\\\\d|6553[0-5])$|^(platform-default)$"` // BIOS Token for setting Patrol Scrub configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `disabled` - Value - disabled for configuring PatrolScrub token. * `Enable at End of POST` - Value - Enable at End of POST for configuring PatrolScrub token. * `enabled` - Value - enabled for configuring PatrolScrub token. PatrolScrub *string `json:"PatrolScrub,omitempty"` // BIOS Token for setting Patrol Scrub Interval configuration (5 - 23 Hour). - PatrolScrubDuration *string `json:"PatrolScrubDuration,omitempty"` + PatrolScrubDuration *string `json:"PatrolScrubDuration,omitempty" validate:"regexp=^([5-9]|1\\\\d|2[0-3])$|^(platform-default)$"` // BIOS Token for setting PCIe RAS Support configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. PcIeRasSupport *string `json:"PcIeRasSupport,omitempty"` // BIOS Token for setting NVMe SSD Hot-Plug Support configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. PcIeSsdHotPlugSupport *string `json:"PcIeSsdHotPlugSupport,omitempty"` // BIOS Token for setting PCIe PLL SSC Percent configuration (0 - 255 (n/10)%). - PchPciePllSsc *string `json:"PchPciePllSsc,omitempty"` + PchPciePllSsc *string `json:"PchPciePllSsc,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|1\\\\d{2}|2[0-4]\\\\d|25[0-5])$|^(platform-default)$"` // BIOS Token for setting xHCI Mode configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. PchUsb30mode *string `json:"PchUsb30mode,omitempty"` // BIOS Token for setting All PCIe Slots OptionROM configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `disabled` - Value - disabled for configuring PciOptionRoMs token. * `enabled` - Value - enabled for configuring PciOptionRoMs token. * `Legacy Only` - Value - Legacy Only for configuring PciOptionRoMs token. * `UEFI Only` - Value - UEFI Only for configuring PciOptionRoMs token. @@ -18985,19 +18985,19 @@ func (o *BiosPolicy) UnmarshalJSON(data []byte) (err error) { // BIOS Token for setting SGX Auto MP Registration Agent configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. SgxAutoRegistrationAgent *string `json:"SgxAutoRegistrationAgent,omitempty"` // BIOS Token for setting SGX Epoch 0 configuration (0 - ffffffffffffffff Hash byte 7-0). - SgxEpoch0 *string `json:"SgxEpoch0,omitempty"` + SgxEpoch0 *string `json:"SgxEpoch0,omitempty" validate:"regexp=^([0-9a-fA-F]{1,16})$|^(platform-default)$"` // BIOS Token for setting SGX Epoch 1 configuration (0 - ffffffffffffffff Hash byte 7-0). - SgxEpoch1 *string `json:"SgxEpoch1,omitempty"` + SgxEpoch1 *string `json:"SgxEpoch1,omitempty" validate:"regexp=^([0-9a-fA-F]{1,16})$|^(platform-default)$"` // BIOS Token for setting SGX Factory Reset configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. SgxFactoryReset *string `json:"SgxFactoryReset,omitempty"` // BIOS Token for setting SGX PubKey Hash0 configuration (0 - ffffffffffffffff Hash byte 7-0). - SgxLePubKeyHash0 *string `json:"SgxLePubKeyHash0,omitempty"` + SgxLePubKeyHash0 *string `json:"SgxLePubKeyHash0,omitempty" validate:"regexp=^([0-9a-fA-F]{1,16})$|^(platform-default)$"` // BIOS Token for setting SGX PubKey Hash1 configuration (0 - ffffffffffffffff Hash byte 15-8). - SgxLePubKeyHash1 *string `json:"SgxLePubKeyHash1,omitempty"` + SgxLePubKeyHash1 *string `json:"SgxLePubKeyHash1,omitempty" validate:"regexp=^([0-9a-fA-F]{1,16})$|^(platform-default)$"` // BIOS Token for setting SGX PubKey Hash2 configuration (0 - ffffffffffffffff Hash byte 23-16). - SgxLePubKeyHash2 *string `json:"SgxLePubKeyHash2,omitempty"` + SgxLePubKeyHash2 *string `json:"SgxLePubKeyHash2,omitempty" validate:"regexp=^([0-9a-fA-F]{1,16})$|^(platform-default)$"` // BIOS Token for setting SGX PubKey Hash3 configuration (0 - ffffffffffffffff Hash byte 31-24). - SgxLePubKeyHash3 *string `json:"SgxLePubKeyHash3,omitempty"` + SgxLePubKeyHash3 *string `json:"SgxLePubKeyHash3,omitempty" validate:"regexp=^([0-9a-fA-F]{1,16})$|^(platform-default)$"` // BIOS Token for setting SGX Write Enable configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. SgxLeWr *string `json:"SgxLeWr,omitempty"` // BIOS Token for setting SGX Package Information In-Band Access configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. diff --git a/intersight_gosdk/model_bios_policy_list.go b/intersight_gosdk/model_bios_policy_list.go index e181cffda3..83d334eae2 100644 --- a/intersight_gosdk/model_bios_policy_list.go +++ b/intersight_gosdk/model_bios_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_policy_response.go b/intersight_gosdk/model_bios_policy_response.go index 4c339a69c3..db6e0ce178 100644 --- a/intersight_gosdk/model_bios_policy_response.go +++ b/intersight_gosdk/model_bios_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_system_boot_order.go b/intersight_gosdk/model_bios_system_boot_order.go index 5b77f92d3c..ecce15ebfe 100644 --- a/intersight_gosdk/model_bios_system_boot_order.go +++ b/intersight_gosdk/model_bios_system_boot_order.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_system_boot_order_list.go b/intersight_gosdk/model_bios_system_boot_order_list.go index 54a88a91e3..5a739aba26 100644 --- a/intersight_gosdk/model_bios_system_boot_order_list.go +++ b/intersight_gosdk/model_bios_system_boot_order_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_system_boot_order_relationship.go b/intersight_gosdk/model_bios_system_boot_order_relationship.go index 7facca5b1b..66db6cca82 100644 --- a/intersight_gosdk/model_bios_system_boot_order_relationship.go +++ b/intersight_gosdk/model_bios_system_boot_order_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_system_boot_order_response.go b/intersight_gosdk/model_bios_system_boot_order_response.go index 76ce79e72e..47fe0234fe 100644 --- a/intersight_gosdk/model_bios_system_boot_order_response.go +++ b/intersight_gosdk/model_bios_system_boot_order_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_token_settings.go b/intersight_gosdk/model_bios_token_settings.go index 1f686771c1..c01d0e4898 100644 --- a/intersight_gosdk/model_bios_token_settings.go +++ b/intersight_gosdk/model_bios_token_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_token_settings_list.go b/intersight_gosdk/model_bios_token_settings_list.go index e6e072a0e4..9e70a26781 100644 --- a/intersight_gosdk/model_bios_token_settings_list.go +++ b/intersight_gosdk/model_bios_token_settings_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_token_settings_relationship.go b/intersight_gosdk/model_bios_token_settings_relationship.go index bcdd6b559a..ce9e9b3aec 100644 --- a/intersight_gosdk/model_bios_token_settings_relationship.go +++ b/intersight_gosdk/model_bios_token_settings_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_token_settings_response.go b/intersight_gosdk/model_bios_token_settings_response.go index 3022e8aebc..33055921fd 100644 --- a/intersight_gosdk/model_bios_token_settings_response.go +++ b/intersight_gosdk/model_bios_token_settings_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_unit.go b/intersight_gosdk/model_bios_unit.go index e8be06b58a..5b2bfb626a 100644 --- a/intersight_gosdk/model_bios_unit.go +++ b/intersight_gosdk/model_bios_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_unit_list.go b/intersight_gosdk/model_bios_unit_list.go index 53eac48999..f631a94bde 100644 --- a/intersight_gosdk/model_bios_unit_list.go +++ b/intersight_gosdk/model_bios_unit_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_unit_relationship.go b/intersight_gosdk/model_bios_unit_relationship.go index 7e585cee9e..72a04a87a5 100644 --- a/intersight_gosdk/model_bios_unit_relationship.go +++ b/intersight_gosdk/model_bios_unit_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_unit_response.go b/intersight_gosdk/model_bios_unit_response.go index 82d98d7f00..bacdc9ef13 100644 --- a/intersight_gosdk/model_bios_unit_response.go +++ b/intersight_gosdk/model_bios_unit_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_vf_select_memory_ras_configuration.go b/intersight_gosdk/model_bios_vf_select_memory_ras_configuration.go index 6302afa6fc..d094575d3f 100644 --- a/intersight_gosdk/model_bios_vf_select_memory_ras_configuration.go +++ b/intersight_gosdk/model_bios_vf_select_memory_ras_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_vf_select_memory_ras_configuration_list.go b/intersight_gosdk/model_bios_vf_select_memory_ras_configuration_list.go index a8290bd717..74dd4467ed 100644 --- a/intersight_gosdk/model_bios_vf_select_memory_ras_configuration_list.go +++ b/intersight_gosdk/model_bios_vf_select_memory_ras_configuration_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_vf_select_memory_ras_configuration_relationship.go b/intersight_gosdk/model_bios_vf_select_memory_ras_configuration_relationship.go index 16fcd84ee2..cd14a25e6b 100644 --- a/intersight_gosdk/model_bios_vf_select_memory_ras_configuration_relationship.go +++ b/intersight_gosdk/model_bios_vf_select_memory_ras_configuration_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_vf_select_memory_ras_configuration_response.go b/intersight_gosdk/model_bios_vf_select_memory_ras_configuration_response.go index e056fa2857..29d1c1dc84 100644 --- a/intersight_gosdk/model_bios_vf_select_memory_ras_configuration_response.go +++ b/intersight_gosdk/model_bios_vf_select_memory_ras_configuration_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_bootloader.go b/intersight_gosdk/model_boot_bootloader.go index 3a3c45e3f7..ca7b8d56e2 100644 --- a/intersight_gosdk/model_boot_bootloader.go +++ b/intersight_gosdk/model_boot_bootloader.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_cdd_device.go b/intersight_gosdk/model_boot_cdd_device.go index e854f52aed..262e39ee3c 100644 --- a/intersight_gosdk/model_boot_cdd_device.go +++ b/intersight_gosdk/model_boot_cdd_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_cdd_device_list.go b/intersight_gosdk/model_boot_cdd_device_list.go index 3192d28519..7c79204059 100644 --- a/intersight_gosdk/model_boot_cdd_device_list.go +++ b/intersight_gosdk/model_boot_cdd_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_cdd_device_relationship.go b/intersight_gosdk/model_boot_cdd_device_relationship.go index 8316ac388d..747b0e4050 100644 --- a/intersight_gosdk/model_boot_cdd_device_relationship.go +++ b/intersight_gosdk/model_boot_cdd_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_cdd_device_response.go b/intersight_gosdk/model_boot_cdd_device_response.go index 861a169305..660682a4d8 100644 --- a/intersight_gosdk/model_boot_cdd_device_response.go +++ b/intersight_gosdk/model_boot_cdd_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_configured_device.go b/intersight_gosdk/model_boot_configured_device.go index 71697aa804..06fddaa794 100644 --- a/intersight_gosdk/model_boot_configured_device.go +++ b/intersight_gosdk/model_boot_configured_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_device_base.go b/intersight_gosdk/model_boot_device_base.go index 9c67d688e1..5b3beec2d4 100644 --- a/intersight_gosdk/model_boot_device_base.go +++ b/intersight_gosdk/model_boot_device_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type BootDeviceBase struct { // Specifies if the boot device is enabled or disabled. Enabled *bool `json:"Enabled,omitempty"` // A name that helps identify a boot device. It can be any string that adheres to the following constraints. It should start and end with an alphanumeric character. It can have underscores and hyphens. It cannot be more than 30 characters. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=((^[a-zA-Z0-9]$){1,30}|(^(([a-zA-Z0-9])([a-zA-Z0-9_\\\\-]{0,28})([a-zA-Z0-9]))$))"` AdditionalProperties map[string]interface{} } @@ -253,7 +253,7 @@ func (o *BootDeviceBase) UnmarshalJSON(data []byte) (err error) { // Specifies if the boot device is enabled or disabled. Enabled *bool `json:"Enabled,omitempty"` // A name that helps identify a boot device. It can be any string that adheres to the following constraints. It should start and end with an alphanumeric character. It can have underscores and hyphens. It cannot be more than 30 characters. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=((^[a-zA-Z0-9]$){1,30}|(^(([a-zA-Z0-9])([a-zA-Z0-9_\\\\-]{0,28})([a-zA-Z0-9]))$))"` } varBootDeviceBaseWithoutEmbeddedStruct := BootDeviceBaseWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_boot_device_boot_mode.go b/intersight_gosdk/model_boot_device_boot_mode.go index e5ba97c02b..4fd90762b9 100644 --- a/intersight_gosdk/model_boot_device_boot_mode.go +++ b/intersight_gosdk/model_boot_device_boot_mode.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_device_boot_mode_list.go b/intersight_gosdk/model_boot_device_boot_mode_list.go index 2a8af08c51..b89c3409b3 100644 --- a/intersight_gosdk/model_boot_device_boot_mode_list.go +++ b/intersight_gosdk/model_boot_device_boot_mode_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_device_boot_mode_relationship.go b/intersight_gosdk/model_boot_device_boot_mode_relationship.go index 2cf5e7a5cd..874ebd0a42 100644 --- a/intersight_gosdk/model_boot_device_boot_mode_relationship.go +++ b/intersight_gosdk/model_boot_device_boot_mode_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_device_boot_mode_response.go b/intersight_gosdk/model_boot_device_boot_mode_response.go index fea0963fd2..26aa0b851d 100644 --- a/intersight_gosdk/model_boot_device_boot_mode_response.go +++ b/intersight_gosdk/model_boot_device_boot_mode_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_device_boot_security.go b/intersight_gosdk/model_boot_device_boot_security.go index 249539d16e..203bec516d 100644 --- a/intersight_gosdk/model_boot_device_boot_security.go +++ b/intersight_gosdk/model_boot_device_boot_security.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_device_boot_security_list.go b/intersight_gosdk/model_boot_device_boot_security_list.go index 7d778ff283..434cc27724 100644 --- a/intersight_gosdk/model_boot_device_boot_security_list.go +++ b/intersight_gosdk/model_boot_device_boot_security_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_device_boot_security_relationship.go b/intersight_gosdk/model_boot_device_boot_security_relationship.go index 56d0aa013d..d21cfaf999 100644 --- a/intersight_gosdk/model_boot_device_boot_security_relationship.go +++ b/intersight_gosdk/model_boot_device_boot_security_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_device_boot_security_response.go b/intersight_gosdk/model_boot_device_boot_security_response.go index 2c6ec7d966..2ead4386fc 100644 --- a/intersight_gosdk/model_boot_device_boot_security_response.go +++ b/intersight_gosdk/model_boot_device_boot_security_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_flex_mmc.go b/intersight_gosdk/model_boot_flex_mmc.go index f29d7392d5..74c69d0038 100644 --- a/intersight_gosdk/model_boot_flex_mmc.go +++ b/intersight_gosdk/model_boot_flex_mmc.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_hdd_device.go b/intersight_gosdk/model_boot_hdd_device.go index a3763856ac..f84885777e 100644 --- a/intersight_gosdk/model_boot_hdd_device.go +++ b/intersight_gosdk/model_boot_hdd_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_hdd_device_list.go b/intersight_gosdk/model_boot_hdd_device_list.go index 638d60f72a..908178f294 100644 --- a/intersight_gosdk/model_boot_hdd_device_list.go +++ b/intersight_gosdk/model_boot_hdd_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_hdd_device_relationship.go b/intersight_gosdk/model_boot_hdd_device_relationship.go index cdbfa6bb77..8c38442118 100644 --- a/intersight_gosdk/model_boot_hdd_device_relationship.go +++ b/intersight_gosdk/model_boot_hdd_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_hdd_device_response.go b/intersight_gosdk/model_boot_hdd_device_response.go index 723bdefd23..b69a8bd280 100644 --- a/intersight_gosdk/model_boot_hdd_device_response.go +++ b/intersight_gosdk/model_boot_hdd_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_http.go b/intersight_gosdk/model_boot_http.go index d4cc598d07..d2d75ac21b 100644 --- a/intersight_gosdk/model_boot_http.go +++ b/intersight_gosdk/model_boot_http.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type BootHttp struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The name of the underlying virtual ethernet interface used by the HTTP boot device. - InterfaceName *string `json:"InterfaceName,omitempty"` + InterfaceName *string `json:"InterfaceName,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]*$"` // Lists the supported Interface Source for HTTP device. Supported values are \"name\" and \"mac\". * `name` - Use interface name to select virtual ethernet interface. * `mac` - Use MAC address to select virtual ethernet interface. * `port` - Use port to select virtual ethernet interface. InterfaceSource *string `json:"InterfaceSource,omitempty"` // The IP config type to use during the HTTP boot process. For DHCP configuration, the IP address, DNS server, netmask and gateway details are obtained from DHCP server. For static configuration, please provide the IP address, DNS server, netmask, and gateway details. * `DHCP` - The type of the IP config is DHCP. * `Static` - The type of the IP config is Static. @@ -37,13 +37,13 @@ type BootHttp struct { // The IP address family type to use during the HTTP boot process. * `IPv4` - The type of the IP address is IPv4. * `IPv6` - The type of the IP address is IPv6. IpType *string `json:"IpType,omitempty"` // The MAC Address of the underlying virtual ethernet interface used by the HTTP boot device. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^(((\\\\d|([a-f]|[A-F])){2}:){5}(\\\\d|([a-f]|[A-F])){2})$"` // The Port ID of the adapter on which the underlying virtual ethernet interface is present. If no port is specified, the default value is -1. Supported values are 0 to 255. Port *int64 `json:"Port,omitempty"` // Protocol to be used for HTTP boot. HTTPS require root certificate for authentication. * `HTTPS` - Secure HTTP protocol, certificate required for authentication. * `HTTP` - HTTP protocol without security certificate requirement. Protocol *string `json:"Protocol,omitempty"` // The slot ID of the adapter on which the underlying virtual ethernet interface is present. Supported values are ( 1 - 255, \"MLOM\", \"L\", \"L1\", \"L2\", \"OCP\"). - Slot *string `json:"Slot,omitempty"` + Slot *string `json:"Slot,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]|L|MLOM|L1|L2|OCP)$"` StaticIpV4Settings NullableBootStaticIpV4Settings `json:"StaticIpV4Settings,omitempty"` StaticIpV6Settings NullableBootStaticIpV6Settings `json:"StaticIpV6Settings,omitempty"` // Boot resource location in URI format. @@ -645,7 +645,7 @@ func (o *BootHttp) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The name of the underlying virtual ethernet interface used by the HTTP boot device. - InterfaceName *string `json:"InterfaceName,omitempty"` + InterfaceName *string `json:"InterfaceName,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]*$"` // Lists the supported Interface Source for HTTP device. Supported values are \"name\" and \"mac\". * `name` - Use interface name to select virtual ethernet interface. * `mac` - Use MAC address to select virtual ethernet interface. * `port` - Use port to select virtual ethernet interface. InterfaceSource *string `json:"InterfaceSource,omitempty"` // The IP config type to use during the HTTP boot process. For DHCP configuration, the IP address, DNS server, netmask and gateway details are obtained from DHCP server. For static configuration, please provide the IP address, DNS server, netmask, and gateway details. * `DHCP` - The type of the IP config is DHCP. * `Static` - The type of the IP config is Static. @@ -653,13 +653,13 @@ func (o *BootHttp) UnmarshalJSON(data []byte) (err error) { // The IP address family type to use during the HTTP boot process. * `IPv4` - The type of the IP address is IPv4. * `IPv6` - The type of the IP address is IPv6. IpType *string `json:"IpType,omitempty"` // The MAC Address of the underlying virtual ethernet interface used by the HTTP boot device. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^(((\\\\d|([a-f]|[A-F])){2}:){5}(\\\\d|([a-f]|[A-F])){2})$"` // The Port ID of the adapter on which the underlying virtual ethernet interface is present. If no port is specified, the default value is -1. Supported values are 0 to 255. Port *int64 `json:"Port,omitempty"` // Protocol to be used for HTTP boot. HTTPS require root certificate for authentication. * `HTTPS` - Secure HTTP protocol, certificate required for authentication. * `HTTP` - HTTP protocol without security certificate requirement. Protocol *string `json:"Protocol,omitempty"` // The slot ID of the adapter on which the underlying virtual ethernet interface is present. Supported values are ( 1 - 255, \"MLOM\", \"L\", \"L1\", \"L2\", \"OCP\"). - Slot *string `json:"Slot,omitempty"` + Slot *string `json:"Slot,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]|L|MLOM|L1|L2|OCP)$"` StaticIpV4Settings NullableBootStaticIpV4Settings `json:"StaticIpV4Settings,omitempty"` StaticIpV6Settings NullableBootStaticIpV6Settings `json:"StaticIpV6Settings,omitempty"` // Boot resource location in URI format. diff --git a/intersight_gosdk/model_boot_iscsi.go b/intersight_gosdk/model_boot_iscsi.go index 9c3c90e3c3..4c0a1fe56b 100644 --- a/intersight_gosdk/model_boot_iscsi.go +++ b/intersight_gosdk/model_boot_iscsi.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,11 +30,11 @@ type BootIscsi struct { ObjectType string `json:"ObjectType"` Bootloader NullableBootBootloader `json:"Bootloader,omitempty"` // The name of the underlying virtual ethernet interface used by the iSCSI boot device. - InterfaceName *string `json:"InterfaceName,omitempty"` + InterfaceName *string `json:"InterfaceName,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]*$"` // Port ID of the ISCSI boot device. Port *int64 `json:"Port,omitempty"` // The slot id of the device. Supported values are (1 - 255, \"MLOM\", \"L\", \"L1\", \"L2\", \"OCP\"). - Slot *string `json:"Slot,omitempty"` + Slot *string `json:"Slot,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]|L|MLOM|L1|L2|OCP)$"` AdditionalProperties map[string]interface{} } @@ -361,11 +361,11 @@ func (o *BootIscsi) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` Bootloader NullableBootBootloader `json:"Bootloader,omitempty"` // The name of the underlying virtual ethernet interface used by the iSCSI boot device. - InterfaceName *string `json:"InterfaceName,omitempty"` + InterfaceName *string `json:"InterfaceName,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]*$"` // Port ID of the ISCSI boot device. Port *int64 `json:"Port,omitempty"` // The slot id of the device. Supported values are (1 - 255, \"MLOM\", \"L\", \"L1\", \"L2\", \"OCP\"). - Slot *string `json:"Slot,omitempty"` + Slot *string `json:"Slot,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]|L|MLOM|L1|L2|OCP)$"` } varBootIscsiWithoutEmbeddedStruct := BootIscsiWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_boot_iscsi_device.go b/intersight_gosdk/model_boot_iscsi_device.go index 27f91b0109..01cd6a5059 100644 --- a/intersight_gosdk/model_boot_iscsi_device.go +++ b/intersight_gosdk/model_boot_iscsi_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_iscsi_device_list.go b/intersight_gosdk/model_boot_iscsi_device_list.go index 5aaf47088b..0884fe67e7 100644 --- a/intersight_gosdk/model_boot_iscsi_device_list.go +++ b/intersight_gosdk/model_boot_iscsi_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_iscsi_device_relationship.go b/intersight_gosdk/model_boot_iscsi_device_relationship.go index 8dcbcec9a8..d3c32e3ab6 100644 --- a/intersight_gosdk/model_boot_iscsi_device_relationship.go +++ b/intersight_gosdk/model_boot_iscsi_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_iscsi_device_response.go b/intersight_gosdk/model_boot_iscsi_device_response.go index 21b182adee..8bf19ec3ea 100644 --- a/intersight_gosdk/model_boot_iscsi_device_response.go +++ b/intersight_gosdk/model_boot_iscsi_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_local_cdd.go b/intersight_gosdk/model_boot_local_cdd.go index 6963b5fdfe..5d08394e6a 100644 --- a/intersight_gosdk/model_boot_local_cdd.go +++ b/intersight_gosdk/model_boot_local_cdd.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_local_disk.go b/intersight_gosdk/model_boot_local_disk.go index 8b0ea24bbe..e49e297e8d 100644 --- a/intersight_gosdk/model_boot_local_disk.go +++ b/intersight_gosdk/model_boot_local_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,7 +30,7 @@ type BootLocalDisk struct { ObjectType string `json:"ObjectType"` Bootloader NullableBootBootloader `json:"Bootloader,omitempty"` // The slot id of the local disk device. Supported values for Standalone Rack servers are (1-205, \"M\", \"HBA\", \"SAS\", \"RAID\", \"MRAID\", \"MRAID1\", \"MRAID2\", \"MSTOR-RAID\"). Supported values for FI-attached servers are (1-205, \"RAID\", \"MRAID\", \"FMEZZ1-SAS\", \"MRAID1\", \"MRAID2\", \"MSTOR-RAID\", \"MSTOR-RAID-1\", \"MSTOR-RAID-2\"). - Slot *string `json:"Slot,omitempty"` + Slot *string `json:"Slot,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|20[0-5]|M|HBA|SAS|MRAID|RAID|MRAID1|MRAID2|MSTOR-RAID|FMEZZ1-SAS|MSTOR-RAID-1|MSTOR-RAID-2)$"` AdditionalProperties map[string]interface{} } @@ -283,7 +283,7 @@ func (o *BootLocalDisk) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` Bootloader NullableBootBootloader `json:"Bootloader,omitempty"` // The slot id of the local disk device. Supported values for Standalone Rack servers are (1-205, \"M\", \"HBA\", \"SAS\", \"RAID\", \"MRAID\", \"MRAID1\", \"MRAID2\", \"MSTOR-RAID\"). Supported values for FI-attached servers are (1-205, \"RAID\", \"MRAID\", \"FMEZZ1-SAS\", \"MRAID1\", \"MRAID2\", \"MSTOR-RAID\", \"MSTOR-RAID-1\", \"MSTOR-RAID-2\"). - Slot *string `json:"Slot,omitempty"` + Slot *string `json:"Slot,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|20[0-5]|M|HBA|SAS|MRAID|RAID|MRAID1|MRAID2|MSTOR-RAID|FMEZZ1-SAS|MSTOR-RAID-1|MSTOR-RAID-2)$"` } varBootLocalDiskWithoutEmbeddedStruct := BootLocalDiskWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_boot_nvme.go b/intersight_gosdk/model_boot_nvme.go index bb714e4cd6..31b8d706a3 100644 --- a/intersight_gosdk/model_boot_nvme.go +++ b/intersight_gosdk/model_boot_nvme.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_nvme_device.go b/intersight_gosdk/model_boot_nvme_device.go index 9fd7cf3288..5e83c18e3a 100644 --- a/intersight_gosdk/model_boot_nvme_device.go +++ b/intersight_gosdk/model_boot_nvme_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_nvme_device_list.go b/intersight_gosdk/model_boot_nvme_device_list.go index 7cf085c93a..4cb616eb91 100644 --- a/intersight_gosdk/model_boot_nvme_device_list.go +++ b/intersight_gosdk/model_boot_nvme_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_nvme_device_relationship.go b/intersight_gosdk/model_boot_nvme_device_relationship.go index 313123c625..01c2685a72 100644 --- a/intersight_gosdk/model_boot_nvme_device_relationship.go +++ b/intersight_gosdk/model_boot_nvme_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_nvme_device_response.go b/intersight_gosdk/model_boot_nvme_device_response.go index b0bab04147..aa7defff94 100644 --- a/intersight_gosdk/model_boot_nvme_device_response.go +++ b/intersight_gosdk/model_boot_nvme_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_pch_storage.go b/intersight_gosdk/model_boot_pch_storage.go index 38d3f1fd61..e5dad40a8b 100644 --- a/intersight_gosdk/model_boot_pch_storage.go +++ b/intersight_gosdk/model_boot_pch_storage.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_pch_storage_device.go b/intersight_gosdk/model_boot_pch_storage_device.go index fa9ff34f74..0e676a1ad0 100644 --- a/intersight_gosdk/model_boot_pch_storage_device.go +++ b/intersight_gosdk/model_boot_pch_storage_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_pch_storage_device_list.go b/intersight_gosdk/model_boot_pch_storage_device_list.go index 57a21e03aa..9a07373536 100644 --- a/intersight_gosdk/model_boot_pch_storage_device_list.go +++ b/intersight_gosdk/model_boot_pch_storage_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_pch_storage_device_relationship.go b/intersight_gosdk/model_boot_pch_storage_device_relationship.go index 87ee7aeb10..dc3013d5d2 100644 --- a/intersight_gosdk/model_boot_pch_storage_device_relationship.go +++ b/intersight_gosdk/model_boot_pch_storage_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_pch_storage_device_response.go b/intersight_gosdk/model_boot_pch_storage_device_response.go index 55d2bf41a7..0e73a92322 100644 --- a/intersight_gosdk/model_boot_pch_storage_device_response.go +++ b/intersight_gosdk/model_boot_pch_storage_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_precision_policy.go b/intersight_gosdk/model_boot_precision_policy.go index d6cd5b52b8..5fd3a91870 100644 --- a/intersight_gosdk/model_boot_precision_policy.go +++ b/intersight_gosdk/model_boot_precision_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_precision_policy_list.go b/intersight_gosdk/model_boot_precision_policy_list.go index 75417d5da1..4d4ac66b5d 100644 --- a/intersight_gosdk/model_boot_precision_policy_list.go +++ b/intersight_gosdk/model_boot_precision_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_precision_policy_response.go b/intersight_gosdk/model_boot_precision_policy_response.go index cd2bb29dfc..1240ea1a67 100644 --- a/intersight_gosdk/model_boot_precision_policy_response.go +++ b/intersight_gosdk/model_boot_precision_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_pxe.go b/intersight_gosdk/model_boot_pxe.go index 57475d4b22..092c32c143 100644 --- a/intersight_gosdk/model_boot_pxe.go +++ b/intersight_gosdk/model_boot_pxe.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,17 +29,17 @@ type BootPxe struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The name of the underlying virtual ethernet interface used by the PXE boot device. - InterfaceName *string `json:"InterfaceName,omitempty"` + InterfaceName *string `json:"InterfaceName,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]*$"` // Lists the supported methods to provide network boot device configuration. Supported values are \"name\" and \"mac\". * `name` - Use interface name to select virtual ethernet interface. * `mac` - Use MAC address to select virtual ethernet interface. * `port` - Use port to select virtual ethernet interface. InterfaceSource *string `json:"InterfaceSource,omitempty"` // The IP Address family type to use during the PXE Boot process. * `None` - Default value if IpType is not specified. * `IPv4` - The IPv4 address family type. * `IPv6` - The IPv6 address family type. IpType *string `json:"IpType,omitempty"` // The MAC Address of the underlying virtual ethernet interface used by the PXE boot device. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^(((\\\\d|([a-f]|[A-F])){2}:){5}(\\\\d|([a-f]|[A-F])){2})$"` // The Port ID of the adapter on which the underlying virtual ethernet interface is present. If no port is specified, the default value is -1. Supported values are 0 to 255. Port *int64 `json:"Port,omitempty"` // The slot ID of the adapter on which the underlying virtual ethernet interface is present. Supported values are ( 1 - 255, \"MLOM\", \"L\", \"L1\", \"L2\", \"OCP\"). - Slot *string `json:"Slot,omitempty"` + Slot *string `json:"Slot,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]|L|MLOM|L1|L2|OCP)$"` AdditionalProperties map[string]interface{} } @@ -432,17 +432,17 @@ func (o *BootPxe) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The name of the underlying virtual ethernet interface used by the PXE boot device. - InterfaceName *string `json:"InterfaceName,omitempty"` + InterfaceName *string `json:"InterfaceName,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]*$"` // Lists the supported methods to provide network boot device configuration. Supported values are \"name\" and \"mac\". * `name` - Use interface name to select virtual ethernet interface. * `mac` - Use MAC address to select virtual ethernet interface. * `port` - Use port to select virtual ethernet interface. InterfaceSource *string `json:"InterfaceSource,omitempty"` // The IP Address family type to use during the PXE Boot process. * `None` - Default value if IpType is not specified. * `IPv4` - The IPv4 address family type. * `IPv6` - The IPv6 address family type. IpType *string `json:"IpType,omitempty"` // The MAC Address of the underlying virtual ethernet interface used by the PXE boot device. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^(((\\\\d|([a-f]|[A-F])){2}:){5}(\\\\d|([a-f]|[A-F])){2})$"` // The Port ID of the adapter on which the underlying virtual ethernet interface is present. If no port is specified, the default value is -1. Supported values are 0 to 255. Port *int64 `json:"Port,omitempty"` // The slot ID of the adapter on which the underlying virtual ethernet interface is present. Supported values are ( 1 - 255, \"MLOM\", \"L\", \"L1\", \"L2\", \"OCP\"). - Slot *string `json:"Slot,omitempty"` + Slot *string `json:"Slot,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]|L|MLOM|L1|L2|OCP)$"` } varBootPxeWithoutEmbeddedStruct := BootPxeWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_boot_pxe_device.go b/intersight_gosdk/model_boot_pxe_device.go index 59d07f8001..4808d47d42 100644 --- a/intersight_gosdk/model_boot_pxe_device.go +++ b/intersight_gosdk/model_boot_pxe_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_pxe_device_list.go b/intersight_gosdk/model_boot_pxe_device_list.go index 9b8e355829..c72c70cd9f 100644 --- a/intersight_gosdk/model_boot_pxe_device_list.go +++ b/intersight_gosdk/model_boot_pxe_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_pxe_device_relationship.go b/intersight_gosdk/model_boot_pxe_device_relationship.go index effbcd78a4..9952a7de76 100644 --- a/intersight_gosdk/model_boot_pxe_device_relationship.go +++ b/intersight_gosdk/model_boot_pxe_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_pxe_device_response.go b/intersight_gosdk/model_boot_pxe_device_response.go index 9f0e064dec..8bf267a85f 100644 --- a/intersight_gosdk/model_boot_pxe_device_response.go +++ b/intersight_gosdk/model_boot_pxe_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_san.go b/intersight_gosdk/model_boot_san.go index 7756820b56..76c6027605 100644 --- a/intersight_gosdk/model_boot_san.go +++ b/intersight_gosdk/model_boot_san.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,13 +30,13 @@ type BootSan struct { ObjectType string `json:"ObjectType"` Bootloader NullableBootBootloader `json:"Bootloader,omitempty"` // The name of the underlying vHBA interface to be used by the SAN boot device. - InterfaceName *string `json:"InterfaceName,omitempty"` + InterfaceName *string `json:"InterfaceName,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]*$"` // The Logical Unit Number (LUN) of the device. For SAN boot configuration to be deployed on a server with 1300 family of Cisco VIC adapters, the recommendation is for the boot LUN to be numbered as 0 to ensure that LUN is mounted as the first disk from which the server boots. Lun *int64 `json:"Lun,omitempty"` // Slot ID of the device. Supported values are ( 1 - 255, \"MLOM\", \"L1\", \"L2\" ). - Slot *string `json:"Slot,omitempty"` + Slot *string `json:"Slot,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]|MLOM|L1|L2)$"` // The WWPN Address of the underlying fibre channel interface used by the SAN boot device. Value must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. - Wwpn *string `json:"Wwpn,omitempty"` + Wwpn *string `json:"Wwpn,omitempty" validate:"regexp=^$|(^([0-9a-fA-F]{2}:){7}[0-9a-fA-F]{2}$)"` AdditionalProperties map[string]interface{} } @@ -398,13 +398,13 @@ func (o *BootSan) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` Bootloader NullableBootBootloader `json:"Bootloader,omitempty"` // The name of the underlying vHBA interface to be used by the SAN boot device. - InterfaceName *string `json:"InterfaceName,omitempty"` + InterfaceName *string `json:"InterfaceName,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]*$"` // The Logical Unit Number (LUN) of the device. For SAN boot configuration to be deployed on a server with 1300 family of Cisco VIC adapters, the recommendation is for the boot LUN to be numbered as 0 to ensure that LUN is mounted as the first disk from which the server boots. Lun *int64 `json:"Lun,omitempty"` // Slot ID of the device. Supported values are ( 1 - 255, \"MLOM\", \"L1\", \"L2\" ). - Slot *string `json:"Slot,omitempty"` + Slot *string `json:"Slot,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]|MLOM|L1|L2)$"` // The WWPN Address of the underlying fibre channel interface used by the SAN boot device. Value must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. - Wwpn *string `json:"Wwpn,omitempty"` + Wwpn *string `json:"Wwpn,omitempty" validate:"regexp=^$|(^([0-9a-fA-F]{2}:){7}[0-9a-fA-F]{2}$)"` } varBootSanWithoutEmbeddedStruct := BootSanWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_boot_san_device.go b/intersight_gosdk/model_boot_san_device.go index 2c4737e637..948c98290f 100644 --- a/intersight_gosdk/model_boot_san_device.go +++ b/intersight_gosdk/model_boot_san_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_san_device_list.go b/intersight_gosdk/model_boot_san_device_list.go index 7fae00c8d0..18f455d49e 100644 --- a/intersight_gosdk/model_boot_san_device_list.go +++ b/intersight_gosdk/model_boot_san_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_san_device_relationship.go b/intersight_gosdk/model_boot_san_device_relationship.go index 9998844c5b..74a0f553bc 100644 --- a/intersight_gosdk/model_boot_san_device_relationship.go +++ b/intersight_gosdk/model_boot_san_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_san_device_response.go b/intersight_gosdk/model_boot_san_device_response.go index 2ba28e30d3..3dcdbdac97 100644 --- a/intersight_gosdk/model_boot_san_device_response.go +++ b/intersight_gosdk/model_boot_san_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_sd_card.go b/intersight_gosdk/model_boot_sd_card.go index c4076cbdcd..3919cc62f1 100644 --- a/intersight_gosdk/model_boot_sd_card.go +++ b/intersight_gosdk/model_boot_sd_card.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_sd_device.go b/intersight_gosdk/model_boot_sd_device.go index b45e47259a..f46f409a2e 100644 --- a/intersight_gosdk/model_boot_sd_device.go +++ b/intersight_gosdk/model_boot_sd_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_sd_device_list.go b/intersight_gosdk/model_boot_sd_device_list.go index 662c56d5ec..9a5f974a1b 100644 --- a/intersight_gosdk/model_boot_sd_device_list.go +++ b/intersight_gosdk/model_boot_sd_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_sd_device_relationship.go b/intersight_gosdk/model_boot_sd_device_relationship.go index b11b1cbcd0..caa567017b 100644 --- a/intersight_gosdk/model_boot_sd_device_relationship.go +++ b/intersight_gosdk/model_boot_sd_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_sd_device_response.go b/intersight_gosdk/model_boot_sd_device_response.go index c665107fd9..1075a0abd3 100644 --- a/intersight_gosdk/model_boot_sd_device_response.go +++ b/intersight_gosdk/model_boot_sd_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_static_ip_v4_settings.go b/intersight_gosdk/model_boot_static_ip_v4_settings.go index e4af996dd0..1978508912 100644 --- a/intersight_gosdk/model_boot_static_ip_v4_settings.go +++ b/intersight_gosdk/model_boot_static_ip_v4_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,13 +29,13 @@ type BootStaticIpV4Settings struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IP address of DNS server. - DnsIp *string `json:"DnsIp,omitempty"` + DnsIp *string `json:"DnsIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP address of default gateway. - GatewayIp *string `json:"GatewayIp,omitempty"` + GatewayIp *string `json:"GatewayIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Ipv4 static Internet Protocol address. - Ip *string `json:"Ip,omitempty"` + Ip *string `json:"Ip,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Network mask of the IP address. - NetworkMask *string `json:"NetworkMask,omitempty"` + NetworkMask *string `json:"NetworkMask,omitempty" validate:"regexp=^$|^(((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}))$"` AdditionalProperties map[string]interface{} } @@ -344,13 +344,13 @@ func (o *BootStaticIpV4Settings) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IP address of DNS server. - DnsIp *string `json:"DnsIp,omitempty"` + DnsIp *string `json:"DnsIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP address of default gateway. - GatewayIp *string `json:"GatewayIp,omitempty"` + GatewayIp *string `json:"GatewayIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Ipv4 static Internet Protocol address. - Ip *string `json:"Ip,omitempty"` + Ip *string `json:"Ip,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Network mask of the IP address. - NetworkMask *string `json:"NetworkMask,omitempty"` + NetworkMask *string `json:"NetworkMask,omitempty" validate:"regexp=^$|^(((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}))$"` } varBootStaticIpV4SettingsWithoutEmbeddedStruct := BootStaticIpV4SettingsWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_boot_static_ip_v6_settings.go b/intersight_gosdk/model_boot_static_ip_v6_settings.go index 09856a32e2..8642dc30c2 100644 --- a/intersight_gosdk/model_boot_static_ip_v6_settings.go +++ b/intersight_gosdk/model_boot_static_ip_v6_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,11 +29,11 @@ type BootStaticIpV6Settings struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IP address of DNS server. - DnsIp *string `json:"DnsIp,omitempty"` + DnsIp *string `json:"DnsIp,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // IP address of default gateway. - GatewayIp *string `json:"GatewayIp,omitempty"` + GatewayIp *string `json:"GatewayIp,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // Ipv6 static Internet Protocol address. - Ip *string `json:"Ip,omitempty"` + Ip *string `json:"Ip,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // A prefix length which masks the IP address and divides the IP address into network address and host address. PrefixLength *int64 `json:"PrefixLength,omitempty"` AdditionalProperties map[string]interface{} @@ -348,11 +348,11 @@ func (o *BootStaticIpV6Settings) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IP address of DNS server. - DnsIp *string `json:"DnsIp,omitempty"` + DnsIp *string `json:"DnsIp,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // IP address of default gateway. - GatewayIp *string `json:"GatewayIp,omitempty"` + GatewayIp *string `json:"GatewayIp,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // Ipv6 static Internet Protocol address. - Ip *string `json:"Ip,omitempty"` + Ip *string `json:"Ip,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // A prefix length which masks the IP address and divides the IP address into network address and host address. PrefixLength *int64 `json:"PrefixLength,omitempty"` } diff --git a/intersight_gosdk/model_boot_uefi_shell.go b/intersight_gosdk/model_boot_uefi_shell.go index ea295632db..1c43ce084a 100644 --- a/intersight_gosdk/model_boot_uefi_shell.go +++ b/intersight_gosdk/model_boot_uefi_shell.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_uefi_shell_device.go b/intersight_gosdk/model_boot_uefi_shell_device.go index 5cd1b93127..e32e6a4ac5 100644 --- a/intersight_gosdk/model_boot_uefi_shell_device.go +++ b/intersight_gosdk/model_boot_uefi_shell_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_uefi_shell_device_list.go b/intersight_gosdk/model_boot_uefi_shell_device_list.go index 3cad2b9c20..2b807427e2 100644 --- a/intersight_gosdk/model_boot_uefi_shell_device_list.go +++ b/intersight_gosdk/model_boot_uefi_shell_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_uefi_shell_device_relationship.go b/intersight_gosdk/model_boot_uefi_shell_device_relationship.go index 0769a069a6..74ab05b1d6 100644 --- a/intersight_gosdk/model_boot_uefi_shell_device_relationship.go +++ b/intersight_gosdk/model_boot_uefi_shell_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_uefi_shell_device_response.go b/intersight_gosdk/model_boot_uefi_shell_device_response.go index 25954589aa..f9fca1686c 100644 --- a/intersight_gosdk/model_boot_uefi_shell_device_response.go +++ b/intersight_gosdk/model_boot_uefi_shell_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_usb.go b/intersight_gosdk/model_boot_usb.go index 8883c1e11f..6844a4cf3e 100644 --- a/intersight_gosdk/model_boot_usb.go +++ b/intersight_gosdk/model_boot_usb.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_usb_device.go b/intersight_gosdk/model_boot_usb_device.go index 2440eecec2..4bb06c9127 100644 --- a/intersight_gosdk/model_boot_usb_device.go +++ b/intersight_gosdk/model_boot_usb_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_usb_device_list.go b/intersight_gosdk/model_boot_usb_device_list.go index 0a45022ff5..96ccf664fa 100644 --- a/intersight_gosdk/model_boot_usb_device_list.go +++ b/intersight_gosdk/model_boot_usb_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_usb_device_relationship.go b/intersight_gosdk/model_boot_usb_device_relationship.go index 3820505257..39233a30b5 100644 --- a/intersight_gosdk/model_boot_usb_device_relationship.go +++ b/intersight_gosdk/model_boot_usb_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_usb_device_response.go b/intersight_gosdk/model_boot_usb_device_response.go index 5383eba9a8..cbf6793cfe 100644 --- a/intersight_gosdk/model_boot_usb_device_response.go +++ b/intersight_gosdk/model_boot_usb_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_virtual_media.go b/intersight_gosdk/model_boot_virtual_media.go index 99b1277fe2..002162fdeb 100644 --- a/intersight_gosdk/model_boot_virtual_media.go +++ b/intersight_gosdk/model_boot_virtual_media.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_vmedia_device.go b/intersight_gosdk/model_boot_vmedia_device.go index 2e47f0fe4d..64514aa6e0 100644 --- a/intersight_gosdk/model_boot_vmedia_device.go +++ b/intersight_gosdk/model_boot_vmedia_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_vmedia_device_list.go b/intersight_gosdk/model_boot_vmedia_device_list.go index fe689abdfd..f1527e3b7b 100644 --- a/intersight_gosdk/model_boot_vmedia_device_list.go +++ b/intersight_gosdk/model_boot_vmedia_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_vmedia_device_relationship.go b/intersight_gosdk/model_boot_vmedia_device_relationship.go index 131ac388ae..123675c755 100644 --- a/intersight_gosdk/model_boot_vmedia_device_relationship.go +++ b/intersight_gosdk/model_boot_vmedia_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_vmedia_device_response.go b/intersight_gosdk/model_boot_vmedia_device_response.go index 3d09248ace..1c6e9e14ca 100644 --- a/intersight_gosdk/model_boot_vmedia_device_response.go +++ b/intersight_gosdk/model_boot_vmedia_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_api_result.go b/intersight_gosdk/model_bulk_api_result.go index ae278b6e2c..5ffdba1c8a 100644 --- a/intersight_gosdk/model_bulk_api_result.go +++ b/intersight_gosdk/model_bulk_api_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_export.go b/intersight_gosdk/model_bulk_export.go index cd1c05ff68..c4217923bc 100644 --- a/intersight_gosdk/model_bulk_export.go +++ b/intersight_gosdk/model_bulk_export.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -42,7 +42,7 @@ type BulkExport struct { IncludeOrgIdentity *bool `json:"IncludeOrgIdentity,omitempty"` Items []MoMoRef `json:"Items,omitempty"` // An identifier for the export instance. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9][a-zA-Z0-9_-]{1,92}$"` // The permission identifier which indicates the permission that current user has that will allow to start this export operation. PermissionId *string `json:"PermissionId,omitempty"` // 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. @@ -784,7 +784,7 @@ func (o *BulkExport) UnmarshalJSON(data []byte) (err error) { IncludeOrgIdentity *bool `json:"IncludeOrgIdentity,omitempty"` Items []MoMoRef `json:"Items,omitempty"` // An identifier for the export instance. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9][a-zA-Z0-9_-]{1,92}$"` // The permission identifier which indicates the permission that current user has that will allow to start this export operation. PermissionId *string `json:"PermissionId,omitempty"` // 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. diff --git a/intersight_gosdk/model_bulk_export_list.go b/intersight_gosdk/model_bulk_export_list.go index f11cc0350d..f534e1791a 100644 --- a/intersight_gosdk/model_bulk_export_list.go +++ b/intersight_gosdk/model_bulk_export_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_export_relationship.go b/intersight_gosdk/model_bulk_export_relationship.go index 33512ac826..4d70cf0ce3 100644 --- a/intersight_gosdk/model_bulk_export_relationship.go +++ b/intersight_gosdk/model_bulk_export_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_export_response.go b/intersight_gosdk/model_bulk_export_response.go index 464f19b983..6e8c9d95c2 100644 --- a/intersight_gosdk/model_bulk_export_response.go +++ b/intersight_gosdk/model_bulk_export_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_exported_item.go b/intersight_gosdk/model_bulk_exported_item.go index 679231a4ec..e7479daa1f 100644 --- a/intersight_gosdk/model_bulk_exported_item.go +++ b/intersight_gosdk/model_bulk_exported_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_exported_item_list.go b/intersight_gosdk/model_bulk_exported_item_list.go index 0ea791b01d..ac58eaad45 100644 --- a/intersight_gosdk/model_bulk_exported_item_list.go +++ b/intersight_gosdk/model_bulk_exported_item_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_exported_item_relationship.go b/intersight_gosdk/model_bulk_exported_item_relationship.go index 3fe06a24a2..914cddbf86 100644 --- a/intersight_gosdk/model_bulk_exported_item_relationship.go +++ b/intersight_gosdk/model_bulk_exported_item_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_exported_item_response.go b/intersight_gosdk/model_bulk_exported_item_response.go index ef5b2f3dcb..3384a431cd 100644 --- a/intersight_gosdk/model_bulk_exported_item_response.go +++ b/intersight_gosdk/model_bulk_exported_item_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_http_header.go b/intersight_gosdk/model_bulk_http_header.go index 098dfeae99..c28514bb18 100644 --- a/intersight_gosdk/model_bulk_http_header.go +++ b/intersight_gosdk/model_bulk_http_header.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_mo_cloner.go b/intersight_gosdk/model_bulk_mo_cloner.go index d22da36c40..830b087cec 100644 --- a/intersight_gosdk/model_bulk_mo_cloner.go +++ b/intersight_gosdk/model_bulk_mo_cloner.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type BulkMoCloner struct { Sources []MoBaseMo `json:"Sources,omitempty"` Targets []MoBaseMo `json:"Targets,omitempty"` // A user-friendly short name to identify the workflow. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), forward slash (/), comma or an underscore (_). - WorkflowNameSuffix *string `json:"WorkflowNameSuffix,omitempty"` + WorkflowNameSuffix *string `json:"WorkflowNameSuffix,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_.\\\\,\\/:-]{0,63}$"` AsyncResult NullableBulkResultRelationship `json:"AsyncResult,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` AdditionalProperties map[string]interface{} @@ -479,7 +479,7 @@ func (o *BulkMoCloner) UnmarshalJSON(data []byte) (err error) { Sources []MoBaseMo `json:"Sources,omitempty"` Targets []MoBaseMo `json:"Targets,omitempty"` // A user-friendly short name to identify the workflow. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), forward slash (/), comma or an underscore (_). - WorkflowNameSuffix *string `json:"WorkflowNameSuffix,omitempty"` + WorkflowNameSuffix *string `json:"WorkflowNameSuffix,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_.\\\\,\\/:-]{0,63}$"` AsyncResult NullableBulkResultRelationship `json:"AsyncResult,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` } diff --git a/intersight_gosdk/model_bulk_mo_cloner_list.go b/intersight_gosdk/model_bulk_mo_cloner_list.go index 14a9844623..6e07348b08 100644 --- a/intersight_gosdk/model_bulk_mo_cloner_list.go +++ b/intersight_gosdk/model_bulk_mo_cloner_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_mo_cloner_relationship.go b/intersight_gosdk/model_bulk_mo_cloner_relationship.go index dd1011abb8..8631a1ae60 100644 --- a/intersight_gosdk/model_bulk_mo_cloner_relationship.go +++ b/intersight_gosdk/model_bulk_mo_cloner_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_mo_cloner_response.go b/intersight_gosdk/model_bulk_mo_cloner_response.go index 407455018c..ede9e76fc7 100644 --- a/intersight_gosdk/model_bulk_mo_cloner_response.go +++ b/intersight_gosdk/model_bulk_mo_cloner_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_mo_deep_cloner.go b/intersight_gosdk/model_bulk_mo_deep_cloner.go index 7d854d896f..01f6511842 100644 --- a/intersight_gosdk/model_bulk_mo_deep_cloner.go +++ b/intersight_gosdk/model_bulk_mo_deep_cloner.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,13 +30,13 @@ type BulkMoDeepCloner struct { ObjectType string `json:"ObjectType"` ExcludeProperties []string `json:"ExcludeProperties,omitempty"` // Name suffix to be applied to all the MOs being cloned when ReferencePolicy chosen is CreateNew. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_). - ReferenceNameSuffix *string `json:"ReferenceNameSuffix,omitempty"` + ReferenceNameSuffix *string `json:"ReferenceNameSuffix,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_-]{1,64}$"` // User selected reference clone behavior. Applies to all the MOs being cloned. * `ReuseAll` - Any policies in the destination organization whose name matches the policy referenced in the cloned policy will be attached. If no policyin the destination organization matches by name, a policy will be cloned with the same name.Pool references will always be matched by name. If not found, the pool will be cloned in the destination organization, but no identifierblocks will be created. * `CreateNew` - New policies will be created for the source and all the attached policies. If a policy of the same name and type already exists in thedestination organization or any organization from which it shares policies, a clone will be created with the provided suffix added to the name.Pool references will always be matched by name. If not found, the pool will be cloned in the destination organization, but no identifierblocks will be created. ReferencePolicy *string `json:"ReferencePolicy,omitempty"` Source *MoMoRef `json:"Source,omitempty"` Targets []MoBaseMo `json:"Targets,omitempty"` // A user-friendly short name to identify the workflow. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), forward slash (/), comma or an underscore (_). - WorkflowNameSuffix *string `json:"WorkflowNameSuffix,omitempty"` + WorkflowNameSuffix *string `json:"WorkflowNameSuffix,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_.\\\\,\\/:-]{0,63}$"` AsyncResult NullableBulkResultRelationship `json:"AsyncResult,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` AdditionalProperties map[string]interface{} @@ -516,13 +516,13 @@ func (o *BulkMoDeepCloner) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` ExcludeProperties []string `json:"ExcludeProperties,omitempty"` // Name suffix to be applied to all the MOs being cloned when ReferencePolicy chosen is CreateNew. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_). - ReferenceNameSuffix *string `json:"ReferenceNameSuffix,omitempty"` + ReferenceNameSuffix *string `json:"ReferenceNameSuffix,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_-]{1,64}$"` // User selected reference clone behavior. Applies to all the MOs being cloned. * `ReuseAll` - Any policies in the destination organization whose name matches the policy referenced in the cloned policy will be attached. If no policyin the destination organization matches by name, a policy will be cloned with the same name.Pool references will always be matched by name. If not found, the pool will be cloned in the destination organization, but no identifierblocks will be created. * `CreateNew` - New policies will be created for the source and all the attached policies. If a policy of the same name and type already exists in thedestination organization or any organization from which it shares policies, a clone will be created with the provided suffix added to the name.Pool references will always be matched by name. If not found, the pool will be cloned in the destination organization, but no identifierblocks will be created. ReferencePolicy *string `json:"ReferencePolicy,omitempty"` Source *MoMoRef `json:"Source,omitempty"` Targets []MoBaseMo `json:"Targets,omitempty"` // A user-friendly short name to identify the workflow. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), forward slash (/), comma or an underscore (_). - WorkflowNameSuffix *string `json:"WorkflowNameSuffix,omitempty"` + WorkflowNameSuffix *string `json:"WorkflowNameSuffix,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_.\\\\,\\/:-]{0,63}$"` AsyncResult NullableBulkResultRelationship `json:"AsyncResult,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` } diff --git a/intersight_gosdk/model_bulk_mo_deep_cloner_list.go b/intersight_gosdk/model_bulk_mo_deep_cloner_list.go index 4fa17f3348..b90ee054ff 100644 --- a/intersight_gosdk/model_bulk_mo_deep_cloner_list.go +++ b/intersight_gosdk/model_bulk_mo_deep_cloner_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_mo_deep_cloner_relationship.go b/intersight_gosdk/model_bulk_mo_deep_cloner_relationship.go index b44da6fc4e..e5be3e87b0 100644 --- a/intersight_gosdk/model_bulk_mo_deep_cloner_relationship.go +++ b/intersight_gosdk/model_bulk_mo_deep_cloner_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_mo_deep_cloner_response.go b/intersight_gosdk/model_bulk_mo_deep_cloner_response.go index 19167c2abd..370b42bf5d 100644 --- a/intersight_gosdk/model_bulk_mo_deep_cloner_response.go +++ b/intersight_gosdk/model_bulk_mo_deep_cloner_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_mo_merger.go b/intersight_gosdk/model_bulk_mo_merger.go index 870b4c4417..36ba446931 100644 --- a/intersight_gosdk/model_bulk_mo_merger.go +++ b/intersight_gosdk/model_bulk_mo_merger.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type BulkMoMerger struct { TargetConfig *MoBaseMo `json:"TargetConfig,omitempty"` Targets []MoBaseMo `json:"Targets,omitempty"` // A user-friendly short name to identify the workflow. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), forward slash (/), comma or an underscore (_). - WorkflowNameSuffix *string `json:"WorkflowNameSuffix,omitempty"` + WorkflowNameSuffix *string `json:"WorkflowNameSuffix,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_.\\\\,\\/:-]{0,63}$"` AsyncResult NullableBulkResultRelationship `json:"AsyncResult,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` AdditionalProperties map[string]interface{} @@ -521,7 +521,7 @@ func (o *BulkMoMerger) UnmarshalJSON(data []byte) (err error) { TargetConfig *MoBaseMo `json:"TargetConfig,omitempty"` Targets []MoBaseMo `json:"Targets,omitempty"` // A user-friendly short name to identify the workflow. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), forward slash (/), comma or an underscore (_). - WorkflowNameSuffix *string `json:"WorkflowNameSuffix,omitempty"` + WorkflowNameSuffix *string `json:"WorkflowNameSuffix,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_.\\\\,\\/:-]{0,63}$"` AsyncResult NullableBulkResultRelationship `json:"AsyncResult,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` } diff --git a/intersight_gosdk/model_bulk_mo_merger_list.go b/intersight_gosdk/model_bulk_mo_merger_list.go index 95521a3e33..83623f129e 100644 --- a/intersight_gosdk/model_bulk_mo_merger_list.go +++ b/intersight_gosdk/model_bulk_mo_merger_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_mo_merger_relationship.go b/intersight_gosdk/model_bulk_mo_merger_relationship.go index d5a4d7f9b8..43cdb8c474 100644 --- a/intersight_gosdk/model_bulk_mo_merger_relationship.go +++ b/intersight_gosdk/model_bulk_mo_merger_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_mo_merger_response.go b/intersight_gosdk/model_bulk_mo_merger_response.go index 73b2a4ff64..0f85fffd7e 100644 --- a/intersight_gosdk/model_bulk_mo_merger_response.go +++ b/intersight_gosdk/model_bulk_mo_merger_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_multi_relation_entry_patch.go b/intersight_gosdk/model_bulk_multi_relation_entry_patch.go index 632f9ff9fe..b2550f00f3 100644 --- a/intersight_gosdk/model_bulk_multi_relation_entry_patch.go +++ b/intersight_gosdk/model_bulk_multi_relation_entry_patch.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_patch_content.go b/intersight_gosdk/model_bulk_patch_content.go index 93379359d8..7df7deddff 100644 --- a/intersight_gosdk/model_bulk_patch_content.go +++ b/intersight_gosdk/model_bulk_patch_content.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_request.go b/intersight_gosdk/model_bulk_request.go index 0b3becb532..bafd780aa3 100644 --- a/intersight_gosdk/model_bulk_request.go +++ b/intersight_gosdk/model_bulk_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_request_list.go b/intersight_gosdk/model_bulk_request_list.go index b6c9e99537..0fbb5d5bfe 100644 --- a/intersight_gosdk/model_bulk_request_list.go +++ b/intersight_gosdk/model_bulk_request_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_request_relationship.go b/intersight_gosdk/model_bulk_request_relationship.go index cd72359009..b807ce329f 100644 --- a/intersight_gosdk/model_bulk_request_relationship.go +++ b/intersight_gosdk/model_bulk_request_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_request_response.go b/intersight_gosdk/model_bulk_request_response.go index 8732720863..e1ff474a28 100644 --- a/intersight_gosdk/model_bulk_request_response.go +++ b/intersight_gosdk/model_bulk_request_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_rest_result.go b/intersight_gosdk/model_bulk_rest_result.go index 45c66c96ac..52f753db13 100644 --- a/intersight_gosdk/model_bulk_rest_result.go +++ b/intersight_gosdk/model_bulk_rest_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_rest_sub_request.go b/intersight_gosdk/model_bulk_rest_sub_request.go index 4941c6e2d5..f289d199da 100644 --- a/intersight_gosdk/model_bulk_rest_sub_request.go +++ b/intersight_gosdk/model_bulk_rest_sub_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_result.go b/intersight_gosdk/model_bulk_result.go index f9e67dabc9..94e9408d8d 100644 --- a/intersight_gosdk/model_bulk_result.go +++ b/intersight_gosdk/model_bulk_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_result_list.go b/intersight_gosdk/model_bulk_result_list.go index 03b9a05d65..dda2540a6d 100644 --- a/intersight_gosdk/model_bulk_result_list.go +++ b/intersight_gosdk/model_bulk_result_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_result_relationship.go b/intersight_gosdk/model_bulk_result_relationship.go index 537c840aa3..24b26f90d8 100644 --- a/intersight_gosdk/model_bulk_result_relationship.go +++ b/intersight_gosdk/model_bulk_result_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_result_response.go b/intersight_gosdk/model_bulk_result_response.go index 1562f0094e..2b14473ba3 100644 --- a/intersight_gosdk/model_bulk_result_response.go +++ b/intersight_gosdk/model_bulk_result_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_sec_resource_roles.go b/intersight_gosdk/model_bulk_sec_resource_roles.go index 7ede26fe10..190acaf863 100644 --- a/intersight_gosdk/model_bulk_sec_resource_roles.go +++ b/intersight_gosdk/model_bulk_sec_resource_roles.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_sub_request.go b/intersight_gosdk/model_bulk_sub_request.go index 7e9b5dcf89..1a6df6466d 100644 --- a/intersight_gosdk/model_bulk_sub_request.go +++ b/intersight_gosdk/model_bulk_sub_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_sub_request_obj.go b/intersight_gosdk/model_bulk_sub_request_obj.go index b216cacd2b..afbadeb780 100644 --- a/intersight_gosdk/model_bulk_sub_request_obj.go +++ b/intersight_gosdk/model_bulk_sub_request_obj.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_sub_request_obj_list.go b/intersight_gosdk/model_bulk_sub_request_obj_list.go index b0d45d1fcf..b16a418bd4 100644 --- a/intersight_gosdk/model_bulk_sub_request_obj_list.go +++ b/intersight_gosdk/model_bulk_sub_request_obj_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_sub_request_obj_relationship.go b/intersight_gosdk/model_bulk_sub_request_obj_relationship.go index ea1fdc6b19..b362e6eb22 100644 --- a/intersight_gosdk/model_bulk_sub_request_obj_relationship.go +++ b/intersight_gosdk/model_bulk_sub_request_obj_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_sub_request_obj_response.go b/intersight_gosdk/model_bulk_sub_request_obj_response.go index 69699815df..1233af2b81 100644 --- a/intersight_gosdk/model_bulk_sub_request_obj_response.go +++ b/intersight_gosdk/model_bulk_sub_request_obj_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_actions_meta_data.go b/intersight_gosdk/model_capability_actions_meta_data.go index 2d819cac61..801e4541b6 100644 --- a/intersight_gosdk/model_capability_actions_meta_data.go +++ b/intersight_gosdk/model_capability_actions_meta_data.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_actions_meta_data_list.go b/intersight_gosdk/model_capability_actions_meta_data_list.go index 0ac3b22ef4..7886f18c57 100644 --- a/intersight_gosdk/model_capability_actions_meta_data_list.go +++ b/intersight_gosdk/model_capability_actions_meta_data_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_actions_meta_data_response.go b/intersight_gosdk/model_capability_actions_meta_data_response.go index e3769a3c0c..b0f934de1c 100644 --- a/intersight_gosdk/model_capability_actions_meta_data_response.go +++ b/intersight_gosdk/model_capability_actions_meta_data_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_adapter_deprecated_def.go b/intersight_gosdk/model_capability_adapter_deprecated_def.go index e935912da8..e99e144075 100644 --- a/intersight_gosdk/model_capability_adapter_deprecated_def.go +++ b/intersight_gosdk/model_capability_adapter_deprecated_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_adapter_deprecated_def_list.go b/intersight_gosdk/model_capability_adapter_deprecated_def_list.go index 60b5d3792c..a00445283e 100644 --- a/intersight_gosdk/model_capability_adapter_deprecated_def_list.go +++ b/intersight_gosdk/model_capability_adapter_deprecated_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_adapter_deprecated_def_response.go b/intersight_gosdk/model_capability_adapter_deprecated_def_response.go index 775147b4bc..a228909cc0 100644 --- a/intersight_gosdk/model_capability_adapter_deprecated_def_response.go +++ b/intersight_gosdk/model_capability_adapter_deprecated_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_adapter_firmware_requirement.go b/intersight_gosdk/model_capability_adapter_firmware_requirement.go index b14c2eb861..c1e0ea146e 100644 --- a/intersight_gosdk/model_capability_adapter_firmware_requirement.go +++ b/intersight_gosdk/model_capability_adapter_firmware_requirement.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_adapter_firmware_requirement_list.go b/intersight_gosdk/model_capability_adapter_firmware_requirement_list.go index f9d49b5785..93c77bd359 100644 --- a/intersight_gosdk/model_capability_adapter_firmware_requirement_list.go +++ b/intersight_gosdk/model_capability_adapter_firmware_requirement_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_adapter_firmware_requirement_response.go b/intersight_gosdk/model_capability_adapter_firmware_requirement_response.go index aab73b4b19..990b28384d 100644 --- a/intersight_gosdk/model_capability_adapter_firmware_requirement_response.go +++ b/intersight_gosdk/model_capability_adapter_firmware_requirement_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_adapter_unit_descriptor.go b/intersight_gosdk/model_capability_adapter_unit_descriptor.go index 6e594ca39a..5c91fe715c 100644 --- a/intersight_gosdk/model_capability_adapter_unit_descriptor.go +++ b/intersight_gosdk/model_capability_adapter_unit_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_adapter_unit_descriptor_list.go b/intersight_gosdk/model_capability_adapter_unit_descriptor_list.go index e1a5c55d41..9ac76483e5 100644 --- a/intersight_gosdk/model_capability_adapter_unit_descriptor_list.go +++ b/intersight_gosdk/model_capability_adapter_unit_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_adapter_unit_descriptor_response.go b/intersight_gosdk/model_capability_adapter_unit_descriptor_response.go index 25f95c01c7..91e97aa6a9 100644 --- a/intersight_gosdk/model_capability_adapter_unit_descriptor_response.go +++ b/intersight_gosdk/model_capability_adapter_unit_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_adapter_update_constraint_meta.go b/intersight_gosdk/model_capability_adapter_update_constraint_meta.go index 17ec8dbe38..9d8d812c24 100644 --- a/intersight_gosdk/model_capability_adapter_update_constraint_meta.go +++ b/intersight_gosdk/model_capability_adapter_update_constraint_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_adapter_update_constraint_meta_list.go b/intersight_gosdk/model_capability_adapter_update_constraint_meta_list.go index 09890dd232..13568b2e47 100644 --- a/intersight_gosdk/model_capability_adapter_update_constraint_meta_list.go +++ b/intersight_gosdk/model_capability_adapter_update_constraint_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_adapter_update_constraint_meta_response.go b/intersight_gosdk/model_capability_adapter_update_constraint_meta_response.go index 2f4a3a78ce..004729f543 100644 --- a/intersight_gosdk/model_capability_adapter_update_constraint_meta_response.go +++ b/intersight_gosdk/model_capability_adapter_update_constraint_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_adapter_upgrade_support_meta.go b/intersight_gosdk/model_capability_adapter_upgrade_support_meta.go index d9c5f903c1..efb3d620d7 100644 --- a/intersight_gosdk/model_capability_adapter_upgrade_support_meta.go +++ b/intersight_gosdk/model_capability_adapter_upgrade_support_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_adapter_upgrade_support_meta_list.go b/intersight_gosdk/model_capability_adapter_upgrade_support_meta_list.go index e656626753..c8718bfebc 100644 --- a/intersight_gosdk/model_capability_adapter_upgrade_support_meta_list.go +++ b/intersight_gosdk/model_capability_adapter_upgrade_support_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_adapter_upgrade_support_meta_response.go b/intersight_gosdk/model_capability_adapter_upgrade_support_meta_response.go index 528be7743c..e1758b6ca3 100644 --- a/intersight_gosdk/model_capability_adapter_upgrade_support_meta_response.go +++ b/intersight_gosdk/model_capability_adapter_upgrade_support_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_capability.go b/intersight_gosdk/model_capability_capability.go index 745709efac..54d7a71020 100644 --- a/intersight_gosdk/model_capability_capability.go +++ b/intersight_gosdk/model_capability_capability.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_capability_relationship.go b/intersight_gosdk/model_capability_capability_relationship.go index e4ba624193..4297bd16b2 100644 --- a/intersight_gosdk/model_capability_capability_relationship.go +++ b/intersight_gosdk/model_capability_capability_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_catalog.go b/intersight_gosdk/model_capability_catalog.go index 47cf965c8d..793fc7786e 100644 --- a/intersight_gosdk/model_capability_catalog.go +++ b/intersight_gosdk/model_capability_catalog.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_catalog_list.go b/intersight_gosdk/model_capability_catalog_list.go index a1542b7e5a..bc3a552a0e 100644 --- a/intersight_gosdk/model_capability_catalog_list.go +++ b/intersight_gosdk/model_capability_catalog_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_catalog_response.go b/intersight_gosdk/model_capability_catalog_response.go index 08b2d32842..5e92fe751a 100644 --- a/intersight_gosdk/model_capability_catalog_response.go +++ b/intersight_gosdk/model_capability_catalog_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_chassis_descriptor.go b/intersight_gosdk/model_capability_chassis_descriptor.go index d106c7acbc..6785b96ae2 100644 --- a/intersight_gosdk/model_capability_chassis_descriptor.go +++ b/intersight_gosdk/model_capability_chassis_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_chassis_descriptor_list.go b/intersight_gosdk/model_capability_chassis_descriptor_list.go index 344a4e56ff..8f531ee08f 100644 --- a/intersight_gosdk/model_capability_chassis_descriptor_list.go +++ b/intersight_gosdk/model_capability_chassis_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_chassis_descriptor_response.go b/intersight_gosdk/model_capability_chassis_descriptor_response.go index 7ea2245996..b9bc38e944 100644 --- a/intersight_gosdk/model_capability_chassis_descriptor_response.go +++ b/intersight_gosdk/model_capability_chassis_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_chassis_manufacturing_def.go b/intersight_gosdk/model_capability_chassis_manufacturing_def.go index 5a40aa6409..e064d9946e 100644 --- a/intersight_gosdk/model_capability_chassis_manufacturing_def.go +++ b/intersight_gosdk/model_capability_chassis_manufacturing_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_chassis_manufacturing_def_list.go b/intersight_gosdk/model_capability_chassis_manufacturing_def_list.go index b6d2d8efca..fff66fe074 100644 --- a/intersight_gosdk/model_capability_chassis_manufacturing_def_list.go +++ b/intersight_gosdk/model_capability_chassis_manufacturing_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_chassis_manufacturing_def_response.go b/intersight_gosdk/model_capability_chassis_manufacturing_def_response.go index 14d5f5240f..9d84abce4f 100644 --- a/intersight_gosdk/model_capability_chassis_manufacturing_def_response.go +++ b/intersight_gosdk/model_capability_chassis_manufacturing_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_chassis_upgrade_support_meta.go b/intersight_gosdk/model_capability_chassis_upgrade_support_meta.go index f79a804485..a021265e9d 100644 --- a/intersight_gosdk/model_capability_chassis_upgrade_support_meta.go +++ b/intersight_gosdk/model_capability_chassis_upgrade_support_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_chassis_upgrade_support_meta_list.go b/intersight_gosdk/model_capability_chassis_upgrade_support_meta_list.go index 02fdc9e002..cd35416a9f 100644 --- a/intersight_gosdk/model_capability_chassis_upgrade_support_meta_list.go +++ b/intersight_gosdk/model_capability_chassis_upgrade_support_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_chassis_upgrade_support_meta_response.go b/intersight_gosdk/model_capability_chassis_upgrade_support_meta_response.go index b522e3a36f..6883d13d22 100644 --- a/intersight_gosdk/model_capability_chassis_upgrade_support_meta_response.go +++ b/intersight_gosdk/model_capability_chassis_upgrade_support_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_cimc_firmware_descriptor.go b/intersight_gosdk/model_capability_cimc_firmware_descriptor.go index 373412894d..a3bd33d3f2 100644 --- a/intersight_gosdk/model_capability_cimc_firmware_descriptor.go +++ b/intersight_gosdk/model_capability_cimc_firmware_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_cimc_firmware_descriptor_list.go b/intersight_gosdk/model_capability_cimc_firmware_descriptor_list.go index 37651d7adc..8907dca496 100644 --- a/intersight_gosdk/model_capability_cimc_firmware_descriptor_list.go +++ b/intersight_gosdk/model_capability_cimc_firmware_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_cimc_firmware_descriptor_response.go b/intersight_gosdk/model_capability_cimc_firmware_descriptor_response.go index 2db6bf5297..5314ecb48d 100644 --- a/intersight_gosdk/model_capability_cimc_firmware_descriptor_response.go +++ b/intersight_gosdk/model_capability_cimc_firmware_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_cpu_endpoint_descriptor.go b/intersight_gosdk/model_capability_cpu_endpoint_descriptor.go index fd6ff92a9b..a38e0cd2ba 100644 --- a/intersight_gosdk/model_capability_cpu_endpoint_descriptor.go +++ b/intersight_gosdk/model_capability_cpu_endpoint_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_cpu_endpoint_descriptor_list.go b/intersight_gosdk/model_capability_cpu_endpoint_descriptor_list.go index d5fa0c8b3d..7b25ec731f 100644 --- a/intersight_gosdk/model_capability_cpu_endpoint_descriptor_list.go +++ b/intersight_gosdk/model_capability_cpu_endpoint_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_cpu_endpoint_descriptor_response.go b/intersight_gosdk/model_capability_cpu_endpoint_descriptor_response.go index 09930f7059..0e70f4ae2a 100644 --- a/intersight_gosdk/model_capability_cpu_endpoint_descriptor_response.go +++ b/intersight_gosdk/model_capability_cpu_endpoint_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_dimms_endpoint_descriptor.go b/intersight_gosdk/model_capability_dimms_endpoint_descriptor.go index b3a460605b..0054ab5464 100644 --- a/intersight_gosdk/model_capability_dimms_endpoint_descriptor.go +++ b/intersight_gosdk/model_capability_dimms_endpoint_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_dimms_endpoint_descriptor_list.go b/intersight_gosdk/model_capability_dimms_endpoint_descriptor_list.go index f89e979c3c..3552c21327 100644 --- a/intersight_gosdk/model_capability_dimms_endpoint_descriptor_list.go +++ b/intersight_gosdk/model_capability_dimms_endpoint_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_dimms_endpoint_descriptor_response.go b/intersight_gosdk/model_capability_dimms_endpoint_descriptor_response.go index 66a5a9b7b0..468ab599d7 100644 --- a/intersight_gosdk/model_capability_dimms_endpoint_descriptor_response.go +++ b/intersight_gosdk/model_capability_dimms_endpoint_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_drives_endpoint_descriptor.go b/intersight_gosdk/model_capability_drives_endpoint_descriptor.go index d2840b0820..a7b960e68e 100644 --- a/intersight_gosdk/model_capability_drives_endpoint_descriptor.go +++ b/intersight_gosdk/model_capability_drives_endpoint_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_drives_endpoint_descriptor_list.go b/intersight_gosdk/model_capability_drives_endpoint_descriptor_list.go index 96a88c848f..efab8e43fc 100644 --- a/intersight_gosdk/model_capability_drives_endpoint_descriptor_list.go +++ b/intersight_gosdk/model_capability_drives_endpoint_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_drives_endpoint_descriptor_response.go b/intersight_gosdk/model_capability_drives_endpoint_descriptor_response.go index 9b5d32b9c9..4eee41a2f9 100644 --- a/intersight_gosdk/model_capability_drives_endpoint_descriptor_response.go +++ b/intersight_gosdk/model_capability_drives_endpoint_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_endpoint_descriptor.go b/intersight_gosdk/model_capability_endpoint_descriptor.go index 76cf9126b4..0b59cc521c 100644 --- a/intersight_gosdk/model_capability_endpoint_descriptor.go +++ b/intersight_gosdk/model_capability_endpoint_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_equipment_physical_def.go b/intersight_gosdk/model_capability_equipment_physical_def.go index 35d24b7069..f3b57ddd52 100644 --- a/intersight_gosdk/model_capability_equipment_physical_def.go +++ b/intersight_gosdk/model_capability_equipment_physical_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_equipment_physical_def_list.go b/intersight_gosdk/model_capability_equipment_physical_def_list.go index f336141278..10b8a0508c 100644 --- a/intersight_gosdk/model_capability_equipment_physical_def_list.go +++ b/intersight_gosdk/model_capability_equipment_physical_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_equipment_physical_def_response.go b/intersight_gosdk/model_capability_equipment_physical_def_response.go index 15f5855afe..d08eb5e532 100644 --- a/intersight_gosdk/model_capability_equipment_physical_def_response.go +++ b/intersight_gosdk/model_capability_equipment_physical_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_equipment_slot_array.go b/intersight_gosdk/model_capability_equipment_slot_array.go index f50f24078c..6ea9f6d88f 100644 --- a/intersight_gosdk/model_capability_equipment_slot_array.go +++ b/intersight_gosdk/model_capability_equipment_slot_array.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_equipment_slot_array_list.go b/intersight_gosdk/model_capability_equipment_slot_array_list.go index 251725a74a..8968ace918 100644 --- a/intersight_gosdk/model_capability_equipment_slot_array_list.go +++ b/intersight_gosdk/model_capability_equipment_slot_array_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_equipment_slot_array_response.go b/intersight_gosdk/model_capability_equipment_slot_array_response.go index 456af22451..d84eaa8157 100644 --- a/intersight_gosdk/model_capability_equipment_slot_array_response.go +++ b/intersight_gosdk/model_capability_equipment_slot_array_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_fan_module_descriptor.go b/intersight_gosdk/model_capability_fan_module_descriptor.go index bdb31708f4..bfb200e2d2 100644 --- a/intersight_gosdk/model_capability_fan_module_descriptor.go +++ b/intersight_gosdk/model_capability_fan_module_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_fan_module_descriptor_list.go b/intersight_gosdk/model_capability_fan_module_descriptor_list.go index a9dcc7a98a..66895cb360 100644 --- a/intersight_gosdk/model_capability_fan_module_descriptor_list.go +++ b/intersight_gosdk/model_capability_fan_module_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_fan_module_descriptor_response.go b/intersight_gosdk/model_capability_fan_module_descriptor_response.go index 25db50f4a5..7b8daad856 100644 --- a/intersight_gosdk/model_capability_fan_module_descriptor_response.go +++ b/intersight_gosdk/model_capability_fan_module_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_fan_module_manufacturing_def.go b/intersight_gosdk/model_capability_fan_module_manufacturing_def.go index 7bb7b42d33..704318f28a 100644 --- a/intersight_gosdk/model_capability_fan_module_manufacturing_def.go +++ b/intersight_gosdk/model_capability_fan_module_manufacturing_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_fan_module_manufacturing_def_list.go b/intersight_gosdk/model_capability_fan_module_manufacturing_def_list.go index 66caf87d2a..4428619f58 100644 --- a/intersight_gosdk/model_capability_fan_module_manufacturing_def_list.go +++ b/intersight_gosdk/model_capability_fan_module_manufacturing_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_fan_module_manufacturing_def_response.go b/intersight_gosdk/model_capability_fan_module_manufacturing_def_response.go index ae4748e87f..dea70968d7 100644 --- a/intersight_gosdk/model_capability_fan_module_manufacturing_def_response.go +++ b/intersight_gosdk/model_capability_fan_module_manufacturing_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_feature_config.go b/intersight_gosdk/model_capability_feature_config.go index 1436de31f4..cad6f998e9 100644 --- a/intersight_gosdk/model_capability_feature_config.go +++ b/intersight_gosdk/model_capability_feature_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_fex_capability_def.go b/intersight_gosdk/model_capability_fex_capability_def.go index f9df9d173f..dd1e521aae 100644 --- a/intersight_gosdk/model_capability_fex_capability_def.go +++ b/intersight_gosdk/model_capability_fex_capability_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_fex_capability_def_list.go b/intersight_gosdk/model_capability_fex_capability_def_list.go index 0c11d80027..285211612f 100644 --- a/intersight_gosdk/model_capability_fex_capability_def_list.go +++ b/intersight_gosdk/model_capability_fex_capability_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_fex_capability_def_response.go b/intersight_gosdk/model_capability_fex_capability_def_response.go index 7c00685dcf..5da28d1d2b 100644 --- a/intersight_gosdk/model_capability_fex_capability_def_response.go +++ b/intersight_gosdk/model_capability_fex_capability_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_fex_descriptor.go b/intersight_gosdk/model_capability_fex_descriptor.go index c9df2763c4..e6c29d34a1 100644 --- a/intersight_gosdk/model_capability_fex_descriptor.go +++ b/intersight_gosdk/model_capability_fex_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_fex_descriptor_list.go b/intersight_gosdk/model_capability_fex_descriptor_list.go index 94f14aec06..94ecd73d2e 100644 --- a/intersight_gosdk/model_capability_fex_descriptor_list.go +++ b/intersight_gosdk/model_capability_fex_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_fex_descriptor_response.go b/intersight_gosdk/model_capability_fex_descriptor_response.go index 2b7eb86530..e5657e6089 100644 --- a/intersight_gosdk/model_capability_fex_descriptor_response.go +++ b/intersight_gosdk/model_capability_fex_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_fex_manufacturing_def.go b/intersight_gosdk/model_capability_fex_manufacturing_def.go index 35505a491f..5eb63fc0d8 100644 --- a/intersight_gosdk/model_capability_fex_manufacturing_def.go +++ b/intersight_gosdk/model_capability_fex_manufacturing_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_fex_manufacturing_def_list.go b/intersight_gosdk/model_capability_fex_manufacturing_def_list.go index a68112d6f0..90e5acdec8 100644 --- a/intersight_gosdk/model_capability_fex_manufacturing_def_list.go +++ b/intersight_gosdk/model_capability_fex_manufacturing_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_fex_manufacturing_def_response.go b/intersight_gosdk/model_capability_fex_manufacturing_def_response.go index c05649697a..3e83368ef9 100644 --- a/intersight_gosdk/model_capability_fex_manufacturing_def_response.go +++ b/intersight_gosdk/model_capability_fex_manufacturing_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_gpu_endpoint_descriptor.go b/intersight_gosdk/model_capability_gpu_endpoint_descriptor.go index f4fd416084..06a48460c5 100644 --- a/intersight_gosdk/model_capability_gpu_endpoint_descriptor.go +++ b/intersight_gosdk/model_capability_gpu_endpoint_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_gpu_endpoint_descriptor_list.go b/intersight_gosdk/model_capability_gpu_endpoint_descriptor_list.go index ed95330a22..31a0ad5ec2 100644 --- a/intersight_gosdk/model_capability_gpu_endpoint_descriptor_list.go +++ b/intersight_gosdk/model_capability_gpu_endpoint_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_gpu_endpoint_descriptor_response.go b/intersight_gosdk/model_capability_gpu_endpoint_descriptor_response.go index 7316694073..fe5cadcb9b 100644 --- a/intersight_gosdk/model_capability_gpu_endpoint_descriptor_response.go +++ b/intersight_gosdk/model_capability_gpu_endpoint_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_hardware_descriptor.go b/intersight_gosdk/model_capability_hardware_descriptor.go index 3eea8c151f..bb3a19f88f 100644 --- a/intersight_gosdk/model_capability_hardware_descriptor.go +++ b/intersight_gosdk/model_capability_hardware_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_hsu_iso_file_support_meta.go b/intersight_gosdk/model_capability_hsu_iso_file_support_meta.go index 8b58130e7e..f80708a4ac 100644 --- a/intersight_gosdk/model_capability_hsu_iso_file_support_meta.go +++ b/intersight_gosdk/model_capability_hsu_iso_file_support_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_hsu_iso_file_support_meta_list.go b/intersight_gosdk/model_capability_hsu_iso_file_support_meta_list.go index d79d3740b5..1a807eb7c7 100644 --- a/intersight_gosdk/model_capability_hsu_iso_file_support_meta_list.go +++ b/intersight_gosdk/model_capability_hsu_iso_file_support_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_hsu_iso_file_support_meta_response.go b/intersight_gosdk/model_capability_hsu_iso_file_support_meta_response.go index 188bada21a..c9ab8853f8 100644 --- a/intersight_gosdk/model_capability_hsu_iso_file_support_meta_response.go +++ b/intersight_gosdk/model_capability_hsu_iso_file_support_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_hsu_iso_model_specific_constraint.go b/intersight_gosdk/model_capability_hsu_iso_model_specific_constraint.go index 37cd54b659..f3800888fe 100644 --- a/intersight_gosdk/model_capability_hsu_iso_model_specific_constraint.go +++ b/intersight_gosdk/model_capability_hsu_iso_model_specific_constraint.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_io_card_capability_def.go b/intersight_gosdk/model_capability_io_card_capability_def.go index 64fda69054..389e9f5eb6 100644 --- a/intersight_gosdk/model_capability_io_card_capability_def.go +++ b/intersight_gosdk/model_capability_io_card_capability_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_io_card_capability_def_list.go b/intersight_gosdk/model_capability_io_card_capability_def_list.go index da8a6f149a..461f55e1e4 100644 --- a/intersight_gosdk/model_capability_io_card_capability_def_list.go +++ b/intersight_gosdk/model_capability_io_card_capability_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_io_card_capability_def_response.go b/intersight_gosdk/model_capability_io_card_capability_def_response.go index 0b44751bff..3de93486da 100644 --- a/intersight_gosdk/model_capability_io_card_capability_def_response.go +++ b/intersight_gosdk/model_capability_io_card_capability_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_io_card_descriptor.go b/intersight_gosdk/model_capability_io_card_descriptor.go index 4ca8e15019..d353903268 100644 --- a/intersight_gosdk/model_capability_io_card_descriptor.go +++ b/intersight_gosdk/model_capability_io_card_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_io_card_descriptor_list.go b/intersight_gosdk/model_capability_io_card_descriptor_list.go index 651484eb3f..55434f087e 100644 --- a/intersight_gosdk/model_capability_io_card_descriptor_list.go +++ b/intersight_gosdk/model_capability_io_card_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_io_card_descriptor_response.go b/intersight_gosdk/model_capability_io_card_descriptor_response.go index 05545a85cd..72d6b55056 100644 --- a/intersight_gosdk/model_capability_io_card_descriptor_response.go +++ b/intersight_gosdk/model_capability_io_card_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_io_card_manufacturing_def.go b/intersight_gosdk/model_capability_io_card_manufacturing_def.go index b029eb15f5..c7acf9dc2b 100644 --- a/intersight_gosdk/model_capability_io_card_manufacturing_def.go +++ b/intersight_gosdk/model_capability_io_card_manufacturing_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_io_card_manufacturing_def_list.go b/intersight_gosdk/model_capability_io_card_manufacturing_def_list.go index b6c27dafce..f65403728b 100644 --- a/intersight_gosdk/model_capability_io_card_manufacturing_def_list.go +++ b/intersight_gosdk/model_capability_io_card_manufacturing_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_io_card_manufacturing_def_response.go b/intersight_gosdk/model_capability_io_card_manufacturing_def_response.go index 66ad9c1158..87a2d57676 100644 --- a/intersight_gosdk/model_capability_io_card_manufacturing_def_response.go +++ b/intersight_gosdk/model_capability_io_card_manufacturing_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_iom_upgrade_support_meta.go b/intersight_gosdk/model_capability_iom_upgrade_support_meta.go index 88cad3fffd..46aa7cd997 100644 --- a/intersight_gosdk/model_capability_iom_upgrade_support_meta.go +++ b/intersight_gosdk/model_capability_iom_upgrade_support_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_iom_upgrade_support_meta_list.go b/intersight_gosdk/model_capability_iom_upgrade_support_meta_list.go index 67f8027316..b108b48fe4 100644 --- a/intersight_gosdk/model_capability_iom_upgrade_support_meta_list.go +++ b/intersight_gosdk/model_capability_iom_upgrade_support_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_iom_upgrade_support_meta_response.go b/intersight_gosdk/model_capability_iom_upgrade_support_meta_response.go index 5b5a069d1a..f6269eba67 100644 --- a/intersight_gosdk/model_capability_iom_upgrade_support_meta_response.go +++ b/intersight_gosdk/model_capability_iom_upgrade_support_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_port_group_aggregation_def.go b/intersight_gosdk/model_capability_port_group_aggregation_def.go index c213407aa7..2f5ddca981 100644 --- a/intersight_gosdk/model_capability_port_group_aggregation_def.go +++ b/intersight_gosdk/model_capability_port_group_aggregation_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_port_group_aggregation_def_list.go b/intersight_gosdk/model_capability_port_group_aggregation_def_list.go index e6959bea2a..7c9733fd4b 100644 --- a/intersight_gosdk/model_capability_port_group_aggregation_def_list.go +++ b/intersight_gosdk/model_capability_port_group_aggregation_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_port_group_aggregation_def_response.go b/intersight_gosdk/model_capability_port_group_aggregation_def_response.go index 5d7daa5433..8ff22350a4 100644 --- a/intersight_gosdk/model_capability_port_group_aggregation_def_response.go +++ b/intersight_gosdk/model_capability_port_group_aggregation_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_port_range.go b/intersight_gosdk/model_capability_port_range.go index 1a7a2f6e55..40f3b19d31 100644 --- a/intersight_gosdk/model_capability_port_range.go +++ b/intersight_gosdk/model_capability_port_range.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_processor_unit_update_constraint_meta.go b/intersight_gosdk/model_capability_processor_unit_update_constraint_meta.go index 899a1359cf..3660722eda 100644 --- a/intersight_gosdk/model_capability_processor_unit_update_constraint_meta.go +++ b/intersight_gosdk/model_capability_processor_unit_update_constraint_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_processor_unit_update_constraint_meta_list.go b/intersight_gosdk/model_capability_processor_unit_update_constraint_meta_list.go index 253a1cea81..a8d138c2a8 100644 --- a/intersight_gosdk/model_capability_processor_unit_update_constraint_meta_list.go +++ b/intersight_gosdk/model_capability_processor_unit_update_constraint_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_processor_unit_update_constraint_meta_response.go b/intersight_gosdk/model_capability_processor_unit_update_constraint_meta_response.go index ddd166db3c..17ae3d00af 100644 --- a/intersight_gosdk/model_capability_processor_unit_update_constraint_meta_response.go +++ b/intersight_gosdk/model_capability_processor_unit_update_constraint_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_psu_descriptor.go b/intersight_gosdk/model_capability_psu_descriptor.go index 249561cb72..00b62aa029 100644 --- a/intersight_gosdk/model_capability_psu_descriptor.go +++ b/intersight_gosdk/model_capability_psu_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_psu_descriptor_list.go b/intersight_gosdk/model_capability_psu_descriptor_list.go index fb1c404f00..9281b5d405 100644 --- a/intersight_gosdk/model_capability_psu_descriptor_list.go +++ b/intersight_gosdk/model_capability_psu_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_psu_descriptor_response.go b/intersight_gosdk/model_capability_psu_descriptor_response.go index 09f2ff46eb..cf75e9c227 100644 --- a/intersight_gosdk/model_capability_psu_descriptor_response.go +++ b/intersight_gosdk/model_capability_psu_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_psu_manufacturing_def.go b/intersight_gosdk/model_capability_psu_manufacturing_def.go index 53570662ae..668f84cb05 100644 --- a/intersight_gosdk/model_capability_psu_manufacturing_def.go +++ b/intersight_gosdk/model_capability_psu_manufacturing_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_psu_manufacturing_def_list.go b/intersight_gosdk/model_capability_psu_manufacturing_def_list.go index 7fa98a4df8..7caf26bad5 100644 --- a/intersight_gosdk/model_capability_psu_manufacturing_def_list.go +++ b/intersight_gosdk/model_capability_psu_manufacturing_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_psu_manufacturing_def_response.go b/intersight_gosdk/model_capability_psu_manufacturing_def_response.go index cb43683134..09f178a3af 100644 --- a/intersight_gosdk/model_capability_psu_manufacturing_def_response.go +++ b/intersight_gosdk/model_capability_psu_manufacturing_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_server_actions_meta.go b/intersight_gosdk/model_capability_server_actions_meta.go index a9346c1f29..94f4aaa60c 100644 --- a/intersight_gosdk/model_capability_server_actions_meta.go +++ b/intersight_gosdk/model_capability_server_actions_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_server_actions_meta_list.go b/intersight_gosdk/model_capability_server_actions_meta_list.go index 1a6d63ebba..df42cc8d32 100644 --- a/intersight_gosdk/model_capability_server_actions_meta_list.go +++ b/intersight_gosdk/model_capability_server_actions_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_server_actions_meta_response.go b/intersight_gosdk/model_capability_server_actions_meta_response.go index 5a3ce662fa..7ec2b6da5f 100644 --- a/intersight_gosdk/model_capability_server_actions_meta_response.go +++ b/intersight_gosdk/model_capability_server_actions_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_server_component_constraint.go b/intersight_gosdk/model_capability_server_component_constraint.go index ac1560323b..4472197d35 100644 --- a/intersight_gosdk/model_capability_server_component_constraint.go +++ b/intersight_gosdk/model_capability_server_component_constraint.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_server_descriptor.go b/intersight_gosdk/model_capability_server_descriptor.go index 129b8e4c9f..5d9970d8bb 100644 --- a/intersight_gosdk/model_capability_server_descriptor.go +++ b/intersight_gosdk/model_capability_server_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_server_descriptor_list.go b/intersight_gosdk/model_capability_server_descriptor_list.go index 70e9288a62..57616aaed6 100644 --- a/intersight_gosdk/model_capability_server_descriptor_list.go +++ b/intersight_gosdk/model_capability_server_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_server_descriptor_response.go b/intersight_gosdk/model_capability_server_descriptor_response.go index e2d041d2f9..4b9c23e079 100644 --- a/intersight_gosdk/model_capability_server_descriptor_response.go +++ b/intersight_gosdk/model_capability_server_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_server_models_capability_def.go b/intersight_gosdk/model_capability_server_models_capability_def.go index f68dec3537..d633b11812 100644 --- a/intersight_gosdk/model_capability_server_models_capability_def.go +++ b/intersight_gosdk/model_capability_server_models_capability_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_server_models_capability_def_list.go b/intersight_gosdk/model_capability_server_models_capability_def_list.go index 2c84d468bb..b9491253fb 100644 --- a/intersight_gosdk/model_capability_server_models_capability_def_list.go +++ b/intersight_gosdk/model_capability_server_models_capability_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_server_models_capability_def_response.go b/intersight_gosdk/model_capability_server_models_capability_def_response.go index c3f12848dd..a82ae257e9 100644 --- a/intersight_gosdk/model_capability_server_models_capability_def_response.go +++ b/intersight_gosdk/model_capability_server_models_capability_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_server_schema_descriptor.go b/intersight_gosdk/model_capability_server_schema_descriptor.go index d0ebe1e028..5c9fd4a354 100644 --- a/intersight_gosdk/model_capability_server_schema_descriptor.go +++ b/intersight_gosdk/model_capability_server_schema_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_server_schema_descriptor_list.go b/intersight_gosdk/model_capability_server_schema_descriptor_list.go index 673ef03b4d..4fe7ecefc8 100644 --- a/intersight_gosdk/model_capability_server_schema_descriptor_list.go +++ b/intersight_gosdk/model_capability_server_schema_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_server_schema_descriptor_response.go b/intersight_gosdk/model_capability_server_schema_descriptor_response.go index 610146e4a2..48ab91e4dd 100644 --- a/intersight_gosdk/model_capability_server_schema_descriptor_response.go +++ b/intersight_gosdk/model_capability_server_schema_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_server_upgrade_support_meta.go b/intersight_gosdk/model_capability_server_upgrade_support_meta.go index 2cb56a11dd..be2b8897a6 100644 --- a/intersight_gosdk/model_capability_server_upgrade_support_meta.go +++ b/intersight_gosdk/model_capability_server_upgrade_support_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_server_upgrade_support_meta_list.go b/intersight_gosdk/model_capability_server_upgrade_support_meta_list.go index 1b6a9ff768..367136db3d 100644 --- a/intersight_gosdk/model_capability_server_upgrade_support_meta_list.go +++ b/intersight_gosdk/model_capability_server_upgrade_support_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_server_upgrade_support_meta_response.go b/intersight_gosdk/model_capability_server_upgrade_support_meta_response.go index 5b589d7f65..13b29eae79 100644 --- a/intersight_gosdk/model_capability_server_upgrade_support_meta_response.go +++ b/intersight_gosdk/model_capability_server_upgrade_support_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_sioc_module_capability_def.go b/intersight_gosdk/model_capability_sioc_module_capability_def.go index 26ed71eb15..aeb149a73c 100644 --- a/intersight_gosdk/model_capability_sioc_module_capability_def.go +++ b/intersight_gosdk/model_capability_sioc_module_capability_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_sioc_module_capability_def_list.go b/intersight_gosdk/model_capability_sioc_module_capability_def_list.go index 6d494badb8..4bca976d21 100644 --- a/intersight_gosdk/model_capability_sioc_module_capability_def_list.go +++ b/intersight_gosdk/model_capability_sioc_module_capability_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_sioc_module_capability_def_response.go b/intersight_gosdk/model_capability_sioc_module_capability_def_response.go index 34ba4f045b..5bf914f08b 100644 --- a/intersight_gosdk/model_capability_sioc_module_capability_def_response.go +++ b/intersight_gosdk/model_capability_sioc_module_capability_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_sioc_module_descriptor.go b/intersight_gosdk/model_capability_sioc_module_descriptor.go index 3a0e4cc123..1de78abde7 100644 --- a/intersight_gosdk/model_capability_sioc_module_descriptor.go +++ b/intersight_gosdk/model_capability_sioc_module_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_sioc_module_descriptor_list.go b/intersight_gosdk/model_capability_sioc_module_descriptor_list.go index 6304997e05..5b290a810b 100644 --- a/intersight_gosdk/model_capability_sioc_module_descriptor_list.go +++ b/intersight_gosdk/model_capability_sioc_module_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_sioc_module_descriptor_response.go b/intersight_gosdk/model_capability_sioc_module_descriptor_response.go index c03352d256..9cf1a92722 100644 --- a/intersight_gosdk/model_capability_sioc_module_descriptor_response.go +++ b/intersight_gosdk/model_capability_sioc_module_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_sioc_module_manufacturing_def.go b/intersight_gosdk/model_capability_sioc_module_manufacturing_def.go index 22e8d79e03..ebe04ff10e 100644 --- a/intersight_gosdk/model_capability_sioc_module_manufacturing_def.go +++ b/intersight_gosdk/model_capability_sioc_module_manufacturing_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_sioc_module_manufacturing_def_list.go b/intersight_gosdk/model_capability_sioc_module_manufacturing_def_list.go index 22fd3e0b09..724f79e9de 100644 --- a/intersight_gosdk/model_capability_sioc_module_manufacturing_def_list.go +++ b/intersight_gosdk/model_capability_sioc_module_manufacturing_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_sioc_module_manufacturing_def_response.go b/intersight_gosdk/model_capability_sioc_module_manufacturing_def_response.go index e522592f36..462ccc52d1 100644 --- a/intersight_gosdk/model_capability_sioc_module_manufacturing_def_response.go +++ b/intersight_gosdk/model_capability_sioc_module_manufacturing_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_storage_controller_update_constraint_meta.go b/intersight_gosdk/model_capability_storage_controller_update_constraint_meta.go index 1525c0c158..d8fc9e1d02 100644 --- a/intersight_gosdk/model_capability_storage_controller_update_constraint_meta.go +++ b/intersight_gosdk/model_capability_storage_controller_update_constraint_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_storage_controller_update_constraint_meta_list.go b/intersight_gosdk/model_capability_storage_controller_update_constraint_meta_list.go index 49c6335be2..cdaf7e1914 100644 --- a/intersight_gosdk/model_capability_storage_controller_update_constraint_meta_list.go +++ b/intersight_gosdk/model_capability_storage_controller_update_constraint_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_storage_controller_update_constraint_meta_response.go b/intersight_gosdk/model_capability_storage_controller_update_constraint_meta_response.go index 4ad069e504..a8d07d8305 100644 --- a/intersight_gosdk/model_capability_storage_controller_update_constraint_meta_response.go +++ b/intersight_gosdk/model_capability_storage_controller_update_constraint_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_switch_capability.go b/intersight_gosdk/model_capability_switch_capability.go index ed74350d9e..a088fe1b7d 100644 --- a/intersight_gosdk/model_capability_switch_capability.go +++ b/intersight_gosdk/model_capability_switch_capability.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_switch_capability_def.go b/intersight_gosdk/model_capability_switch_capability_def.go index 0f1a723268..7c4e1d1e91 100644 --- a/intersight_gosdk/model_capability_switch_capability_def.go +++ b/intersight_gosdk/model_capability_switch_capability_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_switch_capability_list.go b/intersight_gosdk/model_capability_switch_capability_list.go index c15440ac96..e9c603eb86 100644 --- a/intersight_gosdk/model_capability_switch_capability_list.go +++ b/intersight_gosdk/model_capability_switch_capability_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_switch_capability_response.go b/intersight_gosdk/model_capability_switch_capability_response.go index a24828b3b8..6e43bd0209 100644 --- a/intersight_gosdk/model_capability_switch_capability_response.go +++ b/intersight_gosdk/model_capability_switch_capability_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_switch_descriptor.go b/intersight_gosdk/model_capability_switch_descriptor.go index 0c4c5f8d36..63a7d7668a 100644 --- a/intersight_gosdk/model_capability_switch_descriptor.go +++ b/intersight_gosdk/model_capability_switch_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_switch_descriptor_list.go b/intersight_gosdk/model_capability_switch_descriptor_list.go index 5e7a8b3eba..087701c4e6 100644 --- a/intersight_gosdk/model_capability_switch_descriptor_list.go +++ b/intersight_gosdk/model_capability_switch_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_switch_descriptor_response.go b/intersight_gosdk/model_capability_switch_descriptor_response.go index c19842e130..ddbee45c9b 100644 --- a/intersight_gosdk/model_capability_switch_descriptor_response.go +++ b/intersight_gosdk/model_capability_switch_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_switch_equipment_info.go b/intersight_gosdk/model_capability_switch_equipment_info.go index 0155919cd8..2f01524a90 100644 --- a/intersight_gosdk/model_capability_switch_equipment_info.go +++ b/intersight_gosdk/model_capability_switch_equipment_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_switch_equipment_info_list.go b/intersight_gosdk/model_capability_switch_equipment_info_list.go index f8f10048b5..cf0f4e7341 100644 --- a/intersight_gosdk/model_capability_switch_equipment_info_list.go +++ b/intersight_gosdk/model_capability_switch_equipment_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_switch_equipment_info_response.go b/intersight_gosdk/model_capability_switch_equipment_info_response.go index a2b241e2c2..05e4e6ba2f 100644 --- a/intersight_gosdk/model_capability_switch_equipment_info_response.go +++ b/intersight_gosdk/model_capability_switch_equipment_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_switch_identity_def.go b/intersight_gosdk/model_capability_switch_identity_def.go index 28ea04c2e2..b78ce20b59 100644 --- a/intersight_gosdk/model_capability_switch_identity_def.go +++ b/intersight_gosdk/model_capability_switch_identity_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_switch_manufacturing_def.go b/intersight_gosdk/model_capability_switch_manufacturing_def.go index 283b9b4876..831902db97 100644 --- a/intersight_gosdk/model_capability_switch_manufacturing_def.go +++ b/intersight_gosdk/model_capability_switch_manufacturing_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_switch_manufacturing_def_list.go b/intersight_gosdk/model_capability_switch_manufacturing_def_list.go index d04156a563..ed31387797 100644 --- a/intersight_gosdk/model_capability_switch_manufacturing_def_list.go +++ b/intersight_gosdk/model_capability_switch_manufacturing_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_switch_manufacturing_def_response.go b/intersight_gosdk/model_capability_switch_manufacturing_def_response.go index 0b61ded634..29628dff99 100644 --- a/intersight_gosdk/model_capability_switch_manufacturing_def_response.go +++ b/intersight_gosdk/model_capability_switch_manufacturing_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_switch_network_limits.go b/intersight_gosdk/model_capability_switch_network_limits.go index 58ee560b3c..7cc3c1b22b 100644 --- a/intersight_gosdk/model_capability_switch_network_limits.go +++ b/intersight_gosdk/model_capability_switch_network_limits.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_switch_storage_limits.go b/intersight_gosdk/model_capability_switch_storage_limits.go index f2aa4b0223..32cd2cfb8b 100644 --- a/intersight_gosdk/model_capability_switch_storage_limits.go +++ b/intersight_gosdk/model_capability_switch_storage_limits.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_switch_system_limits.go b/intersight_gosdk/model_capability_switch_system_limits.go index 3fd9f78495..540c679e45 100644 --- a/intersight_gosdk/model_capability_switch_system_limits.go +++ b/intersight_gosdk/model_capability_switch_system_limits.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_switching_mode_capability.go b/intersight_gosdk/model_capability_switching_mode_capability.go index 1e0907c655..b6b1040916 100644 --- a/intersight_gosdk/model_capability_switching_mode_capability.go +++ b/intersight_gosdk/model_capability_switching_mode_capability.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_template_catalog.go b/intersight_gosdk/model_capability_template_catalog.go index 8f5fb189df..035304a7b5 100644 --- a/intersight_gosdk/model_capability_template_catalog.go +++ b/intersight_gosdk/model_capability_template_catalog.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_template_catalog_list.go b/intersight_gosdk/model_capability_template_catalog_list.go index 4485454efc..09ed5448c2 100644 --- a/intersight_gosdk/model_capability_template_catalog_list.go +++ b/intersight_gosdk/model_capability_template_catalog_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_template_catalog_response.go b/intersight_gosdk/model_capability_template_catalog_response.go index 33becf660a..2a4cdce970 100644 --- a/intersight_gosdk/model_capability_template_catalog_response.go +++ b/intersight_gosdk/model_capability_template_catalog_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_unsupported_feature_config.go b/intersight_gosdk/model_capability_unsupported_feature_config.go index a0e2c45630..921b8741ff 100644 --- a/intersight_gosdk/model_capability_unsupported_feature_config.go +++ b/intersight_gosdk/model_capability_unsupported_feature_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_update_constraint_meta.go b/intersight_gosdk/model_capability_update_constraint_meta.go index 109693bd7c..a2a48d8be2 100644 --- a/intersight_gosdk/model_capability_update_constraint_meta.go +++ b/intersight_gosdk/model_capability_update_constraint_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_update_order_list_type.go b/intersight_gosdk/model_capability_update_order_list_type.go index 3373033b29..e9d2b5c2ab 100644 --- a/intersight_gosdk/model_capability_update_order_list_type.go +++ b/intersight_gosdk/model_capability_update_order_list_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_update_order_meta.go b/intersight_gosdk/model_capability_update_order_meta.go index 48776bea1f..096b1d84da 100644 --- a/intersight_gosdk/model_capability_update_order_meta.go +++ b/intersight_gosdk/model_capability_update_order_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_update_order_meta_list.go b/intersight_gosdk/model_capability_update_order_meta_list.go index ac736a5ac5..a5c28382ba 100644 --- a/intersight_gosdk/model_capability_update_order_meta_list.go +++ b/intersight_gosdk/model_capability_update_order_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_update_order_meta_response.go b/intersight_gosdk/model_capability_update_order_meta_response.go index 4f2979feb8..cb5c284749 100644 --- a/intersight_gosdk/model_capability_update_order_meta_response.go +++ b/intersight_gosdk/model_capability_update_order_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_vic_descriptor.go b/intersight_gosdk/model_capability_vic_descriptor.go index 5e56c055fa..7b21ecc067 100644 --- a/intersight_gosdk/model_capability_vic_descriptor.go +++ b/intersight_gosdk/model_capability_vic_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_vic_descriptor_list.go b/intersight_gosdk/model_capability_vic_descriptor_list.go index 2b13f591d4..a5e297cfdc 100644 --- a/intersight_gosdk/model_capability_vic_descriptor_list.go +++ b/intersight_gosdk/model_capability_vic_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_vic_descriptor_response.go b/intersight_gosdk/model_capability_vic_descriptor_response.go index 37a436245c..8942566aaa 100644 --- a/intersight_gosdk/model_capability_vic_descriptor_response.go +++ b/intersight_gosdk/model_capability_vic_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_catalystsdwan_config_group.go b/intersight_gosdk/model_catalystsdwan_config_group.go index df46a83024..8ce2de6e3f 100644 --- a/intersight_gosdk/model_catalystsdwan_config_group.go +++ b/intersight_gosdk/model_catalystsdwan_config_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_catalystsdwan_config_group_list.go b/intersight_gosdk/model_catalystsdwan_config_group_list.go index b4d18b94a9..bba16af36f 100644 --- a/intersight_gosdk/model_catalystsdwan_config_group_list.go +++ b/intersight_gosdk/model_catalystsdwan_config_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_catalystsdwan_config_group_response.go b/intersight_gosdk/model_catalystsdwan_config_group_response.go index 879aadbf74..5d262c2dc1 100644 --- a/intersight_gosdk/model_catalystsdwan_config_group_response.go +++ b/intersight_gosdk/model_catalystsdwan_config_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_catalystsdwan_inventory_entity.go b/intersight_gosdk/model_catalystsdwan_inventory_entity.go index b87aecbbb3..4088fe1630 100644 --- a/intersight_gosdk/model_catalystsdwan_inventory_entity.go +++ b/intersight_gosdk/model_catalystsdwan_inventory_entity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_catalystsdwan_policy_group.go b/intersight_gosdk/model_catalystsdwan_policy_group.go index e26000d0ca..b2fd79f26c 100644 --- a/intersight_gosdk/model_catalystsdwan_policy_group.go +++ b/intersight_gosdk/model_catalystsdwan_policy_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_catalystsdwan_policy_group_list.go b/intersight_gosdk/model_catalystsdwan_policy_group_list.go index 75076fed97..b0f4c377fd 100644 --- a/intersight_gosdk/model_catalystsdwan_policy_group_list.go +++ b/intersight_gosdk/model_catalystsdwan_policy_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_catalystsdwan_policy_group_response.go b/intersight_gosdk/model_catalystsdwan_policy_group_response.go index 8bcdaceeb2..fe4d994a66 100644 --- a/intersight_gosdk/model_catalystsdwan_policy_group_response.go +++ b/intersight_gosdk/model_catalystsdwan_policy_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_catalystsdwan_vedge_device.go b/intersight_gosdk/model_catalystsdwan_vedge_device.go index 1499f9e859..630a372de9 100644 --- a/intersight_gosdk/model_catalystsdwan_vedge_device.go +++ b/intersight_gosdk/model_catalystsdwan_vedge_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_catalystsdwan_vedge_device_list.go b/intersight_gosdk/model_catalystsdwan_vedge_device_list.go index e4a0b9709f..062ebf143b 100644 --- a/intersight_gosdk/model_catalystsdwan_vedge_device_list.go +++ b/intersight_gosdk/model_catalystsdwan_vedge_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_catalystsdwan_vedge_device_response.go b/intersight_gosdk/model_catalystsdwan_vedge_device_response.go index f7b516b087..712a7a8906 100644 --- a/intersight_gosdk/model_catalystsdwan_vedge_device_response.go +++ b/intersight_gosdk/model_catalystsdwan_vedge_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_certificatemanagement_certificate_base.go b/intersight_gosdk/model_certificatemanagement_certificate_base.go index d1c67d6baf..1f725a25d3 100644 --- a/intersight_gosdk/model_certificatemanagement_certificate_base.go +++ b/intersight_gosdk/model_certificatemanagement_certificate_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_certificatemanagement_imc.go b/intersight_gosdk/model_certificatemanagement_imc.go index b615d2f14a..4c41d812c9 100644 --- a/intersight_gosdk/model_certificatemanagement_imc.go +++ b/intersight_gosdk/model_certificatemanagement_imc.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_certificatemanagement_policy.go b/intersight_gosdk/model_certificatemanagement_policy.go index db761d946b..c370479a29 100644 --- a/intersight_gosdk/model_certificatemanagement_policy.go +++ b/intersight_gosdk/model_certificatemanagement_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_certificatemanagement_policy_inventory.go b/intersight_gosdk/model_certificatemanagement_policy_inventory.go index ab51a77707..1a8b39ef23 100644 --- a/intersight_gosdk/model_certificatemanagement_policy_inventory.go +++ b/intersight_gosdk/model_certificatemanagement_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_certificatemanagement_policy_inventory_list.go b/intersight_gosdk/model_certificatemanagement_policy_inventory_list.go index 6073ffe7d0..042e40da50 100644 --- a/intersight_gosdk/model_certificatemanagement_policy_inventory_list.go +++ b/intersight_gosdk/model_certificatemanagement_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_certificatemanagement_policy_inventory_response.go b/intersight_gosdk/model_certificatemanagement_policy_inventory_response.go index 7dcd048dae..3a59e73f7b 100644 --- a/intersight_gosdk/model_certificatemanagement_policy_inventory_response.go +++ b/intersight_gosdk/model_certificatemanagement_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_certificatemanagement_policy_list.go b/intersight_gosdk/model_certificatemanagement_policy_list.go index e155c04f4c..fc67da63c9 100644 --- a/intersight_gosdk/model_certificatemanagement_policy_list.go +++ b/intersight_gosdk/model_certificatemanagement_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_certificatemanagement_policy_response.go b/intersight_gosdk/model_certificatemanagement_policy_response.go index 2af7427e4f..0109cefdb8 100644 --- a/intersight_gosdk/model_certificatemanagement_policy_response.go +++ b/intersight_gosdk/model_certificatemanagement_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_certificatemanagement_root_ca_certificate.go b/intersight_gosdk/model_certificatemanagement_root_ca_certificate.go index f86bbaea96..dee96767c6 100644 --- a/intersight_gosdk/model_certificatemanagement_root_ca_certificate.go +++ b/intersight_gosdk/model_certificatemanagement_root_ca_certificate.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type CertificatemanagementRootCaCertificate struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // A name that helps identify a certificate. It can be any string that adheres to the following constraints. It should start and end with an alphanumeric character. It can have underscores and hyphens. It cannot be more than 30 characters. - CertificateName *string `json:"CertificateName,omitempty"` + CertificateName *string `json:"CertificateName,omitempty" validate:"regexp=((^[a-zA-Z0-9]$){1,30}|(^(([a-zA-Z0-9])([a-zA-Z0-9_\\\\-]{0,28})([a-zA-Z0-9]))$))"` AdditionalProperties map[string]interface{} } @@ -235,7 +235,7 @@ func (o *CertificatemanagementRootCaCertificate) UnmarshalJSON(data []byte) (err // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // A name that helps identify a certificate. It can be any string that adheres to the following constraints. It should start and end with an alphanumeric character. It can have underscores and hyphens. It cannot be more than 30 characters. - CertificateName *string `json:"CertificateName,omitempty"` + CertificateName *string `json:"CertificateName,omitempty" validate:"regexp=((^[a-zA-Z0-9]$){1,30}|(^(([a-zA-Z0-9])([a-zA-Z0-9_\\\\-]{0,28})([a-zA-Z0-9]))$))"` } varCertificatemanagementRootCaCertificateWithoutEmbeddedStruct := CertificatemanagementRootCaCertificateWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_chassis_base_profile.go b/intersight_gosdk/model_chassis_base_profile.go index 05d3b1088b..ca6f5e2839 100644 --- a/intersight_gosdk/model_chassis_base_profile.go +++ b/intersight_gosdk/model_chassis_base_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_base_profile_relationship.go b/intersight_gosdk/model_chassis_base_profile_relationship.go index eacce3b97e..78843c713e 100644 --- a/intersight_gosdk/model_chassis_base_profile_relationship.go +++ b/intersight_gosdk/model_chassis_base_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_config_change_detail.go b/intersight_gosdk/model_chassis_config_change_detail.go index 9c8fbc2fd1..cc369e2074 100644 --- a/intersight_gosdk/model_chassis_config_change_detail.go +++ b/intersight_gosdk/model_chassis_config_change_detail.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_config_change_detail_list.go b/intersight_gosdk/model_chassis_config_change_detail_list.go index 78821ffb27..fa1d45cc93 100644 --- a/intersight_gosdk/model_chassis_config_change_detail_list.go +++ b/intersight_gosdk/model_chassis_config_change_detail_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_config_change_detail_relationship.go b/intersight_gosdk/model_chassis_config_change_detail_relationship.go index 4596f4c7eb..c5529e9b57 100644 --- a/intersight_gosdk/model_chassis_config_change_detail_relationship.go +++ b/intersight_gosdk/model_chassis_config_change_detail_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_config_change_detail_response.go b/intersight_gosdk/model_chassis_config_change_detail_response.go index 2727db5c0c..ae5aee2be6 100644 --- a/intersight_gosdk/model_chassis_config_change_detail_response.go +++ b/intersight_gosdk/model_chassis_config_change_detail_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_config_import.go b/intersight_gosdk/model_chassis_config_import.go index b549cd2034..3019759457 100644 --- a/intersight_gosdk/model_chassis_config_import.go +++ b/intersight_gosdk/model_chassis_config_import.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,10 +31,10 @@ type ChassisConfigImport struct { // Description of the imported profile. Description *string `json:"Description,omitempty"` // Policy prefix for the policies of the imported chassis profile. - PolicyPrefix *string `json:"PolicyPrefix,omitempty"` + PolicyPrefix *string `json:"PolicyPrefix,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,32}$"` PolicyTypes []string `json:"PolicyTypes,omitempty"` // Profile name for the imported chassis profile. - ProfileName *string `json:"ProfileName,omitempty"` + ProfileName *string `json:"ProfileName,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` Chassis NullableEquipmentChassisRelationship `json:"Chassis,omitempty"` ChassisProfile NullableChassisProfileRelationship `json:"ChassisProfile,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` @@ -487,10 +487,10 @@ func (o *ChassisConfigImport) UnmarshalJSON(data []byte) (err error) { // Description of the imported profile. Description *string `json:"Description,omitempty"` // Policy prefix for the policies of the imported chassis profile. - PolicyPrefix *string `json:"PolicyPrefix,omitempty"` + PolicyPrefix *string `json:"PolicyPrefix,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,32}$"` PolicyTypes []string `json:"PolicyTypes,omitempty"` // Profile name for the imported chassis profile. - ProfileName *string `json:"ProfileName,omitempty"` + ProfileName *string `json:"ProfileName,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` Chassis NullableEquipmentChassisRelationship `json:"Chassis,omitempty"` ChassisProfile NullableChassisProfileRelationship `json:"ChassisProfile,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` diff --git a/intersight_gosdk/model_chassis_config_import_list.go b/intersight_gosdk/model_chassis_config_import_list.go index 0890d8984f..f956a80b20 100644 --- a/intersight_gosdk/model_chassis_config_import_list.go +++ b/intersight_gosdk/model_chassis_config_import_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_config_import_response.go b/intersight_gosdk/model_chassis_config_import_response.go index 44c038410b..38096cb7bb 100644 --- a/intersight_gosdk/model_chassis_config_import_response.go +++ b/intersight_gosdk/model_chassis_config_import_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_config_result.go b/intersight_gosdk/model_chassis_config_result.go index de1d394d93..c769c1a867 100644 --- a/intersight_gosdk/model_chassis_config_result.go +++ b/intersight_gosdk/model_chassis_config_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_config_result_entry.go b/intersight_gosdk/model_chassis_config_result_entry.go index 718d7ef049..dbc6f2ef58 100644 --- a/intersight_gosdk/model_chassis_config_result_entry.go +++ b/intersight_gosdk/model_chassis_config_result_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_config_result_entry_list.go b/intersight_gosdk/model_chassis_config_result_entry_list.go index 877aa182e7..f11dda14cc 100644 --- a/intersight_gosdk/model_chassis_config_result_entry_list.go +++ b/intersight_gosdk/model_chassis_config_result_entry_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_config_result_entry_relationship.go b/intersight_gosdk/model_chassis_config_result_entry_relationship.go index e805f2d433..98f91e1f12 100644 --- a/intersight_gosdk/model_chassis_config_result_entry_relationship.go +++ b/intersight_gosdk/model_chassis_config_result_entry_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_config_result_entry_response.go b/intersight_gosdk/model_chassis_config_result_entry_response.go index 8cf0686fdb..fa88ee3273 100644 --- a/intersight_gosdk/model_chassis_config_result_entry_response.go +++ b/intersight_gosdk/model_chassis_config_result_entry_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_config_result_list.go b/intersight_gosdk/model_chassis_config_result_list.go index 6d47578040..530b1e57c7 100644 --- a/intersight_gosdk/model_chassis_config_result_list.go +++ b/intersight_gosdk/model_chassis_config_result_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_config_result_relationship.go b/intersight_gosdk/model_chassis_config_result_relationship.go index 04a468e4b2..72b11c9a39 100644 --- a/intersight_gosdk/model_chassis_config_result_relationship.go +++ b/intersight_gosdk/model_chassis_config_result_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_config_result_response.go b/intersight_gosdk/model_chassis_config_result_response.go index c182d3afa7..11183f50e7 100644 --- a/intersight_gosdk/model_chassis_config_result_response.go +++ b/intersight_gosdk/model_chassis_config_result_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_iom_profile.go b/intersight_gosdk/model_chassis_iom_profile.go index 7e4ba8c926..d571facf8f 100644 --- a/intersight_gosdk/model_chassis_iom_profile.go +++ b/intersight_gosdk/model_chassis_iom_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_iom_profile_list.go b/intersight_gosdk/model_chassis_iom_profile_list.go index 218f5a51f4..89fd020330 100644 --- a/intersight_gosdk/model_chassis_iom_profile_list.go +++ b/intersight_gosdk/model_chassis_iom_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_iom_profile_relationship.go b/intersight_gosdk/model_chassis_iom_profile_relationship.go index 40aa4a0b23..21ab23e864 100644 --- a/intersight_gosdk/model_chassis_iom_profile_relationship.go +++ b/intersight_gosdk/model_chassis_iom_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_iom_profile_response.go b/intersight_gosdk/model_chassis_iom_profile_response.go index ef2ee6bca3..891a4013a9 100644 --- a/intersight_gosdk/model_chassis_iom_profile_response.go +++ b/intersight_gosdk/model_chassis_iom_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_profile.go b/intersight_gosdk/model_chassis_profile.go index 52fd6a7359..1db047c619 100644 --- a/intersight_gosdk/model_chassis_profile.go +++ b/intersight_gosdk/model_chassis_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type ChassisProfile struct { ConfigChangeContext NullablePolicyConfigChangeContext `json:"ConfigChangeContext,omitempty"` ConfigChanges NullablePolicyConfigChange `json:"ConfigChanges,omitempty"` // User label assigned to the chassis profile. - UserLabel *string `json:"UserLabel,omitempty"` + UserLabel *string `json:"UserLabel,omitempty" validate:"regexp=^[ !#$%&\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}~a-zA-Z0-9]*$"` AssignedChassis NullableEquipmentChassisRelationship `json:"AssignedChassis,omitempty"` AssociatedChassis NullableEquipmentChassisRelationship `json:"AssociatedChassis,omitempty"` // An array of relationships to chassisConfigChangeDetail resources. @@ -552,7 +552,7 @@ func (o *ChassisProfile) UnmarshalJSON(data []byte) (err error) { ConfigChangeContext NullablePolicyConfigChangeContext `json:"ConfigChangeContext,omitempty"` ConfigChanges NullablePolicyConfigChange `json:"ConfigChanges,omitempty"` // User label assigned to the chassis profile. - UserLabel *string `json:"UserLabel,omitempty"` + UserLabel *string `json:"UserLabel,omitempty" validate:"regexp=^[ !#$%&\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}~a-zA-Z0-9]*$"` AssignedChassis NullableEquipmentChassisRelationship `json:"AssignedChassis,omitempty"` AssociatedChassis NullableEquipmentChassisRelationship `json:"AssociatedChassis,omitempty"` // An array of relationships to chassisConfigChangeDetail resources. diff --git a/intersight_gosdk/model_chassis_profile_list.go b/intersight_gosdk/model_chassis_profile_list.go index 9e3cbf5276..6f96148433 100644 --- a/intersight_gosdk/model_chassis_profile_list.go +++ b/intersight_gosdk/model_chassis_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_profile_relationship.go b/intersight_gosdk/model_chassis_profile_relationship.go index a6b484a95a..7259c04898 100644 --- a/intersight_gosdk/model_chassis_profile_relationship.go +++ b/intersight_gosdk/model_chassis_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_profile_response.go b/intersight_gosdk/model_chassis_profile_response.go index d25ef4ba29..4bdf0677a5 100644 --- a/intersight_gosdk/model_chassis_profile_response.go +++ b/intersight_gosdk/model_chassis_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_profile_template.go b/intersight_gosdk/model_chassis_profile_template.go index 13b27f2853..f86426caea 100644 --- a/intersight_gosdk/model_chassis_profile_template.go +++ b/intersight_gosdk/model_chassis_profile_template.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_profile_template_list.go b/intersight_gosdk/model_chassis_profile_template_list.go index b460f9f9b5..2a8a858e9f 100644 --- a/intersight_gosdk/model_chassis_profile_template_list.go +++ b/intersight_gosdk/model_chassis_profile_template_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_profile_template_response.go b/intersight_gosdk/model_chassis_profile_template_response.go index f3308ea36b..f2e82727dc 100644 --- a/intersight_gosdk/model_chassis_profile_template_response.go +++ b/intersight_gosdk/model_chassis_profile_template_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_availability_zone.go b/intersight_gosdk/model_cloud_availability_zone.go index 479f768462..d7a8ad4cc3 100644 --- a/intersight_gosdk/model_cloud_availability_zone.go +++ b/intersight_gosdk/model_cloud_availability_zone.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_billing_unit.go b/intersight_gosdk/model_cloud_aws_billing_unit.go index 6c929cefe4..26ac3b50ae 100644 --- a/intersight_gosdk/model_cloud_aws_billing_unit.go +++ b/intersight_gosdk/model_cloud_aws_billing_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type CloudAwsBillingUnit struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Email address of the account holder. - Email *string `json:"Email,omitempty"` + Email *string "json:\"Email,omitempty\" validate:\"regexp=^$|^[a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$\"" RegisteredDevice NullableAssetDeviceRegistrationRelationship `json:"RegisteredDevice,omitempty"` AdditionalProperties map[string]interface{} } @@ -280,7 +280,7 @@ func (o *CloudAwsBillingUnit) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Email address of the account holder. - Email *string `json:"Email,omitempty"` + Email *string "json:\"Email,omitempty\" validate:\"regexp=^$|^[a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$\"" RegisteredDevice NullableAssetDeviceRegistrationRelationship `json:"RegisteredDevice,omitempty"` } diff --git a/intersight_gosdk/model_cloud_aws_billing_unit_list.go b/intersight_gosdk/model_cloud_aws_billing_unit_list.go index 86db06c93d..dba6886fa0 100644 --- a/intersight_gosdk/model_cloud_aws_billing_unit_list.go +++ b/intersight_gosdk/model_cloud_aws_billing_unit_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_billing_unit_relationship.go b/intersight_gosdk/model_cloud_aws_billing_unit_relationship.go index 2dde64d851..2cf24be370 100644 --- a/intersight_gosdk/model_cloud_aws_billing_unit_relationship.go +++ b/intersight_gosdk/model_cloud_aws_billing_unit_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_billing_unit_response.go b/intersight_gosdk/model_cloud_aws_billing_unit_response.go index 4597f04c9b..1a9898b256 100644 --- a/intersight_gosdk/model_cloud_aws_billing_unit_response.go +++ b/intersight_gosdk/model_cloud_aws_billing_unit_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_key_pair.go b/intersight_gosdk/model_cloud_aws_key_pair.go index 4ce16ba426..59cd7f7396 100644 --- a/intersight_gosdk/model_cloud_aws_key_pair.go +++ b/intersight_gosdk/model_cloud_aws_key_pair.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_key_pair_list.go b/intersight_gosdk/model_cloud_aws_key_pair_list.go index bf9bf99be5..a3e52dc48c 100644 --- a/intersight_gosdk/model_cloud_aws_key_pair_list.go +++ b/intersight_gosdk/model_cloud_aws_key_pair_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_key_pair_relationship.go b/intersight_gosdk/model_cloud_aws_key_pair_relationship.go index 5facd7dac0..df3feff566 100644 --- a/intersight_gosdk/model_cloud_aws_key_pair_relationship.go +++ b/intersight_gosdk/model_cloud_aws_key_pair_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_key_pair_response.go b/intersight_gosdk/model_cloud_aws_key_pair_response.go index 7cb2bb65bf..3a1b0c2018 100644 --- a/intersight_gosdk/model_cloud_aws_key_pair_response.go +++ b/intersight_gosdk/model_cloud_aws_key_pair_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_network_interface.go b/intersight_gosdk/model_cloud_aws_network_interface.go index 043c6da29c..b5d0026333 100644 --- a/intersight_gosdk/model_cloud_aws_network_interface.go +++ b/intersight_gosdk/model_cloud_aws_network_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_network_interface_list.go b/intersight_gosdk/model_cloud_aws_network_interface_list.go index 3add2fc1cc..63063fa1bc 100644 --- a/intersight_gosdk/model_cloud_aws_network_interface_list.go +++ b/intersight_gosdk/model_cloud_aws_network_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_network_interface_response.go b/intersight_gosdk/model_cloud_aws_network_interface_response.go index e3f2021620..08adbbf951 100644 --- a/intersight_gosdk/model_cloud_aws_network_interface_response.go +++ b/intersight_gosdk/model_cloud_aws_network_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_organizational_unit.go b/intersight_gosdk/model_cloud_aws_organizational_unit.go index c84cbe4cef..e706b1659c 100644 --- a/intersight_gosdk/model_cloud_aws_organizational_unit.go +++ b/intersight_gosdk/model_cloud_aws_organizational_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_organizational_unit_list.go b/intersight_gosdk/model_cloud_aws_organizational_unit_list.go index 42d066c769..835a945330 100644 --- a/intersight_gosdk/model_cloud_aws_organizational_unit_list.go +++ b/intersight_gosdk/model_cloud_aws_organizational_unit_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_organizational_unit_relationship.go b/intersight_gosdk/model_cloud_aws_organizational_unit_relationship.go index cf68bfebac..eba5960740 100644 --- a/intersight_gosdk/model_cloud_aws_organizational_unit_relationship.go +++ b/intersight_gosdk/model_cloud_aws_organizational_unit_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_organizational_unit_response.go b/intersight_gosdk/model_cloud_aws_organizational_unit_response.go index 5a6f627891..02997b6a84 100644 --- a/intersight_gosdk/model_cloud_aws_organizational_unit_response.go +++ b/intersight_gosdk/model_cloud_aws_organizational_unit_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_security_group.go b/intersight_gosdk/model_cloud_aws_security_group.go index d998f57b69..0640e82159 100644 --- a/intersight_gosdk/model_cloud_aws_security_group.go +++ b/intersight_gosdk/model_cloud_aws_security_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_security_group_list.go b/intersight_gosdk/model_cloud_aws_security_group_list.go index 4052d67b43..755fdfc06d 100644 --- a/intersight_gosdk/model_cloud_aws_security_group_list.go +++ b/intersight_gosdk/model_cloud_aws_security_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_security_group_relationship.go b/intersight_gosdk/model_cloud_aws_security_group_relationship.go index 29fd77fd73..297f147dbb 100644 --- a/intersight_gosdk/model_cloud_aws_security_group_relationship.go +++ b/intersight_gosdk/model_cloud_aws_security_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_security_group_response.go b/intersight_gosdk/model_cloud_aws_security_group_response.go index 751c53973b..e8d8c893e4 100644 --- a/intersight_gosdk/model_cloud_aws_security_group_response.go +++ b/intersight_gosdk/model_cloud_aws_security_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_subnet.go b/intersight_gosdk/model_cloud_aws_subnet.go index fa04d47303..8142e81c2e 100644 --- a/intersight_gosdk/model_cloud_aws_subnet.go +++ b/intersight_gosdk/model_cloud_aws_subnet.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_subnet_list.go b/intersight_gosdk/model_cloud_aws_subnet_list.go index c742163d4f..c9ec28c1f5 100644 --- a/intersight_gosdk/model_cloud_aws_subnet_list.go +++ b/intersight_gosdk/model_cloud_aws_subnet_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_subnet_relationship.go b/intersight_gosdk/model_cloud_aws_subnet_relationship.go index eed45716c4..97f76b6d68 100644 --- a/intersight_gosdk/model_cloud_aws_subnet_relationship.go +++ b/intersight_gosdk/model_cloud_aws_subnet_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_subnet_response.go b/intersight_gosdk/model_cloud_aws_subnet_response.go index e736a0433e..477841ec56 100644 --- a/intersight_gosdk/model_cloud_aws_subnet_response.go +++ b/intersight_gosdk/model_cloud_aws_subnet_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_virtual_machine.go b/intersight_gosdk/model_cloud_aws_virtual_machine.go index f0e5706a26..5f4815341f 100644 --- a/intersight_gosdk/model_cloud_aws_virtual_machine.go +++ b/intersight_gosdk/model_cloud_aws_virtual_machine.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_virtual_machine_list.go b/intersight_gosdk/model_cloud_aws_virtual_machine_list.go index 15be1a006e..267eda7f80 100644 --- a/intersight_gosdk/model_cloud_aws_virtual_machine_list.go +++ b/intersight_gosdk/model_cloud_aws_virtual_machine_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_virtual_machine_response.go b/intersight_gosdk/model_cloud_aws_virtual_machine_response.go index 2333f074dc..61018239be 100644 --- a/intersight_gosdk/model_cloud_aws_virtual_machine_response.go +++ b/intersight_gosdk/model_cloud_aws_virtual_machine_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_volume.go b/intersight_gosdk/model_cloud_aws_volume.go index f978f62c1e..524b0e505e 100644 --- a/intersight_gosdk/model_cloud_aws_volume.go +++ b/intersight_gosdk/model_cloud_aws_volume.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_volume_list.go b/intersight_gosdk/model_cloud_aws_volume_list.go index 7325d93802..ae1e52b44b 100644 --- a/intersight_gosdk/model_cloud_aws_volume_list.go +++ b/intersight_gosdk/model_cloud_aws_volume_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_volume_response.go b/intersight_gosdk/model_cloud_aws_volume_response.go index 8b4b916d77..bd5e68ebd4 100644 --- a/intersight_gosdk/model_cloud_aws_volume_response.go +++ b/intersight_gosdk/model_cloud_aws_volume_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_vpc.go b/intersight_gosdk/model_cloud_aws_vpc.go index 9528190e48..e95f115d5f 100644 --- a/intersight_gosdk/model_cloud_aws_vpc.go +++ b/intersight_gosdk/model_cloud_aws_vpc.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_vpc_list.go b/intersight_gosdk/model_cloud_aws_vpc_list.go index 8ccf0da3a5..6a0aa7eddd 100644 --- a/intersight_gosdk/model_cloud_aws_vpc_list.go +++ b/intersight_gosdk/model_cloud_aws_vpc_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_vpc_relationship.go b/intersight_gosdk/model_cloud_aws_vpc_relationship.go index 9faaed4996..edb0ac1119 100644 --- a/intersight_gosdk/model_cloud_aws_vpc_relationship.go +++ b/intersight_gosdk/model_cloud_aws_vpc_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_vpc_response.go b/intersight_gosdk/model_cloud_aws_vpc_response.go index 457c87ab97..b29385aa58 100644 --- a/intersight_gosdk/model_cloud_aws_vpc_response.go +++ b/intersight_gosdk/model_cloud_aws_vpc_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_base_billing_unit.go b/intersight_gosdk/model_cloud_base_billing_unit.go index 628a92a7b4..1d260a1c64 100644 --- a/intersight_gosdk/model_cloud_base_billing_unit.go +++ b/intersight_gosdk/model_cloud_base_billing_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_base_entity.go b/intersight_gosdk/model_cloud_base_entity.go index 26412feac9..24737e4720 100644 --- a/intersight_gosdk/model_cloud_base_entity.go +++ b/intersight_gosdk/model_cloud_base_entity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_base_network.go b/intersight_gosdk/model_cloud_base_network.go index c84d86962a..c91c7f7483 100644 --- a/intersight_gosdk/model_cloud_base_network.go +++ b/intersight_gosdk/model_cloud_base_network.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_base_network_interface.go b/intersight_gosdk/model_cloud_base_network_interface.go index d7872f4674..1db0041170 100644 --- a/intersight_gosdk/model_cloud_base_network_interface.go +++ b/intersight_gosdk/model_cloud_base_network_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_base_placement.go b/intersight_gosdk/model_cloud_base_placement.go index 12a4b6d355..089a951161 100644 --- a/intersight_gosdk/model_cloud_base_placement.go +++ b/intersight_gosdk/model_cloud_base_placement.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_base_sku.go b/intersight_gosdk/model_cloud_base_sku.go index fc052b2536..61fb5bb770 100644 --- a/intersight_gosdk/model_cloud_base_sku.go +++ b/intersight_gosdk/model_cloud_base_sku.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_base_sku_relationship.go b/intersight_gosdk/model_cloud_base_sku_relationship.go index 0cb354ffb7..fc45f21cf2 100644 --- a/intersight_gosdk/model_cloud_base_sku_relationship.go +++ b/intersight_gosdk/model_cloud_base_sku_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_base_virtual_machine.go b/intersight_gosdk/model_cloud_base_virtual_machine.go index 87e0c1afbb..b543698d41 100644 --- a/intersight_gosdk/model_cloud_base_virtual_machine.go +++ b/intersight_gosdk/model_cloud_base_virtual_machine.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_base_volume.go b/intersight_gosdk/model_cloud_base_volume.go index 65b9391505..cd1f20bc46 100644 --- a/intersight_gosdk/model_cloud_base_volume.go +++ b/intersight_gosdk/model_cloud_base_volume.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_billing_unit.go b/intersight_gosdk/model_cloud_billing_unit.go index 01f4b1d7af..eaa7ae35bf 100644 --- a/intersight_gosdk/model_cloud_billing_unit.go +++ b/intersight_gosdk/model_cloud_billing_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_cloud_region.go b/intersight_gosdk/model_cloud_cloud_region.go index baaf713ecd..e4afd78102 100644 --- a/intersight_gosdk/model_cloud_cloud_region.go +++ b/intersight_gosdk/model_cloud_cloud_region.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_cloud_tag.go b/intersight_gosdk/model_cloud_cloud_tag.go index 26640305eb..a98f0a8c85 100644 --- a/intersight_gosdk/model_cloud_cloud_tag.go +++ b/intersight_gosdk/model_cloud_cloud_tag.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_collect_inventory.go b/intersight_gosdk/model_cloud_collect_inventory.go index e07fb53acc..66c5a48427 100644 --- a/intersight_gosdk/model_cloud_collect_inventory.go +++ b/intersight_gosdk/model_cloud_collect_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_custom_attributes.go b/intersight_gosdk/model_cloud_custom_attributes.go index b3db0895cd..d4d0670172 100644 --- a/intersight_gosdk/model_cloud_custom_attributes.go +++ b/intersight_gosdk/model_cloud_custom_attributes.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_image_reference.go b/intersight_gosdk/model_cloud_image_reference.go index 3608897da2..d0d7974cb4 100644 --- a/intersight_gosdk/model_cloud_image_reference.go +++ b/intersight_gosdk/model_cloud_image_reference.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_instance_type.go b/intersight_gosdk/model_cloud_instance_type.go index 63a84d536f..97aad73732 100644 --- a/intersight_gosdk/model_cloud_instance_type.go +++ b/intersight_gosdk/model_cloud_instance_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_network_access_config.go b/intersight_gosdk/model_cloud_network_access_config.go index fb6e403b4c..7ff2527c31 100644 --- a/intersight_gosdk/model_cloud_network_access_config.go +++ b/intersight_gosdk/model_cloud_network_access_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_network_address.go b/intersight_gosdk/model_cloud_network_address.go index cfac98eebf..deeab92fc7 100644 --- a/intersight_gosdk/model_cloud_network_address.go +++ b/intersight_gosdk/model_cloud_network_address.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_network_instance_attachment.go b/intersight_gosdk/model_cloud_network_instance_attachment.go index 4e08ad9cd3..43bcca3e9f 100644 --- a/intersight_gosdk/model_cloud_network_instance_attachment.go +++ b/intersight_gosdk/model_cloud_network_instance_attachment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_network_interface_attachment.go b/intersight_gosdk/model_cloud_network_interface_attachment.go index 3a6c731d15..1cc0fefaba 100644 --- a/intersight_gosdk/model_cloud_network_interface_attachment.go +++ b/intersight_gosdk/model_cloud_network_interface_attachment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_regions.go b/intersight_gosdk/model_cloud_regions.go index 80439b13d1..3916d87fc2 100644 --- a/intersight_gosdk/model_cloud_regions.go +++ b/intersight_gosdk/model_cloud_regions.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_regions_list.go b/intersight_gosdk/model_cloud_regions_list.go index c91df1f37c..d4837ea2f5 100644 --- a/intersight_gosdk/model_cloud_regions_list.go +++ b/intersight_gosdk/model_cloud_regions_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_regions_relationship.go b/intersight_gosdk/model_cloud_regions_relationship.go index c0baf4d294..2683449018 100644 --- a/intersight_gosdk/model_cloud_regions_relationship.go +++ b/intersight_gosdk/model_cloud_regions_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_regions_response.go b/intersight_gosdk/model_cloud_regions_response.go index c96082c482..6634cd1fe8 100644 --- a/intersight_gosdk/model_cloud_regions_response.go +++ b/intersight_gosdk/model_cloud_regions_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_security_group_rule.go b/intersight_gosdk/model_cloud_security_group_rule.go index 7e34a80c83..9d02b230be 100644 --- a/intersight_gosdk/model_cloud_security_group_rule.go +++ b/intersight_gosdk/model_cloud_security_group_rule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_sku_container_type.go b/intersight_gosdk/model_cloud_sku_container_type.go index df5fb8de4f..34a335c29b 100644 --- a/intersight_gosdk/model_cloud_sku_container_type.go +++ b/intersight_gosdk/model_cloud_sku_container_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_sku_container_type_list.go b/intersight_gosdk/model_cloud_sku_container_type_list.go index 6a806e9b97..7d2f81a9e3 100644 --- a/intersight_gosdk/model_cloud_sku_container_type_list.go +++ b/intersight_gosdk/model_cloud_sku_container_type_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_sku_container_type_response.go b/intersight_gosdk/model_cloud_sku_container_type_response.go index b011ede866..25eac6d798 100644 --- a/intersight_gosdk/model_cloud_sku_container_type_response.go +++ b/intersight_gosdk/model_cloud_sku_container_type_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_sku_database_type.go b/intersight_gosdk/model_cloud_sku_database_type.go index 629ff87785..9cfbed351b 100644 --- a/intersight_gosdk/model_cloud_sku_database_type.go +++ b/intersight_gosdk/model_cloud_sku_database_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_sku_database_type_list.go b/intersight_gosdk/model_cloud_sku_database_type_list.go index 2ab33072a5..9e4690275f 100644 --- a/intersight_gosdk/model_cloud_sku_database_type_list.go +++ b/intersight_gosdk/model_cloud_sku_database_type_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_sku_database_type_response.go b/intersight_gosdk/model_cloud_sku_database_type_response.go index c5a512b817..1c43d0f518 100644 --- a/intersight_gosdk/model_cloud_sku_database_type_response.go +++ b/intersight_gosdk/model_cloud_sku_database_type_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_sku_instance_type.go b/intersight_gosdk/model_cloud_sku_instance_type.go index 0e53cbb14d..db2dab7c46 100644 --- a/intersight_gosdk/model_cloud_sku_instance_type.go +++ b/intersight_gosdk/model_cloud_sku_instance_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_sku_instance_type_list.go b/intersight_gosdk/model_cloud_sku_instance_type_list.go index 0766d2e9a5..0172580cc5 100644 --- a/intersight_gosdk/model_cloud_sku_instance_type_list.go +++ b/intersight_gosdk/model_cloud_sku_instance_type_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_sku_instance_type_response.go b/intersight_gosdk/model_cloud_sku_instance_type_response.go index 7ed08479a8..e65bd7ae4b 100644 --- a/intersight_gosdk/model_cloud_sku_instance_type_response.go +++ b/intersight_gosdk/model_cloud_sku_instance_type_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_sku_network_type.go b/intersight_gosdk/model_cloud_sku_network_type.go index 20315a2834..aa73372421 100644 --- a/intersight_gosdk/model_cloud_sku_network_type.go +++ b/intersight_gosdk/model_cloud_sku_network_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_sku_network_type_list.go b/intersight_gosdk/model_cloud_sku_network_type_list.go index ad8b3dcf04..fa0114d76b 100644 --- a/intersight_gosdk/model_cloud_sku_network_type_list.go +++ b/intersight_gosdk/model_cloud_sku_network_type_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_sku_network_type_response.go b/intersight_gosdk/model_cloud_sku_network_type_response.go index ef57912303..5ef44512a0 100644 --- a/intersight_gosdk/model_cloud_sku_network_type_response.go +++ b/intersight_gosdk/model_cloud_sku_network_type_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_sku_region_rate_cards.go b/intersight_gosdk/model_cloud_sku_region_rate_cards.go index 6251045191..5549100714 100644 --- a/intersight_gosdk/model_cloud_sku_region_rate_cards.go +++ b/intersight_gosdk/model_cloud_sku_region_rate_cards.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_sku_region_rate_cards_list.go b/intersight_gosdk/model_cloud_sku_region_rate_cards_list.go index 2baf2215ea..a158aa7694 100644 --- a/intersight_gosdk/model_cloud_sku_region_rate_cards_list.go +++ b/intersight_gosdk/model_cloud_sku_region_rate_cards_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_sku_region_rate_cards_response.go b/intersight_gosdk/model_cloud_sku_region_rate_cards_response.go index 7be9c49d95..57735ef201 100644 --- a/intersight_gosdk/model_cloud_sku_region_rate_cards_response.go +++ b/intersight_gosdk/model_cloud_sku_region_rate_cards_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_sku_volume_type.go b/intersight_gosdk/model_cloud_sku_volume_type.go index 4bd870a502..2cdb51b837 100644 --- a/intersight_gosdk/model_cloud_sku_volume_type.go +++ b/intersight_gosdk/model_cloud_sku_volume_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_sku_volume_type_list.go b/intersight_gosdk/model_cloud_sku_volume_type_list.go index e75d2d45b0..966e9de816 100644 --- a/intersight_gosdk/model_cloud_sku_volume_type_list.go +++ b/intersight_gosdk/model_cloud_sku_volume_type_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_sku_volume_type_response.go b/intersight_gosdk/model_cloud_sku_volume_type_response.go index 2318c153b3..602a23b8ea 100644 --- a/intersight_gosdk/model_cloud_sku_volume_type_response.go +++ b/intersight_gosdk/model_cloud_sku_volume_type_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_tfc_agentpool.go b/intersight_gosdk/model_cloud_tfc_agentpool.go index 0910a026dd..97c6ed1f2f 100644 --- a/intersight_gosdk/model_cloud_tfc_agentpool.go +++ b/intersight_gosdk/model_cloud_tfc_agentpool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_tfc_agentpool_list.go b/intersight_gosdk/model_cloud_tfc_agentpool_list.go index 2b78bb6bf8..a7b89217e5 100644 --- a/intersight_gosdk/model_cloud_tfc_agentpool_list.go +++ b/intersight_gosdk/model_cloud_tfc_agentpool_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_tfc_agentpool_response.go b/intersight_gosdk/model_cloud_tfc_agentpool_response.go index 7805658153..a6578fc020 100644 --- a/intersight_gosdk/model_cloud_tfc_agentpool_response.go +++ b/intersight_gosdk/model_cloud_tfc_agentpool_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_tfc_organization.go b/intersight_gosdk/model_cloud_tfc_organization.go index 66d2eebfad..4452292628 100644 --- a/intersight_gosdk/model_cloud_tfc_organization.go +++ b/intersight_gosdk/model_cloud_tfc_organization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_tfc_organization_list.go b/intersight_gosdk/model_cloud_tfc_organization_list.go index bf0196001f..815f6774d3 100644 --- a/intersight_gosdk/model_cloud_tfc_organization_list.go +++ b/intersight_gosdk/model_cloud_tfc_organization_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_tfc_organization_relationship.go b/intersight_gosdk/model_cloud_tfc_organization_relationship.go index c6871269ab..6d5074c023 100644 --- a/intersight_gosdk/model_cloud_tfc_organization_relationship.go +++ b/intersight_gosdk/model_cloud_tfc_organization_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_tfc_organization_response.go b/intersight_gosdk/model_cloud_tfc_organization_response.go index 2314e44379..775d57a9d9 100644 --- a/intersight_gosdk/model_cloud_tfc_organization_response.go +++ b/intersight_gosdk/model_cloud_tfc_organization_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_tfc_workspace.go b/intersight_gosdk/model_cloud_tfc_workspace.go index 64ddb86c4a..017b95a995 100644 --- a/intersight_gosdk/model_cloud_tfc_workspace.go +++ b/intersight_gosdk/model_cloud_tfc_workspace.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_tfc_workspace_list.go b/intersight_gosdk/model_cloud_tfc_workspace_list.go index 60277d50da..46b68721d6 100644 --- a/intersight_gosdk/model_cloud_tfc_workspace_list.go +++ b/intersight_gosdk/model_cloud_tfc_workspace_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_tfc_workspace_response.go b/intersight_gosdk/model_cloud_tfc_workspace_response.go index b8d526b4fa..a58046676e 100644 --- a/intersight_gosdk/model_cloud_tfc_workspace_response.go +++ b/intersight_gosdk/model_cloud_tfc_workspace_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_tfc_workspace_variables.go b/intersight_gosdk/model_cloud_tfc_workspace_variables.go index a740306fa9..3cffb0c69a 100644 --- a/intersight_gosdk/model_cloud_tfc_workspace_variables.go +++ b/intersight_gosdk/model_cloud_tfc_workspace_variables.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_volume_attachment.go b/intersight_gosdk/model_cloud_volume_attachment.go index efdc31c86e..c570c35e0e 100644 --- a/intersight_gosdk/model_cloud_volume_attachment.go +++ b/intersight_gosdk/model_cloud_volume_attachment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_volume_instance_attachment.go b/intersight_gosdk/model_cloud_volume_instance_attachment.go index bc0d91eaac..ce477e937c 100644 --- a/intersight_gosdk/model_cloud_volume_instance_attachment.go +++ b/intersight_gosdk/model_cloud_volume_instance_attachment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_volume_iops_info.go b/intersight_gosdk/model_cloud_volume_iops_info.go index e02f0a6d37..2148d06911 100644 --- a/intersight_gosdk/model_cloud_volume_iops_info.go +++ b/intersight_gosdk/model_cloud_volume_iops_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_volume_type.go b/intersight_gosdk/model_cloud_volume_type.go index 56ba98447b..eccbad4df0 100644 --- a/intersight_gosdk/model_cloud_volume_type.go +++ b/intersight_gosdk/model_cloud_volume_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cmrf_cm_rf.go b/intersight_gosdk/model_cmrf_cm_rf.go index aa02198acc..50621810ea 100644 --- a/intersight_gosdk/model_cmrf_cm_rf.go +++ b/intersight_gosdk/model_cmrf_cm_rf.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_comm_abstract_http_proxy_policy.go b/intersight_gosdk/model_comm_abstract_http_proxy_policy.go index a6a00b03b3..5bfe897682 100644 --- a/intersight_gosdk/model_comm_abstract_http_proxy_policy.go +++ b/intersight_gosdk/model_comm_abstract_http_proxy_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type CommAbstractHttpProxyPolicy struct { // 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. ObjectType string `json:"ObjectType"` // HTTP Proxy server FQDN or IP. - Hostname *string `json:"Hostname,omitempty"` + Hostname *string `json:"Hostname,omitempty" validate:"regexp=^[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?$|^[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?(\\\\.[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?)*(\\\\.[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?)$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password for the HTTP Proxy. @@ -428,7 +428,7 @@ func (o *CommAbstractHttpProxyPolicy) UnmarshalJSON(data []byte) (err error) { // 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. ObjectType string `json:"ObjectType"` // HTTP Proxy server FQDN or IP. - Hostname *string `json:"Hostname,omitempty"` + Hostname *string `json:"Hostname,omitempty" validate:"regexp=^[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?$|^[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?(\\\\.[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?)*(\\\\.[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?)$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password for the HTTP Proxy. diff --git a/intersight_gosdk/model_comm_http_proxy_policy.go b/intersight_gosdk/model_comm_http_proxy_policy.go index 8caa15bcfa..7744ee58d9 100644 --- a/intersight_gosdk/model_comm_http_proxy_policy.go +++ b/intersight_gosdk/model_comm_http_proxy_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_comm_http_proxy_policy_list.go b/intersight_gosdk/model_comm_http_proxy_policy_list.go index 15255cea1c..e3bf68d0f2 100644 --- a/intersight_gosdk/model_comm_http_proxy_policy_list.go +++ b/intersight_gosdk/model_comm_http_proxy_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_comm_http_proxy_policy_relationship.go b/intersight_gosdk/model_comm_http_proxy_policy_relationship.go index f5796af216..d402592757 100644 --- a/intersight_gosdk/model_comm_http_proxy_policy_relationship.go +++ b/intersight_gosdk/model_comm_http_proxy_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_comm_http_proxy_policy_response.go b/intersight_gosdk/model_comm_http_proxy_policy_response.go index c1b2cf901e..8cbc530eb9 100644 --- a/intersight_gosdk/model_comm_http_proxy_policy_response.go +++ b/intersight_gosdk/model_comm_http_proxy_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_comm_ip_v4_address_block.go b/intersight_gosdk/model_comm_ip_v4_address_block.go index 8cffa8545e..3ccec4873b 100644 --- a/intersight_gosdk/model_comm_ip_v4_address_block.go +++ b/intersight_gosdk/model_comm_ip_v4_address_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type CommIpV4AddressBlock struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The end address of the IPv4 block. - EndAddress *string `json:"EndAddress,omitempty"` + EndAddress *string `json:"EndAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The start address of the IPv4 block. - StartAddress *string `json:"StartAddress,omitempty"` + StartAddress *string `json:"StartAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` AdditionalProperties map[string]interface{} } @@ -270,9 +270,9 @@ func (o *CommIpV4AddressBlock) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The end address of the IPv4 block. - EndAddress *string `json:"EndAddress,omitempty"` + EndAddress *string `json:"EndAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The start address of the IPv4 block. - StartAddress *string `json:"StartAddress,omitempty"` + StartAddress *string `json:"StartAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` } varCommIpV4AddressBlockWithoutEmbeddedStruct := CommIpV4AddressBlockWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_comm_ip_v4_interface.go b/intersight_gosdk/model_comm_ip_v4_interface.go index 90c9b10ecb..cfad5614b9 100644 --- a/intersight_gosdk/model_comm_ip_v4_interface.go +++ b/intersight_gosdk/model_comm_ip_v4_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,11 +29,11 @@ type CommIpV4Interface struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The IPv4 address of the default gateway. - Gateway *string `json:"Gateway,omitempty"` + Gateway *string `json:"Gateway,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The IPv4 Address, represented in the standard dot-decimal notation, e.g. 192.168.1.3. - IpAddress *string `json:"IpAddress,omitempty"` + IpAddress *string `json:"IpAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The IPv4 Netmask, represented in the standard dot-decimal notation, e.g. 255.255.255.0. - Netmask *string `json:"Netmask,omitempty"` + Netmask *string `json:"Netmask,omitempty" validate:"regexp=^$|^(((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}))$"` AdditionalProperties map[string]interface{} } @@ -307,11 +307,11 @@ func (o *CommIpV4Interface) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The IPv4 address of the default gateway. - Gateway *string `json:"Gateway,omitempty"` + Gateway *string `json:"Gateway,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The IPv4 Address, represented in the standard dot-decimal notation, e.g. 192.168.1.3. - IpAddress *string `json:"IpAddress,omitempty"` + IpAddress *string `json:"IpAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The IPv4 Netmask, represented in the standard dot-decimal notation, e.g. 255.255.255.0. - Netmask *string `json:"Netmask,omitempty"` + Netmask *string `json:"Netmask,omitempty" validate:"regexp=^$|^(((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}))$"` } varCommIpV4InterfaceWithoutEmbeddedStruct := CommIpV4InterfaceWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_comm_ip_v6_interface.go b/intersight_gosdk/model_comm_ip_v6_interface.go index 046b332afa..25fbe027c0 100644 --- a/intersight_gosdk/model_comm_ip_v6_interface.go +++ b/intersight_gosdk/model_comm_ip_v6_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type CommIpV6Interface struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The IPv6 address of the default gateway. - Gateway *string `json:"Gateway,omitempty"` + Gateway *string `json:"Gateway,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // The IPv6 Address, represented as eight groups of four hexadecimal digits, separated by colons. - IpAddress *string `json:"IpAddress,omitempty"` + IpAddress *string `json:"IpAddress,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // The IPv6 Prefix, represented as eight groups of four hexadecimal digits, separated by colons. Prefix *string `json:"Prefix,omitempty"` AdditionalProperties map[string]interface{} @@ -307,9 +307,9 @@ func (o *CommIpV6Interface) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The IPv6 address of the default gateway. - Gateway *string `json:"Gateway,omitempty"` + Gateway *string `json:"Gateway,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // The IPv6 Address, represented as eight groups of four hexadecimal digits, separated by colons. - IpAddress *string `json:"IpAddress,omitempty"` + IpAddress *string `json:"IpAddress,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // The IPv6 Prefix, represented as eight groups of four hexadecimal digits, separated by colons. Prefix *string `json:"Prefix,omitempty"` } diff --git a/intersight_gosdk/model_compute_alarm_summary.go b/intersight_gosdk/model_compute_alarm_summary.go index 83f9fdae09..57f8ea41f5 100644 --- a/intersight_gosdk/model_compute_alarm_summary.go +++ b/intersight_gosdk/model_compute_alarm_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_base_cluster.go b/intersight_gosdk/model_compute_base_cluster.go index 1f18371184..8fd11b7d31 100644 --- a/intersight_gosdk/model_compute_base_cluster.go +++ b/intersight_gosdk/model_compute_base_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_base_cluster_relationship.go b/intersight_gosdk/model_compute_base_cluster_relationship.go index c460a9a92f..ffd3615728 100644 --- a/intersight_gosdk/model_compute_base_cluster_relationship.go +++ b/intersight_gosdk/model_compute_base_cluster_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_blade.go b/intersight_gosdk/model_compute_blade.go index 45bc16e59c..018942d750 100644 --- a/intersight_gosdk/model_compute_blade.go +++ b/intersight_gosdk/model_compute_blade.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_blade_identity.go b/intersight_gosdk/model_compute_blade_identity.go index 16a471eff7..91e791ca5e 100644 --- a/intersight_gosdk/model_compute_blade_identity.go +++ b/intersight_gosdk/model_compute_blade_identity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_blade_identity_list.go b/intersight_gosdk/model_compute_blade_identity_list.go index 195a74519d..3be09bb31a 100644 --- a/intersight_gosdk/model_compute_blade_identity_list.go +++ b/intersight_gosdk/model_compute_blade_identity_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_blade_identity_relationship.go b/intersight_gosdk/model_compute_blade_identity_relationship.go index a7ffca77af..0fa437b573 100644 --- a/intersight_gosdk/model_compute_blade_identity_relationship.go +++ b/intersight_gosdk/model_compute_blade_identity_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_blade_identity_response.go b/intersight_gosdk/model_compute_blade_identity_response.go index f43a86074a..0755ecaeac 100644 --- a/intersight_gosdk/model_compute_blade_identity_response.go +++ b/intersight_gosdk/model_compute_blade_identity_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_blade_list.go b/intersight_gosdk/model_compute_blade_list.go index e5950d3751..2087a4feb5 100644 --- a/intersight_gosdk/model_compute_blade_list.go +++ b/intersight_gosdk/model_compute_blade_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_blade_relationship.go b/intersight_gosdk/model_compute_blade_relationship.go index d254d90ff0..10755f3ecf 100644 --- a/intersight_gosdk/model_compute_blade_relationship.go +++ b/intersight_gosdk/model_compute_blade_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_blade_response.go b/intersight_gosdk/model_compute_blade_response.go index e0d81b5cdd..a07f58a203 100644 --- a/intersight_gosdk/model_compute_blade_response.go +++ b/intersight_gosdk/model_compute_blade_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_board.go b/intersight_gosdk/model_compute_board.go index 601bedec2e..a5944d9b2c 100644 --- a/intersight_gosdk/model_compute_board.go +++ b/intersight_gosdk/model_compute_board.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_board_list.go b/intersight_gosdk/model_compute_board_list.go index 477a2524d9..b1700d6b7c 100644 --- a/intersight_gosdk/model_compute_board_list.go +++ b/intersight_gosdk/model_compute_board_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_board_relationship.go b/intersight_gosdk/model_compute_board_relationship.go index 6460cf58ab..6cc3ecc7e5 100644 --- a/intersight_gosdk/model_compute_board_relationship.go +++ b/intersight_gosdk/model_compute_board_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_board_response.go b/intersight_gosdk/model_compute_board_response.go index 70fc89a54f..d62f1d8df5 100644 --- a/intersight_gosdk/model_compute_board_response.go +++ b/intersight_gosdk/model_compute_board_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_download_status.go b/intersight_gosdk/model_compute_download_status.go index d904958886..aa24d184b0 100644 --- a/intersight_gosdk/model_compute_download_status.go +++ b/intersight_gosdk/model_compute_download_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_download_status_list.go b/intersight_gosdk/model_compute_download_status_list.go index b48801a23c..4ebaafbc94 100644 --- a/intersight_gosdk/model_compute_download_status_list.go +++ b/intersight_gosdk/model_compute_download_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_download_status_relationship.go b/intersight_gosdk/model_compute_download_status_relationship.go index 66a5248aab..543cf3231b 100644 --- a/intersight_gosdk/model_compute_download_status_relationship.go +++ b/intersight_gosdk/model_compute_download_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_download_status_response.go b/intersight_gosdk/model_compute_download_status_response.go index 050dfaa50c..e783e94333 100644 --- a/intersight_gosdk/model_compute_download_status_response.go +++ b/intersight_gosdk/model_compute_download_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_host_utility_operation.go b/intersight_gosdk/model_compute_host_utility_operation.go index fa9ecccf82..cab1d4854a 100644 --- a/intersight_gosdk/model_compute_host_utility_operation.go +++ b/intersight_gosdk/model_compute_host_utility_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_host_utility_operation_list.go b/intersight_gosdk/model_compute_host_utility_operation_list.go index 7b1ae84f1e..813db9e942 100644 --- a/intersight_gosdk/model_compute_host_utility_operation_list.go +++ b/intersight_gosdk/model_compute_host_utility_operation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_host_utility_operation_relationship.go b/intersight_gosdk/model_compute_host_utility_operation_relationship.go index 7e8a48b987..3e11cc9e98 100644 --- a/intersight_gosdk/model_compute_host_utility_operation_relationship.go +++ b/intersight_gosdk/model_compute_host_utility_operation_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_host_utility_operation_response.go b/intersight_gosdk/model_compute_host_utility_operation_response.go index 2822f01082..9fafca5bbd 100644 --- a/intersight_gosdk/model_compute_host_utility_operation_response.go +++ b/intersight_gosdk/model_compute_host_utility_operation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_ip_address.go b/intersight_gosdk/model_compute_ip_address.go index 8a3920e7f7..ce425ee543 100644 --- a/intersight_gosdk/model_compute_ip_address.go +++ b/intersight_gosdk/model_compute_ip_address.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_mapping.go b/intersight_gosdk/model_compute_mapping.go index 623e7dc6cc..82f81b1d49 100644 --- a/intersight_gosdk/model_compute_mapping.go +++ b/intersight_gosdk/model_compute_mapping.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_mapping_list.go b/intersight_gosdk/model_compute_mapping_list.go index 753793259f..35089416b5 100644 --- a/intersight_gosdk/model_compute_mapping_list.go +++ b/intersight_gosdk/model_compute_mapping_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_mapping_relationship.go b/intersight_gosdk/model_compute_mapping_relationship.go index e0597a1f58..8d7f1663cc 100644 --- a/intersight_gosdk/model_compute_mapping_relationship.go +++ b/intersight_gosdk/model_compute_mapping_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_mapping_response.go b/intersight_gosdk/model_compute_mapping_response.go index d64a98692b..ddce2387b4 100644 --- a/intersight_gosdk/model_compute_mapping_response.go +++ b/intersight_gosdk/model_compute_mapping_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_pending_workflow_trigger.go b/intersight_gosdk/model_compute_pending_workflow_trigger.go index a96b85c4d3..6500c38277 100644 --- a/intersight_gosdk/model_compute_pending_workflow_trigger.go +++ b/intersight_gosdk/model_compute_pending_workflow_trigger.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_persistent_memory_module.go b/intersight_gosdk/model_compute_persistent_memory_module.go index 26402d086b..f775a54d63 100644 --- a/intersight_gosdk/model_compute_persistent_memory_module.go +++ b/intersight_gosdk/model_compute_persistent_memory_module.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_persistent_memory_operation.go b/intersight_gosdk/model_compute_persistent_memory_operation.go index 9d591446da..a445aeafcd 100644 --- a/intersight_gosdk/model_compute_persistent_memory_operation.go +++ b/intersight_gosdk/model_compute_persistent_memory_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_personality.go b/intersight_gosdk/model_compute_personality.go index fcf232c9e7..2fe9f6fcab 100644 --- a/intersight_gosdk/model_compute_personality.go +++ b/intersight_gosdk/model_compute_personality.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_personality_list.go b/intersight_gosdk/model_compute_personality_list.go index 7cfd588bf9..b4cb4fe68d 100644 --- a/intersight_gosdk/model_compute_personality_list.go +++ b/intersight_gosdk/model_compute_personality_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_personality_relationship.go b/intersight_gosdk/model_compute_personality_relationship.go index 81e3d34318..9c1aacaf5a 100644 --- a/intersight_gosdk/model_compute_personality_relationship.go +++ b/intersight_gosdk/model_compute_personality_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_personality_response.go b/intersight_gosdk/model_compute_personality_response.go index 5da356ccc4..db181fd024 100644 --- a/intersight_gosdk/model_compute_personality_response.go +++ b/intersight_gosdk/model_compute_personality_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_personality_setting.go b/intersight_gosdk/model_compute_personality_setting.go index 4dc94dfdea..9525614e4f 100644 --- a/intersight_gosdk/model_compute_personality_setting.go +++ b/intersight_gosdk/model_compute_personality_setting.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_physical.go b/intersight_gosdk/model_compute_physical.go index 7bd0dcd4da..114029fce6 100644 --- a/intersight_gosdk/model_compute_physical.go +++ b/intersight_gosdk/model_compute_physical.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_physical_relationship.go b/intersight_gosdk/model_compute_physical_relationship.go index 028e7a90dd..8e201579f0 100644 --- a/intersight_gosdk/model_compute_physical_relationship.go +++ b/intersight_gosdk/model_compute_physical_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_physical_summary.go b/intersight_gosdk/model_compute_physical_summary.go index bbcd4bb756..a7ed3c4894 100644 --- a/intersight_gosdk/model_compute_physical_summary.go +++ b/intersight_gosdk/model_compute_physical_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_physical_summary_list.go b/intersight_gosdk/model_compute_physical_summary_list.go index 11271ec034..5ee6ef5b2c 100644 --- a/intersight_gosdk/model_compute_physical_summary_list.go +++ b/intersight_gosdk/model_compute_physical_summary_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_physical_summary_relationship.go b/intersight_gosdk/model_compute_physical_summary_relationship.go index 930de62686..00ca6a490a 100644 --- a/intersight_gosdk/model_compute_physical_summary_relationship.go +++ b/intersight_gosdk/model_compute_physical_summary_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_physical_summary_response.go b/intersight_gosdk/model_compute_physical_summary_response.go index cd7c5c9c4b..f3d407ee9e 100644 --- a/intersight_gosdk/model_compute_physical_summary_response.go +++ b/intersight_gosdk/model_compute_physical_summary_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_rack_unit.go b/intersight_gosdk/model_compute_rack_unit.go index b3fb080bbb..3daf6a9b4a 100644 --- a/intersight_gosdk/model_compute_rack_unit.go +++ b/intersight_gosdk/model_compute_rack_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_rack_unit_identity.go b/intersight_gosdk/model_compute_rack_unit_identity.go index a381c19b31..43bf02ed4e 100644 --- a/intersight_gosdk/model_compute_rack_unit_identity.go +++ b/intersight_gosdk/model_compute_rack_unit_identity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_rack_unit_identity_list.go b/intersight_gosdk/model_compute_rack_unit_identity_list.go index 1bf7df8553..195a89e4de 100644 --- a/intersight_gosdk/model_compute_rack_unit_identity_list.go +++ b/intersight_gosdk/model_compute_rack_unit_identity_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_rack_unit_identity_response.go b/intersight_gosdk/model_compute_rack_unit_identity_response.go index c84f70af78..ff959822d5 100644 --- a/intersight_gosdk/model_compute_rack_unit_identity_response.go +++ b/intersight_gosdk/model_compute_rack_unit_identity_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_rack_unit_list.go b/intersight_gosdk/model_compute_rack_unit_list.go index 48c68c4183..18b775422f 100644 --- a/intersight_gosdk/model_compute_rack_unit_list.go +++ b/intersight_gosdk/model_compute_rack_unit_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_rack_unit_relationship.go b/intersight_gosdk/model_compute_rack_unit_relationship.go index e5e841615d..81da9ea294 100644 --- a/intersight_gosdk/model_compute_rack_unit_relationship.go +++ b/intersight_gosdk/model_compute_rack_unit_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_rack_unit_response.go b/intersight_gosdk/model_compute_rack_unit_response.go index 136660e8e4..f57852790f 100644 --- a/intersight_gosdk/model_compute_rack_unit_response.go +++ b/intersight_gosdk/model_compute_rack_unit_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_server_config.go b/intersight_gosdk/model_compute_server_config.go index 45fe8f7e5a..13ab1d84f7 100644 --- a/intersight_gosdk/model_compute_server_config.go +++ b/intersight_gosdk/model_compute_server_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type ComputeServerConfig struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // User defined asset tag of the server. - AssetTag *string `json:"AssetTag,omitempty"` + AssetTag *string "json:\"AssetTag,omitempty\" validate:\"regexp=^[ #$%\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}\\\\^\\\\`\\\\>\\\\<~a-zA-Z0-9]*$\"" // User defined description of the server. - UserLabel *string `json:"UserLabel,omitempty"` + UserLabel *string `json:"UserLabel,omitempty" validate:"regexp=^[ !#$%&\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}~a-zA-Z0-9]*$"` AdditionalProperties map[string]interface{} } @@ -270,9 +270,9 @@ func (o *ComputeServerConfig) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // User defined asset tag of the server. - AssetTag *string `json:"AssetTag,omitempty"` + AssetTag *string "json:\"AssetTag,omitempty\" validate:\"regexp=^[ #$%\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}\\\\^\\\\`\\\\>\\\\<~a-zA-Z0-9]*$\"" // User defined description of the server. - UserLabel *string `json:"UserLabel,omitempty"` + UserLabel *string `json:"UserLabel,omitempty" validate:"regexp=^[ !#$%&\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}~a-zA-Z0-9]*$"` } varComputeServerConfigWithoutEmbeddedStruct := ComputeServerConfigWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_compute_server_id_pool.go b/intersight_gosdk/model_compute_server_id_pool.go index 3c3a4e5bf9..32e6c69bc4 100644 --- a/intersight_gosdk/model_compute_server_id_pool.go +++ b/intersight_gosdk/model_compute_server_id_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_server_id_pool_list.go b/intersight_gosdk/model_compute_server_id_pool_list.go index 7153e7467f..fd1d8a6466 100644 --- a/intersight_gosdk/model_compute_server_id_pool_list.go +++ b/intersight_gosdk/model_compute_server_id_pool_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_server_id_pool_response.go b/intersight_gosdk/model_compute_server_id_pool_response.go index d4e37cfbaf..5980e8e0f6 100644 --- a/intersight_gosdk/model_compute_server_id_pool_response.go +++ b/intersight_gosdk/model_compute_server_id_pool_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_server_op_status.go b/intersight_gosdk/model_compute_server_op_status.go index b671c0d249..d6ff24bb96 100644 --- a/intersight_gosdk/model_compute_server_op_status.go +++ b/intersight_gosdk/model_compute_server_op_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_server_power_policy.go b/intersight_gosdk/model_compute_server_power_policy.go index c44b8c06bf..610ba4b348 100644 --- a/intersight_gosdk/model_compute_server_power_policy.go +++ b/intersight_gosdk/model_compute_server_power_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_server_power_policy_list.go b/intersight_gosdk/model_compute_server_power_policy_list.go index 0e2908d4ff..bf4b1dae7b 100644 --- a/intersight_gosdk/model_compute_server_power_policy_list.go +++ b/intersight_gosdk/model_compute_server_power_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_server_power_policy_response.go b/intersight_gosdk/model_compute_server_power_policy_response.go index 0b1f353974..fd246b44f4 100644 --- a/intersight_gosdk/model_compute_server_power_policy_response.go +++ b/intersight_gosdk/model_compute_server_power_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_server_setting.go b/intersight_gosdk/model_compute_server_setting.go index c5fb8f4050..5e475cb148 100644 --- a/intersight_gosdk/model_compute_server_setting.go +++ b/intersight_gosdk/model_compute_server_setting.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_server_setting_list.go b/intersight_gosdk/model_compute_server_setting_list.go index bea765e9a8..ea6a7ec020 100644 --- a/intersight_gosdk/model_compute_server_setting_list.go +++ b/intersight_gosdk/model_compute_server_setting_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_server_setting_response.go b/intersight_gosdk/model_compute_server_setting_response.go index b14fb426eb..f36fcc30b8 100644 --- a/intersight_gosdk/model_compute_server_setting_response.go +++ b/intersight_gosdk/model_compute_server_setting_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_storage_controller_operation.go b/intersight_gosdk/model_compute_storage_controller_operation.go index f26ab2b8d6..07e2ad38ce 100644 --- a/intersight_gosdk/model_compute_storage_controller_operation.go +++ b/intersight_gosdk/model_compute_storage_controller_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_storage_physical_drive.go b/intersight_gosdk/model_compute_storage_physical_drive.go index 93d7399494..ca45e0b6f5 100644 --- a/intersight_gosdk/model_compute_storage_physical_drive.go +++ b/intersight_gosdk/model_compute_storage_physical_drive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_storage_physical_drive_operation.go b/intersight_gosdk/model_compute_storage_physical_drive_operation.go index 5e3da909cd..872510c489 100644 --- a/intersight_gosdk/model_compute_storage_physical_drive_operation.go +++ b/intersight_gosdk/model_compute_storage_physical_drive_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_storage_utility_image_operation.go b/intersight_gosdk/model_compute_storage_utility_image_operation.go index b395b7cd93..ae1e8f6b4d 100644 --- a/intersight_gosdk/model_compute_storage_utility_image_operation.go +++ b/intersight_gosdk/model_compute_storage_utility_image_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_storage_virtual_drive.go b/intersight_gosdk/model_compute_storage_virtual_drive.go index 05f61b6fad..ce214b5342 100644 --- a/intersight_gosdk/model_compute_storage_virtual_drive.go +++ b/intersight_gosdk/model_compute_storage_virtual_drive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_storage_virtual_drive_operation.go b/intersight_gosdk/model_compute_storage_virtual_drive_operation.go index beca4feb07..315644826a 100644 --- a/intersight_gosdk/model_compute_storage_virtual_drive_operation.go +++ b/intersight_gosdk/model_compute_storage_virtual_drive_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_vmedia.go b/intersight_gosdk/model_compute_vmedia.go index 1bea83e4cc..23ef3973a9 100644 --- a/intersight_gosdk/model_compute_vmedia.go +++ b/intersight_gosdk/model_compute_vmedia.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_vmedia_list.go b/intersight_gosdk/model_compute_vmedia_list.go index 6c9bae694e..2a4fe64bc9 100644 --- a/intersight_gosdk/model_compute_vmedia_list.go +++ b/intersight_gosdk/model_compute_vmedia_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_vmedia_relationship.go b/intersight_gosdk/model_compute_vmedia_relationship.go index 301050be92..60adc48830 100644 --- a/intersight_gosdk/model_compute_vmedia_relationship.go +++ b/intersight_gosdk/model_compute_vmedia_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_vmedia_response.go b/intersight_gosdk/model_compute_vmedia_response.go index 06b3fd695a..3ce71dc3d4 100644 --- a/intersight_gosdk/model_compute_vmedia_response.go +++ b/intersight_gosdk/model_compute_vmedia_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm.go b/intersight_gosdk/model_cond_alarm.go index a01801418c..6a689355d4 100644 --- a/intersight_gosdk/model_cond_alarm.go +++ b/intersight_gosdk/model_cond_alarm.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_action.go b/intersight_gosdk/model_cond_alarm_action.go index 8b9430003c..a0b9e369c3 100644 --- a/intersight_gosdk/model_cond_alarm_action.go +++ b/intersight_gosdk/model_cond_alarm_action.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_aggregation.go b/intersight_gosdk/model_cond_alarm_aggregation.go index 1ce1ea9bab..b81a3f3ecf 100644 --- a/intersight_gosdk/model_cond_alarm_aggregation.go +++ b/intersight_gosdk/model_cond_alarm_aggregation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_aggregation_list.go b/intersight_gosdk/model_cond_alarm_aggregation_list.go index 2a6b08fba8..ce88a62149 100644 --- a/intersight_gosdk/model_cond_alarm_aggregation_list.go +++ b/intersight_gosdk/model_cond_alarm_aggregation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_aggregation_response.go b/intersight_gosdk/model_cond_alarm_aggregation_response.go index 70b7d9108f..d0e3caebc8 100644 --- a/intersight_gosdk/model_cond_alarm_aggregation_response.go +++ b/intersight_gosdk/model_cond_alarm_aggregation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_classification.go b/intersight_gosdk/model_cond_alarm_classification.go index 09c9b85ac6..6c6e811e6c 100644 --- a/intersight_gosdk/model_cond_alarm_classification.go +++ b/intersight_gosdk/model_cond_alarm_classification.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -32,7 +32,7 @@ type CondAlarmClassification struct { // A description about the alarms group that usually gives what kind of alarms are part of this classification. Description *string `json:"Description,omitempty"` // The name that uniquely identifies the alarm classificaton. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // An array of relationships to condAlarmDefinition resources. AlarmDefinitions []CondAlarmDefinitionRelationship `json:"AlarmDefinitions,omitempty"` AdditionalProperties map[string]interface{} @@ -348,7 +348,7 @@ func (o *CondAlarmClassification) UnmarshalJSON(data []byte) (err error) { // A description about the alarms group that usually gives what kind of alarms are part of this classification. Description *string `json:"Description,omitempty"` // The name that uniquely identifies the alarm classificaton. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // An array of relationships to condAlarmDefinition resources. AlarmDefinitions []CondAlarmDefinitionRelationship `json:"AlarmDefinitions,omitempty"` } diff --git a/intersight_gosdk/model_cond_alarm_classification_eligibility.go b/intersight_gosdk/model_cond_alarm_classification_eligibility.go index b54b8a9154..2ca59d8fb8 100644 --- a/intersight_gosdk/model_cond_alarm_classification_eligibility.go +++ b/intersight_gosdk/model_cond_alarm_classification_eligibility.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_classification_list.go b/intersight_gosdk/model_cond_alarm_classification_list.go index 632003bca8..e0bb7faf42 100644 --- a/intersight_gosdk/model_cond_alarm_classification_list.go +++ b/intersight_gosdk/model_cond_alarm_classification_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_classification_relationship.go b/intersight_gosdk/model_cond_alarm_classification_relationship.go index e7c01866ee..d47373dd99 100644 --- a/intersight_gosdk/model_cond_alarm_classification_relationship.go +++ b/intersight_gosdk/model_cond_alarm_classification_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_classification_response.go b/intersight_gosdk/model_cond_alarm_classification_response.go index 90084f117f..d0dac180f5 100644 --- a/intersight_gosdk/model_cond_alarm_classification_response.go +++ b/intersight_gosdk/model_cond_alarm_classification_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_definition.go b/intersight_gosdk/model_cond_alarm_definition.go index a6952a1a11..975d242d4b 100644 --- a/intersight_gosdk/model_cond_alarm_definition.go +++ b/intersight_gosdk/model_cond_alarm_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_definition_list.go b/intersight_gosdk/model_cond_alarm_definition_list.go index a02069b453..09b4fc36c4 100644 --- a/intersight_gosdk/model_cond_alarm_definition_list.go +++ b/intersight_gosdk/model_cond_alarm_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_definition_relationship.go b/intersight_gosdk/model_cond_alarm_definition_relationship.go index 27d9487720..14ce10397c 100644 --- a/intersight_gosdk/model_cond_alarm_definition_relationship.go +++ b/intersight_gosdk/model_cond_alarm_definition_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_definition_response.go b/intersight_gosdk/model_cond_alarm_definition_response.go index 036c60f3d0..923c3b2edc 100644 --- a/intersight_gosdk/model_cond_alarm_definition_response.go +++ b/intersight_gosdk/model_cond_alarm_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_list.go b/intersight_gosdk/model_cond_alarm_list.go index 32c7bbb570..c0e835492a 100644 --- a/intersight_gosdk/model_cond_alarm_list.go +++ b/intersight_gosdk/model_cond_alarm_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_response.go b/intersight_gosdk/model_cond_alarm_response.go index f1d71a35f4..73a7aa1c4b 100644 --- a/intersight_gosdk/model_cond_alarm_response.go +++ b/intersight_gosdk/model_cond_alarm_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_spec.go b/intersight_gosdk/model_cond_alarm_spec.go index 736b6bb54d..5d6ad55057 100644 --- a/intersight_gosdk/model_cond_alarm_spec.go +++ b/intersight_gosdk/model_cond_alarm_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_summary.go b/intersight_gosdk/model_cond_alarm_summary.go index 93e2bfa7b8..58d11e44fd 100644 --- a/intersight_gosdk/model_cond_alarm_summary.go +++ b/intersight_gosdk/model_cond_alarm_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_suppression.go b/intersight_gosdk/model_cond_alarm_suppression.go index c7645f438d..d4e8e78806 100644 --- a/intersight_gosdk/model_cond_alarm_suppression.go +++ b/intersight_gosdk/model_cond_alarm_suppression.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_suppression_list.go b/intersight_gosdk/model_cond_alarm_suppression_list.go index b52f3f504f..f8df0917db 100644 --- a/intersight_gosdk/model_cond_alarm_suppression_list.go +++ b/intersight_gosdk/model_cond_alarm_suppression_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_suppression_response.go b/intersight_gosdk/model_cond_alarm_suppression_response.go index 6060482a93..a306c23b9c 100644 --- a/intersight_gosdk/model_cond_alarm_suppression_response.go +++ b/intersight_gosdk/model_cond_alarm_suppression_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_hcl_status.go b/intersight_gosdk/model_cond_hcl_status.go index 5b611d77c8..762ac69573 100644 --- a/intersight_gosdk/model_cond_hcl_status.go +++ b/intersight_gosdk/model_cond_hcl_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_hcl_status_detail.go b/intersight_gosdk/model_cond_hcl_status_detail.go index fb6514b827..8e8f255fbf 100644 --- a/intersight_gosdk/model_cond_hcl_status_detail.go +++ b/intersight_gosdk/model_cond_hcl_status_detail.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_hcl_status_detail_list.go b/intersight_gosdk/model_cond_hcl_status_detail_list.go index c2272c670b..2e82ec8243 100644 --- a/intersight_gosdk/model_cond_hcl_status_detail_list.go +++ b/intersight_gosdk/model_cond_hcl_status_detail_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_hcl_status_detail_relationship.go b/intersight_gosdk/model_cond_hcl_status_detail_relationship.go index d6005cfff3..d9aa917bc4 100644 --- a/intersight_gosdk/model_cond_hcl_status_detail_relationship.go +++ b/intersight_gosdk/model_cond_hcl_status_detail_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_hcl_status_detail_response.go b/intersight_gosdk/model_cond_hcl_status_detail_response.go index 8ba7b49862..6b3dba85ae 100644 --- a/intersight_gosdk/model_cond_hcl_status_detail_response.go +++ b/intersight_gosdk/model_cond_hcl_status_detail_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_hcl_status_job.go b/intersight_gosdk/model_cond_hcl_status_job.go index 028564bced..ce8e5a028d 100644 --- a/intersight_gosdk/model_cond_hcl_status_job.go +++ b/intersight_gosdk/model_cond_hcl_status_job.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_hcl_status_job_list.go b/intersight_gosdk/model_cond_hcl_status_job_list.go index 19bc5d3f78..d6eb3e3532 100644 --- a/intersight_gosdk/model_cond_hcl_status_job_list.go +++ b/intersight_gosdk/model_cond_hcl_status_job_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_hcl_status_job_response.go b/intersight_gosdk/model_cond_hcl_status_job_response.go index d87d4fe73b..cd1c87791c 100644 --- a/intersight_gosdk/model_cond_hcl_status_job_response.go +++ b/intersight_gosdk/model_cond_hcl_status_job_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_hcl_status_list.go b/intersight_gosdk/model_cond_hcl_status_list.go index 547162645f..e52c204b18 100644 --- a/intersight_gosdk/model_cond_hcl_status_list.go +++ b/intersight_gosdk/model_cond_hcl_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_hcl_status_relationship.go b/intersight_gosdk/model_cond_hcl_status_relationship.go index dc81041fa9..97e824b9b6 100644 --- a/intersight_gosdk/model_cond_hcl_status_relationship.go +++ b/intersight_gosdk/model_cond_hcl_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_hcl_status_response.go b/intersight_gosdk/model_cond_hcl_status_response.go index 94754d5a68..1904b23b4c 100644 --- a/intersight_gosdk/model_cond_hcl_status_response.go +++ b/intersight_gosdk/model_cond_hcl_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_auth_message.go b/intersight_gosdk/model_connector_auth_message.go index 15c30fcefa..de0b38cc81 100644 --- a/intersight_gosdk/model_connector_auth_message.go +++ b/intersight_gosdk/model_connector_auth_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_base_message.go b/intersight_gosdk/model_connector_base_message.go index 96bbe71428..8970e17dcc 100644 --- a/intersight_gosdk/model_connector_base_message.go +++ b/intersight_gosdk/model_connector_base_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_close_stream_message.go b/intersight_gosdk/model_connector_close_stream_message.go index 1f76a031c8..eebe5b6c34 100644 --- a/intersight_gosdk/model_connector_close_stream_message.go +++ b/intersight_gosdk/model_connector_close_stream_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_command_control_message.go b/intersight_gosdk/model_connector_command_control_message.go index 7a699bb0ad..a5953c9d9f 100644 --- a/intersight_gosdk/model_connector_command_control_message.go +++ b/intersight_gosdk/model_connector_command_control_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_command_terminal_stream.go b/intersight_gosdk/model_connector_command_terminal_stream.go index 4ed90128d1..3cb2119924 100644 --- a/intersight_gosdk/model_connector_command_terminal_stream.go +++ b/intersight_gosdk/model_connector_command_terminal_stream.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_download_status.go b/intersight_gosdk/model_connector_download_status.go index 867a1ee6cb..6db9078177 100644 --- a/intersight_gosdk/model_connector_download_status.go +++ b/intersight_gosdk/model_connector_download_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_event_log.go b/intersight_gosdk/model_connector_event_log.go index afe442fa23..ad5048ba1c 100644 --- a/intersight_gosdk/model_connector_event_log.go +++ b/intersight_gosdk/model_connector_event_log.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_expect_prompt.go b/intersight_gosdk/model_connector_expect_prompt.go index 95fb93b9c5..b8abd42a8e 100644 --- a/intersight_gosdk/model_connector_expect_prompt.go +++ b/intersight_gosdk/model_connector_expect_prompt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_fetch_stream_message.go b/intersight_gosdk/model_connector_fetch_stream_message.go index 68e8c94e21..372ef6fe00 100644 --- a/intersight_gosdk/model_connector_fetch_stream_message.go +++ b/intersight_gosdk/model_connector_fetch_stream_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_file_checksum.go b/intersight_gosdk/model_connector_file_checksum.go index 94e440573a..5abfb1dcca 100644 --- a/intersight_gosdk/model_connector_file_checksum.go +++ b/intersight_gosdk/model_connector_file_checksum.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_file_message.go b/intersight_gosdk/model_connector_file_message.go index 12af47f362..49c3d65059 100644 --- a/intersight_gosdk/model_connector_file_message.go +++ b/intersight_gosdk/model_connector_file_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_http_request.go b/intersight_gosdk/model_connector_http_request.go index 8c8a50d175..142d023f50 100644 --- a/intersight_gosdk/model_connector_http_request.go +++ b/intersight_gosdk/model_connector_http_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_platform_param_base.go b/intersight_gosdk/model_connector_platform_param_base.go index f6fcbf41f9..5632ec4cd9 100644 --- a/intersight_gosdk/model_connector_platform_param_base.go +++ b/intersight_gosdk/model_connector_platform_param_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_scoped_inventory.go b/intersight_gosdk/model_connector_scoped_inventory.go index 586108b478..97b3ded10a 100644 --- a/intersight_gosdk/model_connector_scoped_inventory.go +++ b/intersight_gosdk/model_connector_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_ssh_config.go b/intersight_gosdk/model_connector_ssh_config.go index 9d6a25b2b4..f544edc241 100644 --- a/intersight_gosdk/model_connector_ssh_config.go +++ b/intersight_gosdk/model_connector_ssh_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_ssh_message.go b/intersight_gosdk/model_connector_ssh_message.go index b18ebb20fa..1d708d3e02 100644 --- a/intersight_gosdk/model_connector_ssh_message.go +++ b/intersight_gosdk/model_connector_ssh_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_start_stream.go b/intersight_gosdk/model_connector_start_stream.go index 41b2fe0eeb..3089b2dbe5 100644 --- a/intersight_gosdk/model_connector_start_stream.go +++ b/intersight_gosdk/model_connector_start_stream.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_start_stream_from_device.go b/intersight_gosdk/model_connector_start_stream_from_device.go index cf3b9a5e76..0a523eb492 100644 --- a/intersight_gosdk/model_connector_start_stream_from_device.go +++ b/intersight_gosdk/model_connector_start_stream_from_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_stream_acknowledge.go b/intersight_gosdk/model_connector_stream_acknowledge.go index 60927d8d90..afb0129891 100644 --- a/intersight_gosdk/model_connector_stream_acknowledge.go +++ b/intersight_gosdk/model_connector_stream_acknowledge.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_stream_input.go b/intersight_gosdk/model_connector_stream_input.go index 5f419b1b5c..41761f15af 100644 --- a/intersight_gosdk/model_connector_stream_input.go +++ b/intersight_gosdk/model_connector_stream_input.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_stream_keepalive.go b/intersight_gosdk/model_connector_stream_keepalive.go index fc433d3b5f..014bb83e71 100644 --- a/intersight_gosdk/model_connector_stream_keepalive.go +++ b/intersight_gosdk/model_connector_stream_keepalive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_stream_message.go b/intersight_gosdk/model_connector_stream_message.go index bb975dcc54..e765e15446 100644 --- a/intersight_gosdk/model_connector_stream_message.go +++ b/intersight_gosdk/model_connector_stream_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_target_change_message.go b/intersight_gosdk/model_connector_target_change_message.go index 59e5ad66b1..07ea6e5ccc 100644 --- a/intersight_gosdk/model_connector_target_change_message.go +++ b/intersight_gosdk/model_connector_target_change_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_target_specification.go b/intersight_gosdk/model_connector_target_specification.go index da84fd7216..c8b50e783f 100644 --- a/intersight_gosdk/model_connector_target_specification.go +++ b/intersight_gosdk/model_connector_target_specification.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_url.go b/intersight_gosdk/model_connector_url.go index 3b5dd34491..6c9304ad39 100644 --- a/intersight_gosdk/model_connector_url.go +++ b/intersight_gosdk/model_connector_url.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_winrm_request.go b/intersight_gosdk/model_connector_winrm_request.go index f7004df48c..2e819d9d34 100644 --- a/intersight_gosdk/model_connector_winrm_request.go +++ b/intersight_gosdk/model_connector_winrm_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_xml_api_message.go b/intersight_gosdk/model_connector_xml_api_message.go index 00d04d19d6..5120476e83 100644 --- a/intersight_gosdk/model_connector_xml_api_message.go +++ b/intersight_gosdk/model_connector_xml_api_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connectorpack_connector_pack_update.go b/intersight_gosdk/model_connectorpack_connector_pack_update.go index cf01c24479..49201b8c90 100644 --- a/intersight_gosdk/model_connectorpack_connector_pack_update.go +++ b/intersight_gosdk/model_connectorpack_connector_pack_update.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connectorpack_connector_pack_upgrade.go b/intersight_gosdk/model_connectorpack_connector_pack_upgrade.go index cd1fe08cef..bd36a5390f 100644 --- a/intersight_gosdk/model_connectorpack_connector_pack_upgrade.go +++ b/intersight_gosdk/model_connectorpack_connector_pack_upgrade.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connectorpack_connector_pack_upgrade_list.go b/intersight_gosdk/model_connectorpack_connector_pack_upgrade_list.go index 7c84308207..cbddb9d307 100644 --- a/intersight_gosdk/model_connectorpack_connector_pack_upgrade_list.go +++ b/intersight_gosdk/model_connectorpack_connector_pack_upgrade_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connectorpack_connector_pack_upgrade_response.go b/intersight_gosdk/model_connectorpack_connector_pack_upgrade_response.go index b8e7777d8f..23034cd039 100644 --- a/intersight_gosdk/model_connectorpack_connector_pack_upgrade_response.go +++ b/intersight_gosdk/model_connectorpack_connector_pack_upgrade_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connectorpack_upgrade_impact.go b/intersight_gosdk/model_connectorpack_upgrade_impact.go index 62faee227a..93410d40ff 100644 --- a/intersight_gosdk/model_connectorpack_upgrade_impact.go +++ b/intersight_gosdk/model_connectorpack_upgrade_impact.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connectorpack_upgrade_impact_list.go b/intersight_gosdk/model_connectorpack_upgrade_impact_list.go index 6c8f4cd6cc..c40f2ca153 100644 --- a/intersight_gosdk/model_connectorpack_upgrade_impact_list.go +++ b/intersight_gosdk/model_connectorpack_upgrade_impact_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connectorpack_upgrade_impact_response.go b/intersight_gosdk/model_connectorpack_upgrade_impact_response.go index 74f5a414b4..944fe2a511 100644 --- a/intersight_gosdk/model_connectorpack_upgrade_impact_response.go +++ b/intersight_gosdk/model_connectorpack_upgrade_impact_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_console_console_config.go b/intersight_gosdk/model_console_console_config.go index b2d7763ad8..6c98f6d1e9 100644 --- a/intersight_gosdk/model_console_console_config.go +++ b/intersight_gosdk/model_console_console_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_console_console_config_list.go b/intersight_gosdk/model_console_console_config_list.go index 818ff73987..88ed9f83e7 100644 --- a/intersight_gosdk/model_console_console_config_list.go +++ b/intersight_gosdk/model_console_console_config_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_console_console_config_relationship.go b/intersight_gosdk/model_console_console_config_relationship.go index 84006d337c..d51a2d3752 100644 --- a/intersight_gosdk/model_console_console_config_relationship.go +++ b/intersight_gosdk/model_console_console_config_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_console_console_config_response.go b/intersight_gosdk/model_console_console_config_response.go index 739dd3f915..94ae9df52a 100644 --- a/intersight_gosdk/model_console_console_config_response.go +++ b/intersight_gosdk/model_console_console_config_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_content_base_parameter.go b/intersight_gosdk/model_content_base_parameter.go index 5d7048f370..2970bfa1b5 100644 --- a/intersight_gosdk/model_content_base_parameter.go +++ b/intersight_gosdk/model_content_base_parameter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type ContentBaseParameter struct { // The type of the collection item in case this is a collection parameter. * `simple` - The parameter value to be extracted is of the type simple. All the common scalar typessuch as int, bool, string, etc are represented by the simple enum. * `string` - The parameter value to be extracted is of the string type. * `integer` - The parameter value to be extracted is of the number type. * `float` - The parameter value to be extracted is of the float number type. * `boolean` - The parameter value to be extracted is of the boolean type. * `json` - The parameter values to be extracted is of the generic JSON literal. JSON type is applicable only if the content to be parsed is of JSON type. * `complex` - The parameter value to be extracted is a complex parameter that itself isanother collection of simple/complex parameters. * `collection` - The parameter value to be extracted is a collection parameter whose item typeshall be either simple type or complex type. ItemType *string `json:"ItemType,omitempty"` // The name of the parameter. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // The content specific path information that identifies the parameter value within the content. The value is usually a XPath or JSONPath or a regular expression in case of text content. Path *string `json:"Path,omitempty"` // The flag indicates if the extracted value is secure. This flag is applicable for parameters of type String only. @@ -446,7 +446,7 @@ func (o *ContentBaseParameter) UnmarshalJSON(data []byte) (err error) { // The type of the collection item in case this is a collection parameter. * `simple` - The parameter value to be extracted is of the type simple. All the common scalar typessuch as int, bool, string, etc are represented by the simple enum. * `string` - The parameter value to be extracted is of the string type. * `integer` - The parameter value to be extracted is of the number type. * `float` - The parameter value to be extracted is of the float number type. * `boolean` - The parameter value to be extracted is of the boolean type. * `json` - The parameter values to be extracted is of the generic JSON literal. JSON type is applicable only if the content to be parsed is of JSON type. * `complex` - The parameter value to be extracted is a complex parameter that itself isanother collection of simple/complex parameters. * `collection` - The parameter value to be extracted is a collection parameter whose item typeshall be either simple type or complex type. ItemType *string `json:"ItemType,omitempty"` // The name of the parameter. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // The content specific path information that identifies the parameter value within the content. The value is usually a XPath or JSONPath or a regular expression in case of text content. Path *string `json:"Path,omitempty"` // The flag indicates if the extracted value is secure. This flag is applicable for parameters of type String only. diff --git a/intersight_gosdk/model_content_complex_type.go b/intersight_gosdk/model_content_complex_type.go index 15e736887c..6cfe20b5a5 100644 --- a/intersight_gosdk/model_content_complex_type.go +++ b/intersight_gosdk/model_content_complex_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_content_parameter.go b/intersight_gosdk/model_content_parameter.go index 37ec6f0201..2c2f40ab92 100644 --- a/intersight_gosdk/model_content_parameter.go +++ b/intersight_gosdk/model_content_parameter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_content_text_parameter.go b/intersight_gosdk/model_content_text_parameter.go index ad57a62625..75c934fb08 100644 --- a/intersight_gosdk/model_content_text_parameter.go +++ b/intersight_gosdk/model_content_text_parameter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_adapter_compliance_details.go b/intersight_gosdk/model_convergedinfra_adapter_compliance_details.go index 18b6c84496..ead7ecee5d 100644 --- a/intersight_gosdk/model_convergedinfra_adapter_compliance_details.go +++ b/intersight_gosdk/model_convergedinfra_adapter_compliance_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_adapter_compliance_details_list.go b/intersight_gosdk/model_convergedinfra_adapter_compliance_details_list.go index 826bf0ba7f..de8cf99bd9 100644 --- a/intersight_gosdk/model_convergedinfra_adapter_compliance_details_list.go +++ b/intersight_gosdk/model_convergedinfra_adapter_compliance_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_adapter_compliance_details_relationship.go b/intersight_gosdk/model_convergedinfra_adapter_compliance_details_relationship.go index 8a78f9fb7d..dfe8134c88 100644 --- a/intersight_gosdk/model_convergedinfra_adapter_compliance_details_relationship.go +++ b/intersight_gosdk/model_convergedinfra_adapter_compliance_details_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_adapter_compliance_details_response.go b/intersight_gosdk/model_convergedinfra_adapter_compliance_details_response.go index 95bda0a70e..4d238b6a45 100644 --- a/intersight_gosdk/model_convergedinfra_adapter_compliance_details_response.go +++ b/intersight_gosdk/model_convergedinfra_adapter_compliance_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_alarm_summary.go b/intersight_gosdk/model_convergedinfra_alarm_summary.go index 69cf6baeb0..91e5380583 100644 --- a/intersight_gosdk/model_convergedinfra_alarm_summary.go +++ b/intersight_gosdk/model_convergedinfra_alarm_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_base_compliance_details.go b/intersight_gosdk/model_convergedinfra_base_compliance_details.go index 72763ae466..185bf37f29 100644 --- a/intersight_gosdk/model_convergedinfra_base_compliance_details.go +++ b/intersight_gosdk/model_convergedinfra_base_compliance_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_base_compliance_details_relationship.go b/intersight_gosdk/model_convergedinfra_base_compliance_details_relationship.go index 21481a9c69..2eeefa6b17 100644 --- a/intersight_gosdk/model_convergedinfra_base_compliance_details_relationship.go +++ b/intersight_gosdk/model_convergedinfra_base_compliance_details_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_base_pod.go b/intersight_gosdk/model_convergedinfra_base_pod.go index a6768443e3..7e49f7c86b 100644 --- a/intersight_gosdk/model_convergedinfra_base_pod.go +++ b/intersight_gosdk/model_convergedinfra_base_pod.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type ConvergedinfraBasePod struct { // 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. ObjectType string `json:"ObjectType"` // Description of the pod. A short note about the nature or purpose of the pod. - Description *string `json:"Description,omitempty"` + Description *string `json:"Description,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\x00-\\\\xFF]*$"` // Name of the pod. Concrete pod will be created with this name. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` // Defines the type of the pod. * `FlexPod` - Pod type is FlexPod, an integrated infrastructure solution developed by Cisco and NetApp. * `FlashStack` - Pod type is FlashStack, an integrated infrastructure solution developed by Cisco and Pure Storage. Type *string `json:"Type,omitempty"` AdditionalProperties map[string]interface{} @@ -311,9 +311,9 @@ func (o *ConvergedinfraBasePod) UnmarshalJSON(data []byte) (err error) { // 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. ObjectType string `json:"ObjectType"` // Description of the pod. A short note about the nature or purpose of the pod. - Description *string `json:"Description,omitempty"` + Description *string `json:"Description,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\x00-\\\\xFF]*$"` // Name of the pod. Concrete pod will be created with this name. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` // Defines the type of the pod. * `FlexPod` - Pod type is FlexPod, an integrated infrastructure solution developed by Cisco and NetApp. * `FlashStack` - Pod type is FlashStack, an integrated infrastructure solution developed by Cisco and Pure Storage. Type *string `json:"Type,omitempty"` } diff --git a/intersight_gosdk/model_convergedinfra_base_pod_summary.go b/intersight_gosdk/model_convergedinfra_base_pod_summary.go index 82579f5b3d..6ae0b0cf1a 100644 --- a/intersight_gosdk/model_convergedinfra_base_pod_summary.go +++ b/intersight_gosdk/model_convergedinfra_base_pod_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_compliance_summary.go b/intersight_gosdk/model_convergedinfra_compliance_summary.go index 81900af74d..3d1978a218 100644 --- a/intersight_gosdk/model_convergedinfra_compliance_summary.go +++ b/intersight_gosdk/model_convergedinfra_compliance_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_pod.go b/intersight_gosdk/model_convergedinfra_pod.go index c6beecee83..3707727e3f 100644 --- a/intersight_gosdk/model_convergedinfra_pod.go +++ b/intersight_gosdk/model_convergedinfra_pod.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_pod_compliance_info.go b/intersight_gosdk/model_convergedinfra_pod_compliance_info.go index 45323c041e..38ca5b27f2 100644 --- a/intersight_gosdk/model_convergedinfra_pod_compliance_info.go +++ b/intersight_gosdk/model_convergedinfra_pod_compliance_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_pod_compliance_info_list.go b/intersight_gosdk/model_convergedinfra_pod_compliance_info_list.go index 2a3f2c45f7..806fdf1dc6 100644 --- a/intersight_gosdk/model_convergedinfra_pod_compliance_info_list.go +++ b/intersight_gosdk/model_convergedinfra_pod_compliance_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_pod_compliance_info_relationship.go b/intersight_gosdk/model_convergedinfra_pod_compliance_info_relationship.go index c1889fea09..f09e094dfa 100644 --- a/intersight_gosdk/model_convergedinfra_pod_compliance_info_relationship.go +++ b/intersight_gosdk/model_convergedinfra_pod_compliance_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_pod_compliance_info_response.go b/intersight_gosdk/model_convergedinfra_pod_compliance_info_response.go index ea39f3bbd3..8be1c09020 100644 --- a/intersight_gosdk/model_convergedinfra_pod_compliance_info_response.go +++ b/intersight_gosdk/model_convergedinfra_pod_compliance_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_pod_list.go b/intersight_gosdk/model_convergedinfra_pod_list.go index f6bba17990..8071b5c05b 100644 --- a/intersight_gosdk/model_convergedinfra_pod_list.go +++ b/intersight_gosdk/model_convergedinfra_pod_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_pod_relationship.go b/intersight_gosdk/model_convergedinfra_pod_relationship.go index 8bd5ba30a1..4d2fd1b2dd 100644 --- a/intersight_gosdk/model_convergedinfra_pod_relationship.go +++ b/intersight_gosdk/model_convergedinfra_pod_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_pod_response.go b/intersight_gosdk/model_convergedinfra_pod_response.go index f61c96668a..977e885348 100644 --- a/intersight_gosdk/model_convergedinfra_pod_response.go +++ b/intersight_gosdk/model_convergedinfra_pod_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_pod_summary.go b/intersight_gosdk/model_convergedinfra_pod_summary.go index a70b5692fd..021abd53a6 100644 --- a/intersight_gosdk/model_convergedinfra_pod_summary.go +++ b/intersight_gosdk/model_convergedinfra_pod_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_server_compliance_details.go b/intersight_gosdk/model_convergedinfra_server_compliance_details.go index a76a45ec7b..ae8fcb878d 100644 --- a/intersight_gosdk/model_convergedinfra_server_compliance_details.go +++ b/intersight_gosdk/model_convergedinfra_server_compliance_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_server_compliance_details_list.go b/intersight_gosdk/model_convergedinfra_server_compliance_details_list.go index 6cb6ac621f..a6c445a249 100644 --- a/intersight_gosdk/model_convergedinfra_server_compliance_details_list.go +++ b/intersight_gosdk/model_convergedinfra_server_compliance_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_server_compliance_details_relationship.go b/intersight_gosdk/model_convergedinfra_server_compliance_details_relationship.go index e21c2c6b21..169125ecb4 100644 --- a/intersight_gosdk/model_convergedinfra_server_compliance_details_relationship.go +++ b/intersight_gosdk/model_convergedinfra_server_compliance_details_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_server_compliance_details_response.go b/intersight_gosdk/model_convergedinfra_server_compliance_details_response.go index a73ab304c5..a5a624a6b1 100644 --- a/intersight_gosdk/model_convergedinfra_server_compliance_details_response.go +++ b/intersight_gosdk/model_convergedinfra_server_compliance_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_storage_compliance_details.go b/intersight_gosdk/model_convergedinfra_storage_compliance_details.go index ab9021d840..6adf05ad65 100644 --- a/intersight_gosdk/model_convergedinfra_storage_compliance_details.go +++ b/intersight_gosdk/model_convergedinfra_storage_compliance_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_storage_compliance_details_list.go b/intersight_gosdk/model_convergedinfra_storage_compliance_details_list.go index b6c0c36d7e..0c459c9c98 100644 --- a/intersight_gosdk/model_convergedinfra_storage_compliance_details_list.go +++ b/intersight_gosdk/model_convergedinfra_storage_compliance_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_storage_compliance_details_relationship.go b/intersight_gosdk/model_convergedinfra_storage_compliance_details_relationship.go index f436179661..a53b92a360 100644 --- a/intersight_gosdk/model_convergedinfra_storage_compliance_details_relationship.go +++ b/intersight_gosdk/model_convergedinfra_storage_compliance_details_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_storage_compliance_details_response.go b/intersight_gosdk/model_convergedinfra_storage_compliance_details_response.go index cd72d8ced5..88e697d50a 100644 --- a/intersight_gosdk/model_convergedinfra_storage_compliance_details_response.go +++ b/intersight_gosdk/model_convergedinfra_storage_compliance_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_switch_compliance_details.go b/intersight_gosdk/model_convergedinfra_switch_compliance_details.go index 914484449a..63604cfe54 100644 --- a/intersight_gosdk/model_convergedinfra_switch_compliance_details.go +++ b/intersight_gosdk/model_convergedinfra_switch_compliance_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_switch_compliance_details_list.go b/intersight_gosdk/model_convergedinfra_switch_compliance_details_list.go index d8bafbbf12..efef2b8c44 100644 --- a/intersight_gosdk/model_convergedinfra_switch_compliance_details_list.go +++ b/intersight_gosdk/model_convergedinfra_switch_compliance_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_switch_compliance_details_relationship.go b/intersight_gosdk/model_convergedinfra_switch_compliance_details_relationship.go index ba063fcb04..afc4e9d513 100644 --- a/intersight_gosdk/model_convergedinfra_switch_compliance_details_relationship.go +++ b/intersight_gosdk/model_convergedinfra_switch_compliance_details_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_switch_compliance_details_response.go b/intersight_gosdk/model_convergedinfra_switch_compliance_details_response.go index 4001cbe134..931608738b 100644 --- a/intersight_gosdk/model_convergedinfra_switch_compliance_details_response.go +++ b/intersight_gosdk/model_convergedinfra_switch_compliance_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_crd_custom_resource.go b/intersight_gosdk/model_crd_custom_resource.go index e6e7147756..347adb2a5a 100644 --- a/intersight_gosdk/model_crd_custom_resource.go +++ b/intersight_gosdk/model_crd_custom_resource.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_crd_custom_resource_config_property.go b/intersight_gosdk/model_crd_custom_resource_config_property.go index 2fc2ba80a0..e528a44ead 100644 --- a/intersight_gosdk/model_crd_custom_resource_config_property.go +++ b/intersight_gosdk/model_crd_custom_resource_config_property.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_crd_custom_resource_list.go b/intersight_gosdk/model_crd_custom_resource_list.go index fe13ed2420..024c7bd500 100644 --- a/intersight_gosdk/model_crd_custom_resource_list.go +++ b/intersight_gosdk/model_crd_custom_resource_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_crd_custom_resource_response.go b/intersight_gosdk/model_crd_custom_resource_response.go index b865639524..04927ba041 100644 --- a/intersight_gosdk/model_crd_custom_resource_response.go +++ b/intersight_gosdk/model_crd_custom_resource_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_deviceconnector_policy.go b/intersight_gosdk/model_deviceconnector_policy.go index af2f095c03..7e00b2369d 100644 --- a/intersight_gosdk/model_deviceconnector_policy.go +++ b/intersight_gosdk/model_deviceconnector_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_deviceconnector_policy_list.go b/intersight_gosdk/model_deviceconnector_policy_list.go index ac1680de70..37f11fbcae 100644 --- a/intersight_gosdk/model_deviceconnector_policy_list.go +++ b/intersight_gosdk/model_deviceconnector_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_deviceconnector_policy_response.go b/intersight_gosdk/model_deviceconnector_policy_response.go index d099b973ce..7c40978589 100644 --- a/intersight_gosdk/model_deviceconnector_policy_response.go +++ b/intersight_gosdk/model_deviceconnector_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_device.go b/intersight_gosdk/model_dnac_device.go index 152b3ab8dd..bb816b37d5 100644 --- a/intersight_gosdk/model_dnac_device.go +++ b/intersight_gosdk/model_dnac_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_device_interface.go b/intersight_gosdk/model_dnac_device_interface.go index cfae4f35e5..d52a45257f 100644 --- a/intersight_gosdk/model_dnac_device_interface.go +++ b/intersight_gosdk/model_dnac_device_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_device_interface_list.go b/intersight_gosdk/model_dnac_device_interface_list.go index 15896ff562..4c8a6ab2b8 100644 --- a/intersight_gosdk/model_dnac_device_interface_list.go +++ b/intersight_gosdk/model_dnac_device_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_device_interface_response.go b/intersight_gosdk/model_dnac_device_interface_response.go index df6c9f2eee..621fdbf0eb 100644 --- a/intersight_gosdk/model_dnac_device_interface_response.go +++ b/intersight_gosdk/model_dnac_device_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_device_list.go b/intersight_gosdk/model_dnac_device_list.go index 0db696b7cf..0c33337a1e 100644 --- a/intersight_gosdk/model_dnac_device_list.go +++ b/intersight_gosdk/model_dnac_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_device_response.go b/intersight_gosdk/model_dnac_device_response.go index e668836492..1706c00a7b 100644 --- a/intersight_gosdk/model_dnac_device_response.go +++ b/intersight_gosdk/model_dnac_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_external_border_node.go b/intersight_gosdk/model_dnac_external_border_node.go index 971a430a13..4426095eae 100644 --- a/intersight_gosdk/model_dnac_external_border_node.go +++ b/intersight_gosdk/model_dnac_external_border_node.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_external_border_node_interface.go b/intersight_gosdk/model_dnac_external_border_node_interface.go index 74fd161aa4..27b18628c5 100644 --- a/intersight_gosdk/model_dnac_external_border_node_interface.go +++ b/intersight_gosdk/model_dnac_external_border_node_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_external_border_node_interface_list.go b/intersight_gosdk/model_dnac_external_border_node_interface_list.go index 2ab852c684..fdb380876c 100644 --- a/intersight_gosdk/model_dnac_external_border_node_interface_list.go +++ b/intersight_gosdk/model_dnac_external_border_node_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_external_border_node_interface_response.go b/intersight_gosdk/model_dnac_external_border_node_interface_response.go index 70bedbf778..71a3764e3d 100644 --- a/intersight_gosdk/model_dnac_external_border_node_interface_response.go +++ b/intersight_gosdk/model_dnac_external_border_node_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_external_border_node_list.go b/intersight_gosdk/model_dnac_external_border_node_list.go index 038edd6067..4a90d82f5d 100644 --- a/intersight_gosdk/model_dnac_external_border_node_list.go +++ b/intersight_gosdk/model_dnac_external_border_node_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_external_border_node_response.go b/intersight_gosdk/model_dnac_external_border_node_response.go index 4b35cc1e61..67e029612d 100644 --- a/intersight_gosdk/model_dnac_external_border_node_response.go +++ b/intersight_gosdk/model_dnac_external_border_node_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_fabric_site.go b/intersight_gosdk/model_dnac_fabric_site.go index 45c13e5549..22c5ecd709 100644 --- a/intersight_gosdk/model_dnac_fabric_site.go +++ b/intersight_gosdk/model_dnac_fabric_site.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_fabric_site_list.go b/intersight_gosdk/model_dnac_fabric_site_list.go index cbd22401d9..8a48a4dbc2 100644 --- a/intersight_gosdk/model_dnac_fabric_site_list.go +++ b/intersight_gosdk/model_dnac_fabric_site_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_fabric_site_response.go b/intersight_gosdk/model_dnac_fabric_site_response.go index 5d6e463251..d91ac2d8f6 100644 --- a/intersight_gosdk/model_dnac_fabric_site_response.go +++ b/intersight_gosdk/model_dnac_fabric_site_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_inventory_entity.go b/intersight_gosdk/model_dnac_inventory_entity.go index e21758c32f..ed11666a10 100644 --- a/intersight_gosdk/model_dnac_inventory_entity.go +++ b/intersight_gosdk/model_dnac_inventory_entity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_site.go b/intersight_gosdk/model_dnac_site.go index 670bef213f..3dc3c6d16e 100644 --- a/intersight_gosdk/model_dnac_site.go +++ b/intersight_gosdk/model_dnac_site.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_site_ip_pool.go b/intersight_gosdk/model_dnac_site_ip_pool.go index 524668a6e3..53f1a54980 100644 --- a/intersight_gosdk/model_dnac_site_ip_pool.go +++ b/intersight_gosdk/model_dnac_site_ip_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_site_ip_pool_list.go b/intersight_gosdk/model_dnac_site_ip_pool_list.go index d1c42f9d70..f545ac3bb2 100644 --- a/intersight_gosdk/model_dnac_site_ip_pool_list.go +++ b/intersight_gosdk/model_dnac_site_ip_pool_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_site_ip_pool_response.go b/intersight_gosdk/model_dnac_site_ip_pool_response.go index dc124aaeca..fca1a71b20 100644 --- a/intersight_gosdk/model_dnac_site_ip_pool_response.go +++ b/intersight_gosdk/model_dnac_site_ip_pool_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_site_list.go b/intersight_gosdk/model_dnac_site_list.go index bba6e712fd..17da77de99 100644 --- a/intersight_gosdk/model_dnac_site_list.go +++ b/intersight_gosdk/model_dnac_site_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_site_response.go b/intersight_gosdk/model_dnac_site_response.go index c8948aec10..93e3ef9445 100644 --- a/intersight_gosdk/model_dnac_site_response.go +++ b/intersight_gosdk/model_dnac_site_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_template.go b/intersight_gosdk/model_dnac_template.go index 4840bfa8a2..041fcf041c 100644 --- a/intersight_gosdk/model_dnac_template.go +++ b/intersight_gosdk/model_dnac_template.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_template_list.go b/intersight_gosdk/model_dnac_template_list.go index 945e916254..d480ef5b1f 100644 --- a/intersight_gosdk/model_dnac_template_list.go +++ b/intersight_gosdk/model_dnac_template_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_template_response.go b/intersight_gosdk/model_dnac_template_response.go index 8149cd7fcd..f592922a03 100644 --- a/intersight_gosdk/model_dnac_template_response.go +++ b/intersight_gosdk/model_dnac_template_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_transit.go b/intersight_gosdk/model_dnac_transit.go index 95daf6cec2..555da323af 100644 --- a/intersight_gosdk/model_dnac_transit.go +++ b/intersight_gosdk/model_dnac_transit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_transit_list.go b/intersight_gosdk/model_dnac_transit_list.go index 917cb88758..61310291c8 100644 --- a/intersight_gosdk/model_dnac_transit_list.go +++ b/intersight_gosdk/model_dnac_transit_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_transit_response.go b/intersight_gosdk/model_dnac_transit_response.go index b781ad25ef..514894c8f5 100644 --- a/intersight_gosdk/model_dnac_transit_response.go +++ b/intersight_gosdk/model_dnac_transit_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_virtual_network_fabric_site.go b/intersight_gosdk/model_dnac_virtual_network_fabric_site.go index 44071cc00f..823a719949 100644 --- a/intersight_gosdk/model_dnac_virtual_network_fabric_site.go +++ b/intersight_gosdk/model_dnac_virtual_network_fabric_site.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_virtual_network_fabric_site_list.go b/intersight_gosdk/model_dnac_virtual_network_fabric_site_list.go index 1df328d0aa..20b83cc4a6 100644 --- a/intersight_gosdk/model_dnac_virtual_network_fabric_site_list.go +++ b/intersight_gosdk/model_dnac_virtual_network_fabric_site_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_virtual_network_fabric_site_response.go b/intersight_gosdk/model_dnac_virtual_network_fabric_site_response.go index 63f971ed27..a0e336d78d 100644 --- a/intersight_gosdk/model_dnac_virtual_network_fabric_site_response.go +++ b/intersight_gosdk/model_dnac_virtual_network_fabric_site_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_abstract_device.go b/intersight_gosdk/model_equipment_abstract_device.go index e293f15337..4363d304b3 100644 --- a/intersight_gosdk/model_equipment_abstract_device.go +++ b/intersight_gosdk/model_equipment_abstract_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -36,7 +36,7 @@ type EquipmentAbstractDevice struct { // Administrator defined name for the device. Name *string `json:"Name,omitempty"` // Unique identity of the device. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Current running software version of the device. Version *string `json:"Version,omitempty"` AdditionalProperties map[string]interface{} @@ -412,7 +412,7 @@ func (o *EquipmentAbstractDevice) UnmarshalJSON(data []byte) (err error) { // Administrator defined name for the device. Name *string `json:"Name,omitempty"` // Unique identity of the device. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Current running software version of the device. Version *string `json:"Version,omitempty"` } diff --git a/intersight_gosdk/model_equipment_base.go b/intersight_gosdk/model_equipment_base.go index 741565c79e..701b6a8819 100644 --- a/intersight_gosdk/model_equipment_base.go +++ b/intersight_gosdk/model_equipment_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_base_relationship.go b/intersight_gosdk/model_equipment_base_relationship.go index d9a4c5c5e0..a75b233673 100644 --- a/intersight_gosdk/model_equipment_base_relationship.go +++ b/intersight_gosdk/model_equipment_base_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_base_sensor.go b/intersight_gosdk/model_equipment_base_sensor.go index 10e87cf3ef..dbe157c496 100644 --- a/intersight_gosdk/model_equipment_base_sensor.go +++ b/intersight_gosdk/model_equipment_base_sensor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_chassis.go b/intersight_gosdk/model_equipment_chassis.go index e05dd00086..5e8f5b93d3 100644 --- a/intersight_gosdk/model_equipment_chassis.go +++ b/intersight_gosdk/model_equipment_chassis.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -58,7 +58,7 @@ type EquipmentChassis struct { // This field identifies the Stock Keeping Unit for the chassis enclosure. Sku *string `json:"Sku,omitempty"` // The user defined label assigned to the chassis. - UserLabel *string `json:"UserLabel,omitempty"` + UserLabel *string `json:"UserLabel,omitempty" validate:"regexp=^[ !#$%&\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}~a-zA-Z0-9]*$"` // This field identifies the Vendor ID for the chassis enclosure. Vid *string `json:"Vid,omitempty"` // An array of relationships to computeBlade resources. @@ -1539,7 +1539,7 @@ func (o *EquipmentChassis) UnmarshalJSON(data []byte) (err error) { // This field identifies the Stock Keeping Unit for the chassis enclosure. Sku *string `json:"Sku,omitempty"` // The user defined label assigned to the chassis. - UserLabel *string `json:"UserLabel,omitempty"` + UserLabel *string `json:"UserLabel,omitempty" validate:"regexp=^[ !#$%&\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}~a-zA-Z0-9]*$"` // This field identifies the Vendor ID for the chassis enclosure. Vid *string `json:"Vid,omitempty"` // An array of relationships to computeBlade resources. diff --git a/intersight_gosdk/model_equipment_chassis_id_pool.go b/intersight_gosdk/model_equipment_chassis_id_pool.go index 8a4ef8f345..0ed2eec422 100644 --- a/intersight_gosdk/model_equipment_chassis_id_pool.go +++ b/intersight_gosdk/model_equipment_chassis_id_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_chassis_id_pool_list.go b/intersight_gosdk/model_equipment_chassis_id_pool_list.go index 09bda07859..ed178e790f 100644 --- a/intersight_gosdk/model_equipment_chassis_id_pool_list.go +++ b/intersight_gosdk/model_equipment_chassis_id_pool_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_chassis_id_pool_response.go b/intersight_gosdk/model_equipment_chassis_id_pool_response.go index 7f2cab0cf0..45289749eb 100644 --- a/intersight_gosdk/model_equipment_chassis_id_pool_response.go +++ b/intersight_gosdk/model_equipment_chassis_id_pool_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_chassis_identity.go b/intersight_gosdk/model_equipment_chassis_identity.go index be0f9ee0e8..05495a318b 100644 --- a/intersight_gosdk/model_equipment_chassis_identity.go +++ b/intersight_gosdk/model_equipment_chassis_identity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_chassis_identity_list.go b/intersight_gosdk/model_equipment_chassis_identity_list.go index 49b757a742..9d0e236e05 100644 --- a/intersight_gosdk/model_equipment_chassis_identity_list.go +++ b/intersight_gosdk/model_equipment_chassis_identity_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_chassis_identity_response.go b/intersight_gosdk/model_equipment_chassis_identity_response.go index 5148535a9e..558f853cd8 100644 --- a/intersight_gosdk/model_equipment_chassis_identity_response.go +++ b/intersight_gosdk/model_equipment_chassis_identity_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_chassis_list.go b/intersight_gosdk/model_equipment_chassis_list.go index 9eb3e1699a..5c628e0925 100644 --- a/intersight_gosdk/model_equipment_chassis_list.go +++ b/intersight_gosdk/model_equipment_chassis_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_chassis_operation.go b/intersight_gosdk/model_equipment_chassis_operation.go index f94d3637dd..5f97b4e5cf 100644 --- a/intersight_gosdk/model_equipment_chassis_operation.go +++ b/intersight_gosdk/model_equipment_chassis_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_chassis_operation_list.go b/intersight_gosdk/model_equipment_chassis_operation_list.go index 9e2fc73eac..28937f352b 100644 --- a/intersight_gosdk/model_equipment_chassis_operation_list.go +++ b/intersight_gosdk/model_equipment_chassis_operation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_chassis_operation_response.go b/intersight_gosdk/model_equipment_chassis_operation_response.go index 1f758338cb..73205de594 100644 --- a/intersight_gosdk/model_equipment_chassis_operation_response.go +++ b/intersight_gosdk/model_equipment_chassis_operation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_chassis_operation_status.go b/intersight_gosdk/model_equipment_chassis_operation_status.go index 48ed074f9d..a1f8b9c599 100644 --- a/intersight_gosdk/model_equipment_chassis_operation_status.go +++ b/intersight_gosdk/model_equipment_chassis_operation_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_chassis_relationship.go b/intersight_gosdk/model_equipment_chassis_relationship.go index 677e8eec99..af9573bd4d 100644 --- a/intersight_gosdk/model_equipment_chassis_relationship.go +++ b/intersight_gosdk/model_equipment_chassis_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_chassis_response.go b/intersight_gosdk/model_equipment_chassis_response.go index 693723dbc2..7d1c945dd6 100644 --- a/intersight_gosdk/model_equipment_chassis_response.go +++ b/intersight_gosdk/model_equipment_chassis_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_device_location.go b/intersight_gosdk/model_equipment_device_location.go index 85ae71b8ea..edb28c12e4 100644 --- a/intersight_gosdk/model_equipment_device_location.go +++ b/intersight_gosdk/model_equipment_device_location.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_device_summary.go b/intersight_gosdk/model_equipment_device_summary.go index e70e5085d8..3bc959fb57 100644 --- a/intersight_gosdk/model_equipment_device_summary.go +++ b/intersight_gosdk/model_equipment_device_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_device_summary_list.go b/intersight_gosdk/model_equipment_device_summary_list.go index 2287c4d0ef..cfd73f43be 100644 --- a/intersight_gosdk/model_equipment_device_summary_list.go +++ b/intersight_gosdk/model_equipment_device_summary_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_device_summary_response.go b/intersight_gosdk/model_equipment_device_summary_response.go index 0447d0d357..b4fa903cdd 100644 --- a/intersight_gosdk/model_equipment_device_summary_response.go +++ b/intersight_gosdk/model_equipment_device_summary_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_end_point_log.go b/intersight_gosdk/model_equipment_end_point_log.go index 161392f5f3..44086f8ac4 100644 --- a/intersight_gosdk/model_equipment_end_point_log.go +++ b/intersight_gosdk/model_equipment_end_point_log.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_end_point_log_list.go b/intersight_gosdk/model_equipment_end_point_log_list.go index 0b14b1f5e3..1eb352d79e 100644 --- a/intersight_gosdk/model_equipment_end_point_log_list.go +++ b/intersight_gosdk/model_equipment_end_point_log_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_end_point_log_response.go b/intersight_gosdk/model_equipment_end_point_log_response.go index 0eb05e8d68..a8090bd1ff 100644 --- a/intersight_gosdk/model_equipment_end_point_log_response.go +++ b/intersight_gosdk/model_equipment_end_point_log_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_expander_module.go b/intersight_gosdk/model_equipment_expander_module.go index 733d5a9f90..b32cb449e8 100644 --- a/intersight_gosdk/model_equipment_expander_module.go +++ b/intersight_gosdk/model_equipment_expander_module.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_expander_module_list.go b/intersight_gosdk/model_equipment_expander_module_list.go index d332aca290..769d2ae3ee 100644 --- a/intersight_gosdk/model_equipment_expander_module_list.go +++ b/intersight_gosdk/model_equipment_expander_module_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_expander_module_relationship.go b/intersight_gosdk/model_equipment_expander_module_relationship.go index 14b3c66713..7d557b6e48 100644 --- a/intersight_gosdk/model_equipment_expander_module_relationship.go +++ b/intersight_gosdk/model_equipment_expander_module_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_expander_module_response.go b/intersight_gosdk/model_equipment_expander_module_response.go index 9778d62784..10c956a842 100644 --- a/intersight_gosdk/model_equipment_expander_module_response.go +++ b/intersight_gosdk/model_equipment_expander_module_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fan.go b/intersight_gosdk/model_equipment_fan.go index ff7c8fb195..70c8898200 100644 --- a/intersight_gosdk/model_equipment_fan.go +++ b/intersight_gosdk/model_equipment_fan.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fan_control.go b/intersight_gosdk/model_equipment_fan_control.go index 9068d936b2..16ab43847a 100644 --- a/intersight_gosdk/model_equipment_fan_control.go +++ b/intersight_gosdk/model_equipment_fan_control.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fan_control_list.go b/intersight_gosdk/model_equipment_fan_control_list.go index 0a62f9e5c2..62cdfddb20 100644 --- a/intersight_gosdk/model_equipment_fan_control_list.go +++ b/intersight_gosdk/model_equipment_fan_control_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fan_control_relationship.go b/intersight_gosdk/model_equipment_fan_control_relationship.go index 83656e1338..76e9aee408 100644 --- a/intersight_gosdk/model_equipment_fan_control_relationship.go +++ b/intersight_gosdk/model_equipment_fan_control_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fan_control_response.go b/intersight_gosdk/model_equipment_fan_control_response.go index b475af5f60..d7fc831033 100644 --- a/intersight_gosdk/model_equipment_fan_control_response.go +++ b/intersight_gosdk/model_equipment_fan_control_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fan_list.go b/intersight_gosdk/model_equipment_fan_list.go index 72fd40d17c..8ff9d91c44 100644 --- a/intersight_gosdk/model_equipment_fan_list.go +++ b/intersight_gosdk/model_equipment_fan_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fan_module.go b/intersight_gosdk/model_equipment_fan_module.go index 4b52210d78..d294a298d4 100644 --- a/intersight_gosdk/model_equipment_fan_module.go +++ b/intersight_gosdk/model_equipment_fan_module.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fan_module_list.go b/intersight_gosdk/model_equipment_fan_module_list.go index 7b80dda36e..dfe3313fdb 100644 --- a/intersight_gosdk/model_equipment_fan_module_list.go +++ b/intersight_gosdk/model_equipment_fan_module_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fan_module_relationship.go b/intersight_gosdk/model_equipment_fan_module_relationship.go index 85fa538604..d3b2b3203f 100644 --- a/intersight_gosdk/model_equipment_fan_module_relationship.go +++ b/intersight_gosdk/model_equipment_fan_module_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fan_module_response.go b/intersight_gosdk/model_equipment_fan_module_response.go index 03dbc055a0..ae10e97111 100644 --- a/intersight_gosdk/model_equipment_fan_module_response.go +++ b/intersight_gosdk/model_equipment_fan_module_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fan_relationship.go b/intersight_gosdk/model_equipment_fan_relationship.go index 1a35e25504..daacff717e 100644 --- a/intersight_gosdk/model_equipment_fan_relationship.go +++ b/intersight_gosdk/model_equipment_fan_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fan_response.go b/intersight_gosdk/model_equipment_fan_response.go index 50ce6b4610..1421ba734f 100644 --- a/intersight_gosdk/model_equipment_fan_response.go +++ b/intersight_gosdk/model_equipment_fan_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fex.go b/intersight_gosdk/model_equipment_fex.go index 6e073f566b..65249476bd 100644 --- a/intersight_gosdk/model_equipment_fex.go +++ b/intersight_gosdk/model_equipment_fex.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fex_identity.go b/intersight_gosdk/model_equipment_fex_identity.go index a0d2d1beee..c54c7af030 100644 --- a/intersight_gosdk/model_equipment_fex_identity.go +++ b/intersight_gosdk/model_equipment_fex_identity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fex_identity_list.go b/intersight_gosdk/model_equipment_fex_identity_list.go index d7b3928780..678b7f78dd 100644 --- a/intersight_gosdk/model_equipment_fex_identity_list.go +++ b/intersight_gosdk/model_equipment_fex_identity_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fex_identity_response.go b/intersight_gosdk/model_equipment_fex_identity_response.go index 675c29cc7b..f5eb7f1ea7 100644 --- a/intersight_gosdk/model_equipment_fex_identity_response.go +++ b/intersight_gosdk/model_equipment_fex_identity_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fex_list.go b/intersight_gosdk/model_equipment_fex_list.go index 52d41a92ad..509697e48b 100644 --- a/intersight_gosdk/model_equipment_fex_list.go +++ b/intersight_gosdk/model_equipment_fex_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fex_operation.go b/intersight_gosdk/model_equipment_fex_operation.go index 1b896d3b92..90f3715037 100644 --- a/intersight_gosdk/model_equipment_fex_operation.go +++ b/intersight_gosdk/model_equipment_fex_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fex_operation_list.go b/intersight_gosdk/model_equipment_fex_operation_list.go index 4f4b968270..353a60bdcf 100644 --- a/intersight_gosdk/model_equipment_fex_operation_list.go +++ b/intersight_gosdk/model_equipment_fex_operation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fex_operation_response.go b/intersight_gosdk/model_equipment_fex_operation_response.go index 8aa172d04b..ea2c646370 100644 --- a/intersight_gosdk/model_equipment_fex_operation_response.go +++ b/intersight_gosdk/model_equipment_fex_operation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fex_relationship.go b/intersight_gosdk/model_equipment_fex_relationship.go index 1009931494..4660a9bbb9 100644 --- a/intersight_gosdk/model_equipment_fex_relationship.go +++ b/intersight_gosdk/model_equipment_fex_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fex_response.go b/intersight_gosdk/model_equipment_fex_response.go index a084fe8b87..e05389f91d 100644 --- a/intersight_gosdk/model_equipment_fex_response.go +++ b/intersight_gosdk/model_equipment_fex_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fru.go b/intersight_gosdk/model_equipment_fru.go index 9d38661995..371f6cfd8a 100644 --- a/intersight_gosdk/model_equipment_fru.go +++ b/intersight_gosdk/model_equipment_fru.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fru_list.go b/intersight_gosdk/model_equipment_fru_list.go index 1a9e4e5eb4..effcda753e 100644 --- a/intersight_gosdk/model_equipment_fru_list.go +++ b/intersight_gosdk/model_equipment_fru_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fru_relationship.go b/intersight_gosdk/model_equipment_fru_relationship.go index b5a870ac98..e3a5b48fb0 100644 --- a/intersight_gosdk/model_equipment_fru_relationship.go +++ b/intersight_gosdk/model_equipment_fru_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fru_response.go b/intersight_gosdk/model_equipment_fru_response.go index 196b01269a..ec57259952 100644 --- a/intersight_gosdk/model_equipment_fru_response.go +++ b/intersight_gosdk/model_equipment_fru_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_hybrid_drive_slot.go b/intersight_gosdk/model_equipment_hybrid_drive_slot.go index b1bc67b001..7929007178 100644 --- a/intersight_gosdk/model_equipment_hybrid_drive_slot.go +++ b/intersight_gosdk/model_equipment_hybrid_drive_slot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_hybrid_drive_slot_list.go b/intersight_gosdk/model_equipment_hybrid_drive_slot_list.go index 144ea4606b..245bc28802 100644 --- a/intersight_gosdk/model_equipment_hybrid_drive_slot_list.go +++ b/intersight_gosdk/model_equipment_hybrid_drive_slot_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_hybrid_drive_slot_relationship.go b/intersight_gosdk/model_equipment_hybrid_drive_slot_relationship.go index 56387d1da8..761d60dcdc 100644 --- a/intersight_gosdk/model_equipment_hybrid_drive_slot_relationship.go +++ b/intersight_gosdk/model_equipment_hybrid_drive_slot_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_hybrid_drive_slot_response.go b/intersight_gosdk/model_equipment_hybrid_drive_slot_response.go index 763234e546..4a706f20b8 100644 --- a/intersight_gosdk/model_equipment_hybrid_drive_slot_response.go +++ b/intersight_gosdk/model_equipment_hybrid_drive_slot_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_identity.go b/intersight_gosdk/model_equipment_identity.go index 90e7fa3012..8d162bc106 100644 --- a/intersight_gosdk/model_equipment_identity.go +++ b/intersight_gosdk/model_equipment_identity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_io_card.go b/intersight_gosdk/model_equipment_io_card.go index e8669e41fe..8499d6f2da 100644 --- a/intersight_gosdk/model_equipment_io_card.go +++ b/intersight_gosdk/model_equipment_io_card.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_io_card_base.go b/intersight_gosdk/model_equipment_io_card_base.go index 85e718baa9..cfe7716622 100644 --- a/intersight_gosdk/model_equipment_io_card_base.go +++ b/intersight_gosdk/model_equipment_io_card_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_io_card_base_relationship.go b/intersight_gosdk/model_equipment_io_card_base_relationship.go index 3143f471ed..46e332f548 100644 --- a/intersight_gosdk/model_equipment_io_card_base_relationship.go +++ b/intersight_gosdk/model_equipment_io_card_base_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_io_card_identity.go b/intersight_gosdk/model_equipment_io_card_identity.go index 0a66501349..7dba955144 100644 --- a/intersight_gosdk/model_equipment_io_card_identity.go +++ b/intersight_gosdk/model_equipment_io_card_identity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_io_card_list.go b/intersight_gosdk/model_equipment_io_card_list.go index 203f2d000b..9eac91e59a 100644 --- a/intersight_gosdk/model_equipment_io_card_list.go +++ b/intersight_gosdk/model_equipment_io_card_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_io_card_operation.go b/intersight_gosdk/model_equipment_io_card_operation.go index 09a09bf8e2..019b093bc6 100644 --- a/intersight_gosdk/model_equipment_io_card_operation.go +++ b/intersight_gosdk/model_equipment_io_card_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_io_card_operation_list.go b/intersight_gosdk/model_equipment_io_card_operation_list.go index 95c5748352..045fcb865e 100644 --- a/intersight_gosdk/model_equipment_io_card_operation_list.go +++ b/intersight_gosdk/model_equipment_io_card_operation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_io_card_operation_response.go b/intersight_gosdk/model_equipment_io_card_operation_response.go index 83fe7f82da..0bc9963640 100644 --- a/intersight_gosdk/model_equipment_io_card_operation_response.go +++ b/intersight_gosdk/model_equipment_io_card_operation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_io_card_operation_status.go b/intersight_gosdk/model_equipment_io_card_operation_status.go index 8c81a58597..3d87d145ad 100644 --- a/intersight_gosdk/model_equipment_io_card_operation_status.go +++ b/intersight_gosdk/model_equipment_io_card_operation_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_io_card_relationship.go b/intersight_gosdk/model_equipment_io_card_relationship.go index 63c9bcdb39..c52f6859ad 100644 --- a/intersight_gosdk/model_equipment_io_card_relationship.go +++ b/intersight_gosdk/model_equipment_io_card_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_io_card_response.go b/intersight_gosdk/model_equipment_io_card_response.go index 11c1e9bc9f..531e96ed7e 100644 --- a/intersight_gosdk/model_equipment_io_card_response.go +++ b/intersight_gosdk/model_equipment_io_card_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_io_expander.go b/intersight_gosdk/model_equipment_io_expander.go index 0766fb0a61..6ec0e48400 100644 --- a/intersight_gosdk/model_equipment_io_expander.go +++ b/intersight_gosdk/model_equipment_io_expander.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_io_expander_list.go b/intersight_gosdk/model_equipment_io_expander_list.go index d464dadf19..07a1838ba9 100644 --- a/intersight_gosdk/model_equipment_io_expander_list.go +++ b/intersight_gosdk/model_equipment_io_expander_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_io_expander_relationship.go b/intersight_gosdk/model_equipment_io_expander_relationship.go index ffeed9ebb4..73d7852cdc 100644 --- a/intersight_gosdk/model_equipment_io_expander_relationship.go +++ b/intersight_gosdk/model_equipment_io_expander_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_io_expander_response.go b/intersight_gosdk/model_equipment_io_expander_response.go index 99809e5da4..f953029282 100644 --- a/intersight_gosdk/model_equipment_io_expander_response.go +++ b/intersight_gosdk/model_equipment_io_expander_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_locator_led.go b/intersight_gosdk/model_equipment_locator_led.go index 3593f0b9b8..5e9c47e0d6 100644 --- a/intersight_gosdk/model_equipment_locator_led.go +++ b/intersight_gosdk/model_equipment_locator_led.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_locator_led_list.go b/intersight_gosdk/model_equipment_locator_led_list.go index af98222981..77670b4aa4 100644 --- a/intersight_gosdk/model_equipment_locator_led_list.go +++ b/intersight_gosdk/model_equipment_locator_led_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_locator_led_relationship.go b/intersight_gosdk/model_equipment_locator_led_relationship.go index 1bd602b03c..7142fc9275 100644 --- a/intersight_gosdk/model_equipment_locator_led_relationship.go +++ b/intersight_gosdk/model_equipment_locator_led_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_locator_led_response.go b/intersight_gosdk/model_equipment_locator_led_response.go index c6b2ae007f..768659695e 100644 --- a/intersight_gosdk/model_equipment_locator_led_response.go +++ b/intersight_gosdk/model_equipment_locator_led_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_log_download.go b/intersight_gosdk/model_equipment_log_download.go index 526ce19cbc..4fdeff3f18 100644 --- a/intersight_gosdk/model_equipment_log_download.go +++ b/intersight_gosdk/model_equipment_log_download.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_log_download_list.go b/intersight_gosdk/model_equipment_log_download_list.go index 94a6f819f3..7daf5f7187 100644 --- a/intersight_gosdk/model_equipment_log_download_list.go +++ b/intersight_gosdk/model_equipment_log_download_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_log_download_response.go b/intersight_gosdk/model_equipment_log_download_response.go index b85cc6992f..9e11f3a65a 100644 --- a/intersight_gosdk/model_equipment_log_download_response.go +++ b/intersight_gosdk/model_equipment_log_download_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_physical_identity.go b/intersight_gosdk/model_equipment_physical_identity.go index 3a123e10c5..38c158e25e 100644 --- a/intersight_gosdk/model_equipment_physical_identity.go +++ b/intersight_gosdk/model_equipment_physical_identity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_physical_identity_relationship.go b/intersight_gosdk/model_equipment_physical_identity_relationship.go index 6c5e6ceebd..4b6e28e909 100644 --- a/intersight_gosdk/model_equipment_physical_identity_relationship.go +++ b/intersight_gosdk/model_equipment_physical_identity_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_psu.go b/intersight_gosdk/model_equipment_psu.go index 6f4bb4ba4a..e9f26608fc 100644 --- a/intersight_gosdk/model_equipment_psu.go +++ b/intersight_gosdk/model_equipment_psu.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_psu_control.go b/intersight_gosdk/model_equipment_psu_control.go index 2adacaf1df..c93252f0b3 100644 --- a/intersight_gosdk/model_equipment_psu_control.go +++ b/intersight_gosdk/model_equipment_psu_control.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_psu_control_list.go b/intersight_gosdk/model_equipment_psu_control_list.go index 11457700cd..228e9b7945 100644 --- a/intersight_gosdk/model_equipment_psu_control_list.go +++ b/intersight_gosdk/model_equipment_psu_control_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_psu_control_relationship.go b/intersight_gosdk/model_equipment_psu_control_relationship.go index 7a5cca9311..dc256b311e 100644 --- a/intersight_gosdk/model_equipment_psu_control_relationship.go +++ b/intersight_gosdk/model_equipment_psu_control_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_psu_control_response.go b/intersight_gosdk/model_equipment_psu_control_response.go index f398e2f329..6e31dff87d 100644 --- a/intersight_gosdk/model_equipment_psu_control_response.go +++ b/intersight_gosdk/model_equipment_psu_control_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_psu_list.go b/intersight_gosdk/model_equipment_psu_list.go index ecac3367e8..3b93b201aa 100644 --- a/intersight_gosdk/model_equipment_psu_list.go +++ b/intersight_gosdk/model_equipment_psu_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_psu_relationship.go b/intersight_gosdk/model_equipment_psu_relationship.go index 0c0ea32d48..75d715417b 100644 --- a/intersight_gosdk/model_equipment_psu_relationship.go +++ b/intersight_gosdk/model_equipment_psu_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_psu_response.go b/intersight_gosdk/model_equipment_psu_response.go index 6205205ecb..69c805f806 100644 --- a/intersight_gosdk/model_equipment_psu_response.go +++ b/intersight_gosdk/model_equipment_psu_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_rack_enclosure.go b/intersight_gosdk/model_equipment_rack_enclosure.go index 729f68a6d1..92ed5d83d7 100644 --- a/intersight_gosdk/model_equipment_rack_enclosure.go +++ b/intersight_gosdk/model_equipment_rack_enclosure.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_rack_enclosure_list.go b/intersight_gosdk/model_equipment_rack_enclosure_list.go index 48ead411d3..294f9b58ff 100644 --- a/intersight_gosdk/model_equipment_rack_enclosure_list.go +++ b/intersight_gosdk/model_equipment_rack_enclosure_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_rack_enclosure_relationship.go b/intersight_gosdk/model_equipment_rack_enclosure_relationship.go index 7bb7e0673f..08464be146 100644 --- a/intersight_gosdk/model_equipment_rack_enclosure_relationship.go +++ b/intersight_gosdk/model_equipment_rack_enclosure_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_rack_enclosure_response.go b/intersight_gosdk/model_equipment_rack_enclosure_response.go index 2e2dbbbe53..c3801f9f5c 100644 --- a/intersight_gosdk/model_equipment_rack_enclosure_response.go +++ b/intersight_gosdk/model_equipment_rack_enclosure_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_rack_enclosure_slot.go b/intersight_gosdk/model_equipment_rack_enclosure_slot.go index 841adee832..0ee79d3383 100644 --- a/intersight_gosdk/model_equipment_rack_enclosure_slot.go +++ b/intersight_gosdk/model_equipment_rack_enclosure_slot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_rack_enclosure_slot_list.go b/intersight_gosdk/model_equipment_rack_enclosure_slot_list.go index b8d9847ebb..995c010f45 100644 --- a/intersight_gosdk/model_equipment_rack_enclosure_slot_list.go +++ b/intersight_gosdk/model_equipment_rack_enclosure_slot_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_rack_enclosure_slot_relationship.go b/intersight_gosdk/model_equipment_rack_enclosure_slot_relationship.go index 665a11459d..c967253c38 100644 --- a/intersight_gosdk/model_equipment_rack_enclosure_slot_relationship.go +++ b/intersight_gosdk/model_equipment_rack_enclosure_slot_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_rack_enclosure_slot_response.go b/intersight_gosdk/model_equipment_rack_enclosure_slot_response.go index 64f00ff6f5..73e013ce31 100644 --- a/intersight_gosdk/model_equipment_rack_enclosure_slot_response.go +++ b/intersight_gosdk/model_equipment_rack_enclosure_slot_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_reset_action.go b/intersight_gosdk/model_equipment_reset_action.go index 4528fd9b4f..36e11e21e7 100644 --- a/intersight_gosdk/model_equipment_reset_action.go +++ b/intersight_gosdk/model_equipment_reset_action.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_sensor.go b/intersight_gosdk/model_equipment_sensor.go index c375268483..89e52cab56 100644 --- a/intersight_gosdk/model_equipment_sensor.go +++ b/intersight_gosdk/model_equipment_sensor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_sensor_list.go b/intersight_gosdk/model_equipment_sensor_list.go index 55f8d635ec..eb6c05fcf8 100644 --- a/intersight_gosdk/model_equipment_sensor_list.go +++ b/intersight_gosdk/model_equipment_sensor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_sensor_relationship.go b/intersight_gosdk/model_equipment_sensor_relationship.go index 2ce4e64710..38e8463141 100644 --- a/intersight_gosdk/model_equipment_sensor_relationship.go +++ b/intersight_gosdk/model_equipment_sensor_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_sensor_response.go b/intersight_gosdk/model_equipment_sensor_response.go index 4016b956e7..2a3422a0bf 100644 --- a/intersight_gosdk/model_equipment_sensor_response.go +++ b/intersight_gosdk/model_equipment_sensor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_shared_io_module.go b/intersight_gosdk/model_equipment_shared_io_module.go index 83775ec7ac..6564d00254 100644 --- a/intersight_gosdk/model_equipment_shared_io_module.go +++ b/intersight_gosdk/model_equipment_shared_io_module.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_shared_io_module_list.go b/intersight_gosdk/model_equipment_shared_io_module_list.go index 0b4142b745..5062d09ae3 100644 --- a/intersight_gosdk/model_equipment_shared_io_module_list.go +++ b/intersight_gosdk/model_equipment_shared_io_module_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_shared_io_module_relationship.go b/intersight_gosdk/model_equipment_shared_io_module_relationship.go index fb389ce2c3..cb62dc3b29 100644 --- a/intersight_gosdk/model_equipment_shared_io_module_relationship.go +++ b/intersight_gosdk/model_equipment_shared_io_module_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_shared_io_module_response.go b/intersight_gosdk/model_equipment_shared_io_module_response.go index c66458bda8..6923d426a1 100644 --- a/intersight_gosdk/model_equipment_shared_io_module_response.go +++ b/intersight_gosdk/model_equipment_shared_io_module_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_slot.go b/intersight_gosdk/model_equipment_slot.go index bfaf64b006..dbc0392561 100644 --- a/intersight_gosdk/model_equipment_slot.go +++ b/intersight_gosdk/model_equipment_slot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_switch_card.go b/intersight_gosdk/model_equipment_switch_card.go index 955533a42d..9b9155808c 100644 --- a/intersight_gosdk/model_equipment_switch_card.go +++ b/intersight_gosdk/model_equipment_switch_card.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_switch_card_list.go b/intersight_gosdk/model_equipment_switch_card_list.go index b74213168f..d04fe03f5e 100644 --- a/intersight_gosdk/model_equipment_switch_card_list.go +++ b/intersight_gosdk/model_equipment_switch_card_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_switch_card_relationship.go b/intersight_gosdk/model_equipment_switch_card_relationship.go index 5def4add37..75dc9faa3c 100644 --- a/intersight_gosdk/model_equipment_switch_card_relationship.go +++ b/intersight_gosdk/model_equipment_switch_card_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_switch_card_response.go b/intersight_gosdk/model_equipment_switch_card_response.go index 18a5bace3b..70ab881ed0 100644 --- a/intersight_gosdk/model_equipment_switch_card_response.go +++ b/intersight_gosdk/model_equipment_switch_card_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_switch_operation.go b/intersight_gosdk/model_equipment_switch_operation.go index 7469fc418a..9bd012fbea 100644 --- a/intersight_gosdk/model_equipment_switch_operation.go +++ b/intersight_gosdk/model_equipment_switch_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_switch_operation_list.go b/intersight_gosdk/model_equipment_switch_operation_list.go index fe89def897..f12b88422c 100644 --- a/intersight_gosdk/model_equipment_switch_operation_list.go +++ b/intersight_gosdk/model_equipment_switch_operation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_switch_operation_response.go b/intersight_gosdk/model_equipment_switch_operation_response.go index a48d609d36..113d7d7128 100644 --- a/intersight_gosdk/model_equipment_switch_operation_response.go +++ b/intersight_gosdk/model_equipment_switch_operation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_system_io_controller.go b/intersight_gosdk/model_equipment_system_io_controller.go index bb83a10118..880f81144a 100644 --- a/intersight_gosdk/model_equipment_system_io_controller.go +++ b/intersight_gosdk/model_equipment_system_io_controller.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_system_io_controller_list.go b/intersight_gosdk/model_equipment_system_io_controller_list.go index ce7d72c2e7..a1b5808d95 100644 --- a/intersight_gosdk/model_equipment_system_io_controller_list.go +++ b/intersight_gosdk/model_equipment_system_io_controller_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_system_io_controller_relationship.go b/intersight_gosdk/model_equipment_system_io_controller_relationship.go index 5ff9b0d215..0988b83032 100644 --- a/intersight_gosdk/model_equipment_system_io_controller_relationship.go +++ b/intersight_gosdk/model_equipment_system_io_controller_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_system_io_controller_response.go b/intersight_gosdk/model_equipment_system_io_controller_response.go index f87efb9444..a6790fa561 100644 --- a/intersight_gosdk/model_equipment_system_io_controller_response.go +++ b/intersight_gosdk/model_equipment_system_io_controller_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_tpm.go b/intersight_gosdk/model_equipment_tpm.go index 6534f07c00..0940e3cc1b 100644 --- a/intersight_gosdk/model_equipment_tpm.go +++ b/intersight_gosdk/model_equipment_tpm.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_tpm_list.go b/intersight_gosdk/model_equipment_tpm_list.go index eee578e788..57b8e9ab08 100644 --- a/intersight_gosdk/model_equipment_tpm_list.go +++ b/intersight_gosdk/model_equipment_tpm_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_tpm_relationship.go b/intersight_gosdk/model_equipment_tpm_relationship.go index d72c9ef39c..9053eb421d 100644 --- a/intersight_gosdk/model_equipment_tpm_relationship.go +++ b/intersight_gosdk/model_equipment_tpm_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_tpm_response.go b/intersight_gosdk/model_equipment_tpm_response.go index 0e7282bf67..776b048e59 100644 --- a/intersight_gosdk/model_equipment_tpm_response.go +++ b/intersight_gosdk/model_equipment_tpm_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_transceiver.go b/intersight_gosdk/model_equipment_transceiver.go index dd13af832d..6419f530ae 100644 --- a/intersight_gosdk/model_equipment_transceiver.go +++ b/intersight_gosdk/model_equipment_transceiver.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_transceiver_list.go b/intersight_gosdk/model_equipment_transceiver_list.go index af3a0f51a0..793bbc40fc 100644 --- a/intersight_gosdk/model_equipment_transceiver_list.go +++ b/intersight_gosdk/model_equipment_transceiver_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_transceiver_response.go b/intersight_gosdk/model_equipment_transceiver_response.go index a454356f58..f1abe5bfa6 100644 --- a/intersight_gosdk/model_equipment_transceiver_response.go +++ b/intersight_gosdk/model_equipment_transceiver_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_error.go b/intersight_gosdk/model_error.go index 64555918cc..7d6eb0253c 100644 --- a/intersight_gosdk/model_error.go +++ b/intersight_gosdk/model_error.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ether_host_port.go b/intersight_gosdk/model_ether_host_port.go index 4a58b4e711..66638153d2 100644 --- a/intersight_gosdk/model_ether_host_port.go +++ b/intersight_gosdk/model_ether_host_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ether_host_port_list.go b/intersight_gosdk/model_ether_host_port_list.go index 016b9293c0..a3b14f8907 100644 --- a/intersight_gosdk/model_ether_host_port_list.go +++ b/intersight_gosdk/model_ether_host_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ether_host_port_relationship.go b/intersight_gosdk/model_ether_host_port_relationship.go index 623795f8b6..4545f7f915 100644 --- a/intersight_gosdk/model_ether_host_port_relationship.go +++ b/intersight_gosdk/model_ether_host_port_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ether_host_port_response.go b/intersight_gosdk/model_ether_host_port_response.go index 7c428b6868..179ab69a68 100644 --- a/intersight_gosdk/model_ether_host_port_response.go +++ b/intersight_gosdk/model_ether_host_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ether_network_port.go b/intersight_gosdk/model_ether_network_port.go index b61602dfa4..33779d31c9 100644 --- a/intersight_gosdk/model_ether_network_port.go +++ b/intersight_gosdk/model_ether_network_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ether_network_port_list.go b/intersight_gosdk/model_ether_network_port_list.go index 3a376da531..2f20d49ba6 100644 --- a/intersight_gosdk/model_ether_network_port_list.go +++ b/intersight_gosdk/model_ether_network_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ether_network_port_relationship.go b/intersight_gosdk/model_ether_network_port_relationship.go index c441df1eec..d0a65def20 100644 --- a/intersight_gosdk/model_ether_network_port_relationship.go +++ b/intersight_gosdk/model_ether_network_port_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ether_network_port_response.go b/intersight_gosdk/model_ether_network_port_response.go index 23223156c0..313d092dd4 100644 --- a/intersight_gosdk/model_ether_network_port_response.go +++ b/intersight_gosdk/model_ether_network_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ether_physical_port.go b/intersight_gosdk/model_ether_physical_port.go index 33d9c8edd0..828eaab7a3 100644 --- a/intersight_gosdk/model_ether_physical_port.go +++ b/intersight_gosdk/model_ether_physical_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ether_physical_port_base.go b/intersight_gosdk/model_ether_physical_port_base.go index 229f74038a..20ad9e056c 100644 --- a/intersight_gosdk/model_ether_physical_port_base.go +++ b/intersight_gosdk/model_ether_physical_port_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ether_physical_port_base_relationship.go b/intersight_gosdk/model_ether_physical_port_base_relationship.go index 396b0ce31d..3c466e4ce4 100644 --- a/intersight_gosdk/model_ether_physical_port_base_relationship.go +++ b/intersight_gosdk/model_ether_physical_port_base_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ether_physical_port_list.go b/intersight_gosdk/model_ether_physical_port_list.go index 1794612dc6..7d27eb6048 100644 --- a/intersight_gosdk/model_ether_physical_port_list.go +++ b/intersight_gosdk/model_ether_physical_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ether_physical_port_relationship.go b/intersight_gosdk/model_ether_physical_port_relationship.go index 8dc6e8cb37..248fe47a11 100644 --- a/intersight_gosdk/model_ether_physical_port_relationship.go +++ b/intersight_gosdk/model_ether_physical_port_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ether_physical_port_response.go b/intersight_gosdk/model_ether_physical_port_response.go index 9cc2e19815..101f32e415 100644 --- a/intersight_gosdk/model_ether_physical_port_response.go +++ b/intersight_gosdk/model_ether_physical_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ether_port_channel.go b/intersight_gosdk/model_ether_port_channel.go index 948102af20..ce5b068854 100644 --- a/intersight_gosdk/model_ether_port_channel.go +++ b/intersight_gosdk/model_ether_port_channel.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ether_port_channel_list.go b/intersight_gosdk/model_ether_port_channel_list.go index 2868ac2daa..352e6539a1 100644 --- a/intersight_gosdk/model_ether_port_channel_list.go +++ b/intersight_gosdk/model_ether_port_channel_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ether_port_channel_relationship.go b/intersight_gosdk/model_ether_port_channel_relationship.go index 83f1b8c3a6..93748907d2 100644 --- a/intersight_gosdk/model_ether_port_channel_relationship.go +++ b/intersight_gosdk/model_ether_port_channel_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ether_port_channel_response.go b/intersight_gosdk/model_ether_port_channel_response.go index e4bf200a50..f5aa80e491 100644 --- a/intersight_gosdk/model_ether_port_channel_response.go +++ b/intersight_gosdk/model_ether_port_channel_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_externalsite_authorization.go b/intersight_gosdk/model_externalsite_authorization.go index ed7c70bf87..4848350bdd 100644 --- a/intersight_gosdk/model_externalsite_authorization.go +++ b/intersight_gosdk/model_externalsite_authorization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_externalsite_authorization_list.go b/intersight_gosdk/model_externalsite_authorization_list.go index b77060b1d5..4ff86b3f8b 100644 --- a/intersight_gosdk/model_externalsite_authorization_list.go +++ b/intersight_gosdk/model_externalsite_authorization_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_externalsite_authorization_response.go b/intersight_gosdk/model_externalsite_authorization_response.go index 8e4de542c9..bb5d65cba8 100644 --- a/intersight_gosdk/model_externalsite_authorization_response.go +++ b/intersight_gosdk/model_externalsite_authorization_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_abstract_interface_role.go b/intersight_gosdk/model_fabric_abstract_interface_role.go index c26aca4f51..ba1e9a0444 100644 --- a/intersight_gosdk/model_fabric_abstract_interface_role.go +++ b/intersight_gosdk/model_fabric_abstract_interface_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_abstract_interface_role_relationship.go b/intersight_gosdk/model_fabric_abstract_interface_role_relationship.go index 5f9b4e3719..d01aa4b6e2 100644 --- a/intersight_gosdk/model_fabric_abstract_interface_role_relationship.go +++ b/intersight_gosdk/model_fabric_abstract_interface_role_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_abstract_span_dest_port.go b/intersight_gosdk/model_fabric_abstract_span_dest_port.go index 26c81b088a..7e389c3c55 100644 --- a/intersight_gosdk/model_fabric_abstract_span_dest_port.go +++ b/intersight_gosdk/model_fabric_abstract_span_dest_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_abstract_span_dest_port_relationship.go b/intersight_gosdk/model_fabric_abstract_span_dest_port_relationship.go index 2cad32a4c9..cefaf44431 100644 --- a/intersight_gosdk/model_fabric_abstract_span_dest_port_relationship.go +++ b/intersight_gosdk/model_fabric_abstract_span_dest_port_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_abstract_span_session.go b/intersight_gosdk/model_fabric_abstract_span_session.go index 36b8a55646..9f2bafe744 100644 --- a/intersight_gosdk/model_fabric_abstract_span_session.go +++ b/intersight_gosdk/model_fabric_abstract_span_session.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type FabricAbstractSpanSession struct { // The configured state of SPAN configuration. If the configuration fails to deploy to the Fabric Interconnect, it can be redeployed by toggling the admin state. * `None` - Nil value when no action has been triggered by the user. * `Applied` - User configured settings are in applied state. * `Applying` - User settings are being applied on the target server. * `Failed` - User configured settings could not be applied. ConfigState *string `json:"ConfigState,omitempty"` // Name of the SPAN session. The name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // Operational state of the SPAN session. * `Unknown` - SPAN session operational state is Unknown. * `Up` - SPAN session operational state is Up. * `Down` - SPAN session operational state is Down. * `Error` - SPAN session operational state is Error. OperState *string `json:"OperState,omitempty"` // Operational state reason of the SPAN session. * `Unknown` - Unknown operational state. * `Active` - Active and operational SPAN session. * `NoHardwareResource` - No hardware resources available. * `NoOperationalSrcDst` - No operational SPAN source or destination. * `GenericError` - Generic operational error. * `NoSourcesConfigured` - No source interfaces configured. * `NoDestinationConfigured` - No destination port configured. * `NoSourceDestinationConfigured` - No source or destination interface configured. * `SessionAdminShut` - Session is administratively disabled. * `WrongDestinationMode` - Wrong Destination mode configured. * `WrongSourceMode` - Wrong Source mode configured. * `TunnelMisconfDown` - Tunnel Misconfigured or Down. * `NoFlowIdSpecified` - No Flow ID specified for ERSPAN. @@ -588,7 +588,7 @@ func (o *FabricAbstractSpanSession) UnmarshalJSON(data []byte) (err error) { // The configured state of SPAN configuration. If the configuration fails to deploy to the Fabric Interconnect, it can be redeployed by toggling the admin state. * `None` - Nil value when no action has been triggered by the user. * `Applied` - User configured settings are in applied state. * `Applying` - User settings are being applied on the target server. * `Failed` - User configured settings could not be applied. ConfigState *string `json:"ConfigState,omitempty"` // Name of the SPAN session. The name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // Operational state of the SPAN session. * `Unknown` - SPAN session operational state is Unknown. * `Up` - SPAN session operational state is Up. * `Down` - SPAN session operational state is Down. * `Error` - SPAN session operational state is Error. OperState *string `json:"OperState,omitempty"` // Operational state reason of the SPAN session. * `Unknown` - Unknown operational state. * `Active` - Active and operational SPAN session. * `NoHardwareResource` - No hardware resources available. * `NoOperationalSrcDst` - No operational SPAN source or destination. * `GenericError` - Generic operational error. * `NoSourcesConfigured` - No source interfaces configured. * `NoDestinationConfigured` - No destination port configured. * `NoSourceDestinationConfigured` - No source or destination interface configured. * `SessionAdminShut` - Session is administratively disabled. * `WrongDestinationMode` - Wrong Destination mode configured. * `WrongSourceMode` - Wrong Source mode configured. * `TunnelMisconfDown` - Tunnel Misconfigured or Down. * `NoFlowIdSpecified` - No Flow ID specified for ERSPAN. diff --git a/intersight_gosdk/model_fabric_abstract_span_source.go b/intersight_gosdk/model_fabric_abstract_span_source.go index 813ce6464b..b5a9ce61c0 100644 --- a/intersight_gosdk/model_fabric_abstract_span_source.go +++ b/intersight_gosdk/model_fabric_abstract_span_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_abstract_span_source_port.go b/intersight_gosdk/model_fabric_abstract_span_source_port.go index 7f0526a859..734c36d3d5 100644 --- a/intersight_gosdk/model_fabric_abstract_span_source_port.go +++ b/intersight_gosdk/model_fabric_abstract_span_source_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_abstract_span_source_port_channel.go b/intersight_gosdk/model_fabric_abstract_span_source_port_channel.go index c8263f7fe4..8b4187a2c6 100644 --- a/intersight_gosdk/model_fabric_abstract_span_source_port_channel.go +++ b/intersight_gosdk/model_fabric_abstract_span_source_port_channel.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_abstract_span_source_port_channel_relationship.go b/intersight_gosdk/model_fabric_abstract_span_source_port_channel_relationship.go index 2317d84c33..6a3520694e 100644 --- a/intersight_gosdk/model_fabric_abstract_span_source_port_channel_relationship.go +++ b/intersight_gosdk/model_fabric_abstract_span_source_port_channel_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_abstract_span_source_port_relationship.go b/intersight_gosdk/model_fabric_abstract_span_source_port_relationship.go index 08932f0424..c6f44e0763 100644 --- a/intersight_gosdk/model_fabric_abstract_span_source_port_relationship.go +++ b/intersight_gosdk/model_fabric_abstract_span_source_port_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_abstract_span_source_virtual_if.go b/intersight_gosdk/model_fabric_abstract_span_source_virtual_if.go index 9d523359a9..3e297647c2 100644 --- a/intersight_gosdk/model_fabric_abstract_span_source_virtual_if.go +++ b/intersight_gosdk/model_fabric_abstract_span_source_virtual_if.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_abstract_span_source_virtual_if_relationship.go b/intersight_gosdk/model_fabric_abstract_span_source_virtual_if_relationship.go index 7cd6997e82..16f50e0340 100644 --- a/intersight_gosdk/model_fabric_abstract_span_source_virtual_if_relationship.go +++ b/intersight_gosdk/model_fabric_abstract_span_source_virtual_if_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_appliance_pc_role.go b/intersight_gosdk/model_fabric_appliance_pc_role.go index 8074817206..e63ab8da43 100644 --- a/intersight_gosdk/model_fabric_appliance_pc_role.go +++ b/intersight_gosdk/model_fabric_appliance_pc_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_appliance_pc_role_list.go b/intersight_gosdk/model_fabric_appliance_pc_role_list.go index 65c06a9a07..d0581f242a 100644 --- a/intersight_gosdk/model_fabric_appliance_pc_role_list.go +++ b/intersight_gosdk/model_fabric_appliance_pc_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_appliance_pc_role_response.go b/intersight_gosdk/model_fabric_appliance_pc_role_response.go index d9499ddd6d..3c5cb4b3d2 100644 --- a/intersight_gosdk/model_fabric_appliance_pc_role_response.go +++ b/intersight_gosdk/model_fabric_appliance_pc_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_appliance_role.go b/intersight_gosdk/model_fabric_appliance_role.go index a2cdb87c7d..2796895376 100644 --- a/intersight_gosdk/model_fabric_appliance_role.go +++ b/intersight_gosdk/model_fabric_appliance_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_appliance_role_list.go b/intersight_gosdk/model_fabric_appliance_role_list.go index 03ebd9053e..d9a1e4c826 100644 --- a/intersight_gosdk/model_fabric_appliance_role_list.go +++ b/intersight_gosdk/model_fabric_appliance_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_appliance_role_response.go b/intersight_gosdk/model_fabric_appliance_role_response.go index f65e16bd80..e89a99efb3 100644 --- a/intersight_gosdk/model_fabric_appliance_role_response.go +++ b/intersight_gosdk/model_fabric_appliance_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_base_cluster_profile.go b/intersight_gosdk/model_fabric_base_cluster_profile.go index fdbfd732a3..0857fc9332 100644 --- a/intersight_gosdk/model_fabric_base_cluster_profile.go +++ b/intersight_gosdk/model_fabric_base_cluster_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_base_switch_profile.go b/intersight_gosdk/model_fabric_base_switch_profile.go index 48107ebc1e..08b528fb95 100644 --- a/intersight_gosdk/model_fabric_base_switch_profile.go +++ b/intersight_gosdk/model_fabric_base_switch_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_base_switch_profile_relationship.go b/intersight_gosdk/model_fabric_base_switch_profile_relationship.go index 1742f49526..718cd9ba2c 100644 --- a/intersight_gosdk/model_fabric_base_switch_profile_relationship.go +++ b/intersight_gosdk/model_fabric_base_switch_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_cluster_assignment.go b/intersight_gosdk/model_fabric_cluster_assignment.go index 22da5a4bcf..d8e1175127 100644 --- a/intersight_gosdk/model_fabric_cluster_assignment.go +++ b/intersight_gosdk/model_fabric_cluster_assignment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,7 +30,7 @@ type FabricClusterAssignment struct { ObjectType string `json:"ObjectType"` NetworkElement *MoMoRef `json:"NetworkElement,omitempty"` // Name of the source SwitchProfile or SwitchProfileTemplate whose clone has to be assigned to the network element mentioned in NetworkElement property under ClusterAssignments. - SourceSwitchProfileOrTemplateName *string `json:"SourceSwitchProfileOrTemplateName,omitempty"` + SourceSwitchProfileOrTemplateName *string `json:"SourceSwitchProfileOrTemplateName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_.-]{1,64}$"` AdditionalProperties map[string]interface{} } @@ -270,7 +270,7 @@ func (o *FabricClusterAssignment) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` NetworkElement *MoMoRef `json:"NetworkElement,omitempty"` // Name of the source SwitchProfile or SwitchProfileTemplate whose clone has to be assigned to the network element mentioned in NetworkElement property under ClusterAssignments. - SourceSwitchProfileOrTemplateName *string `json:"SourceSwitchProfileOrTemplateName,omitempty"` + SourceSwitchProfileOrTemplateName *string `json:"SourceSwitchProfileOrTemplateName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_.-]{1,64}$"` } varFabricClusterAssignmentWithoutEmbeddedStruct := FabricClusterAssignmentWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_fabric_config_change_detail.go b/intersight_gosdk/model_fabric_config_change_detail.go index 09c2468eab..8367aed950 100644 --- a/intersight_gosdk/model_fabric_config_change_detail.go +++ b/intersight_gosdk/model_fabric_config_change_detail.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_config_change_detail_list.go b/intersight_gosdk/model_fabric_config_change_detail_list.go index 0384dd3b05..8a6a4c92e5 100644 --- a/intersight_gosdk/model_fabric_config_change_detail_list.go +++ b/intersight_gosdk/model_fabric_config_change_detail_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_config_change_detail_relationship.go b/intersight_gosdk/model_fabric_config_change_detail_relationship.go index 03530938dd..432d5a12e0 100644 --- a/intersight_gosdk/model_fabric_config_change_detail_relationship.go +++ b/intersight_gosdk/model_fabric_config_change_detail_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_config_change_detail_response.go b/intersight_gosdk/model_fabric_config_change_detail_response.go index d22ca9b70b..b11bcac47e 100644 --- a/intersight_gosdk/model_fabric_config_change_detail_response.go +++ b/intersight_gosdk/model_fabric_config_change_detail_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_config_result.go b/intersight_gosdk/model_fabric_config_result.go index 0b56afba08..c0c081876d 100644 --- a/intersight_gosdk/model_fabric_config_result.go +++ b/intersight_gosdk/model_fabric_config_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_config_result_entry.go b/intersight_gosdk/model_fabric_config_result_entry.go index 5c898dd012..078a34250e 100644 --- a/intersight_gosdk/model_fabric_config_result_entry.go +++ b/intersight_gosdk/model_fabric_config_result_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_config_result_entry_list.go b/intersight_gosdk/model_fabric_config_result_entry_list.go index 36c66434a2..4be126fffd 100644 --- a/intersight_gosdk/model_fabric_config_result_entry_list.go +++ b/intersight_gosdk/model_fabric_config_result_entry_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_config_result_entry_relationship.go b/intersight_gosdk/model_fabric_config_result_entry_relationship.go index 0051d810a2..384236f19a 100644 --- a/intersight_gosdk/model_fabric_config_result_entry_relationship.go +++ b/intersight_gosdk/model_fabric_config_result_entry_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_config_result_entry_response.go b/intersight_gosdk/model_fabric_config_result_entry_response.go index 6c8fdbfe0b..a05bb6b620 100644 --- a/intersight_gosdk/model_fabric_config_result_entry_response.go +++ b/intersight_gosdk/model_fabric_config_result_entry_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_config_result_list.go b/intersight_gosdk/model_fabric_config_result_list.go index 26b582a8b7..0d9d73a21f 100644 --- a/intersight_gosdk/model_fabric_config_result_list.go +++ b/intersight_gosdk/model_fabric_config_result_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_config_result_relationship.go b/intersight_gosdk/model_fabric_config_result_relationship.go index e178e64603..9faeb9fad0 100644 --- a/intersight_gosdk/model_fabric_config_result_relationship.go +++ b/intersight_gosdk/model_fabric_config_result_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_config_result_response.go b/intersight_gosdk/model_fabric_config_result_response.go index e3d0cdcb37..3db7b332d4 100644 --- a/intersight_gosdk/model_fabric_config_result_response.go +++ b/intersight_gosdk/model_fabric_config_result_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_element_identity.go b/intersight_gosdk/model_fabric_element_identity.go index 6762f9164e..12449547fa 100644 --- a/intersight_gosdk/model_fabric_element_identity.go +++ b/intersight_gosdk/model_fabric_element_identity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_element_identity_list.go b/intersight_gosdk/model_fabric_element_identity_list.go index 67ecfd2d4d..fb6a53b975 100644 --- a/intersight_gosdk/model_fabric_element_identity_list.go +++ b/intersight_gosdk/model_fabric_element_identity_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_element_identity_response.go b/intersight_gosdk/model_fabric_element_identity_response.go index 295c3f941e..680e505fdf 100644 --- a/intersight_gosdk/model_fabric_element_identity_response.go +++ b/intersight_gosdk/model_fabric_element_identity_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_estimate_impact.go b/intersight_gosdk/model_fabric_estimate_impact.go index 5b71146d4e..2cc8a5d444 100644 --- a/intersight_gosdk/model_fabric_estimate_impact.go +++ b/intersight_gosdk/model_fabric_estimate_impact.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_eth_network_control_policy.go b/intersight_gosdk/model_fabric_eth_network_control_policy.go index e08e2694ea..b50a350136 100644 --- a/intersight_gosdk/model_fabric_eth_network_control_policy.go +++ b/intersight_gosdk/model_fabric_eth_network_control_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_eth_network_control_policy_inventory.go b/intersight_gosdk/model_fabric_eth_network_control_policy_inventory.go index 892de9aeb4..817e12668d 100644 --- a/intersight_gosdk/model_fabric_eth_network_control_policy_inventory.go +++ b/intersight_gosdk/model_fabric_eth_network_control_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_eth_network_control_policy_inventory_list.go b/intersight_gosdk/model_fabric_eth_network_control_policy_inventory_list.go index 5ff51f41b8..0e69c2cd0d 100644 --- a/intersight_gosdk/model_fabric_eth_network_control_policy_inventory_list.go +++ b/intersight_gosdk/model_fabric_eth_network_control_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_eth_network_control_policy_inventory_relationship.go b/intersight_gosdk/model_fabric_eth_network_control_policy_inventory_relationship.go index a9f2b220c1..c786fa16c3 100644 --- a/intersight_gosdk/model_fabric_eth_network_control_policy_inventory_relationship.go +++ b/intersight_gosdk/model_fabric_eth_network_control_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_eth_network_control_policy_inventory_response.go b/intersight_gosdk/model_fabric_eth_network_control_policy_inventory_response.go index f63f84ca14..ca5cf2e754 100644 --- a/intersight_gosdk/model_fabric_eth_network_control_policy_inventory_response.go +++ b/intersight_gosdk/model_fabric_eth_network_control_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_eth_network_control_policy_list.go b/intersight_gosdk/model_fabric_eth_network_control_policy_list.go index e077a86b31..78f835926f 100644 --- a/intersight_gosdk/model_fabric_eth_network_control_policy_list.go +++ b/intersight_gosdk/model_fabric_eth_network_control_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_eth_network_control_policy_relationship.go b/intersight_gosdk/model_fabric_eth_network_control_policy_relationship.go index 574dfd44f0..7a95c87f2c 100644 --- a/intersight_gosdk/model_fabric_eth_network_control_policy_relationship.go +++ b/intersight_gosdk/model_fabric_eth_network_control_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_eth_network_control_policy_response.go b/intersight_gosdk/model_fabric_eth_network_control_policy_response.go index 4aebb0e291..ef8da42642 100644 --- a/intersight_gosdk/model_fabric_eth_network_control_policy_response.go +++ b/intersight_gosdk/model_fabric_eth_network_control_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_eth_network_group_policy.go b/intersight_gosdk/model_fabric_eth_network_group_policy.go index be247ef202..04d5d08ee2 100644 --- a/intersight_gosdk/model_fabric_eth_network_group_policy.go +++ b/intersight_gosdk/model_fabric_eth_network_group_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_eth_network_group_policy_inventory.go b/intersight_gosdk/model_fabric_eth_network_group_policy_inventory.go index 29374f48f7..4b8d7fb46e 100644 --- a/intersight_gosdk/model_fabric_eth_network_group_policy_inventory.go +++ b/intersight_gosdk/model_fabric_eth_network_group_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_eth_network_group_policy_inventory_list.go b/intersight_gosdk/model_fabric_eth_network_group_policy_inventory_list.go index 9fb0b266a8..9fa9e86245 100644 --- a/intersight_gosdk/model_fabric_eth_network_group_policy_inventory_list.go +++ b/intersight_gosdk/model_fabric_eth_network_group_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_eth_network_group_policy_inventory_relationship.go b/intersight_gosdk/model_fabric_eth_network_group_policy_inventory_relationship.go index fc0d35ee76..8818343407 100644 --- a/intersight_gosdk/model_fabric_eth_network_group_policy_inventory_relationship.go +++ b/intersight_gosdk/model_fabric_eth_network_group_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_eth_network_group_policy_inventory_response.go b/intersight_gosdk/model_fabric_eth_network_group_policy_inventory_response.go index 29c6a1e9c8..76b6d9c23a 100644 --- a/intersight_gosdk/model_fabric_eth_network_group_policy_inventory_response.go +++ b/intersight_gosdk/model_fabric_eth_network_group_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_eth_network_group_policy_list.go b/intersight_gosdk/model_fabric_eth_network_group_policy_list.go index 8740501856..45e51c8e26 100644 --- a/intersight_gosdk/model_fabric_eth_network_group_policy_list.go +++ b/intersight_gosdk/model_fabric_eth_network_group_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_eth_network_group_policy_relationship.go b/intersight_gosdk/model_fabric_eth_network_group_policy_relationship.go index c4a4336126..c06d7bc016 100644 --- a/intersight_gosdk/model_fabric_eth_network_group_policy_relationship.go +++ b/intersight_gosdk/model_fabric_eth_network_group_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_eth_network_group_policy_response.go b/intersight_gosdk/model_fabric_eth_network_group_policy_response.go index 3330a3d982..bda94ea028 100644 --- a/intersight_gosdk/model_fabric_eth_network_group_policy_response.go +++ b/intersight_gosdk/model_fabric_eth_network_group_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_eth_network_policy.go b/intersight_gosdk/model_fabric_eth_network_policy.go index 5fd9503180..c4aab72679 100644 --- a/intersight_gosdk/model_fabric_eth_network_policy.go +++ b/intersight_gosdk/model_fabric_eth_network_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_eth_network_policy_list.go b/intersight_gosdk/model_fabric_eth_network_policy_list.go index 2707e6dc0a..6d6df7118b 100644 --- a/intersight_gosdk/model_fabric_eth_network_policy_list.go +++ b/intersight_gosdk/model_fabric_eth_network_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_eth_network_policy_relationship.go b/intersight_gosdk/model_fabric_eth_network_policy_relationship.go index 58719c0092..c19c93f3a2 100644 --- a/intersight_gosdk/model_fabric_eth_network_policy_relationship.go +++ b/intersight_gosdk/model_fabric_eth_network_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_eth_network_policy_response.go b/intersight_gosdk/model_fabric_eth_network_policy_response.go index 88a378d05e..015ff9f785 100644 --- a/intersight_gosdk/model_fabric_eth_network_policy_response.go +++ b/intersight_gosdk/model_fabric_eth_network_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_fc_network_policy.go b/intersight_gosdk/model_fabric_fc_network_policy.go index 9eaafd252b..161e34d35e 100644 --- a/intersight_gosdk/model_fabric_fc_network_policy.go +++ b/intersight_gosdk/model_fabric_fc_network_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_fc_network_policy_list.go b/intersight_gosdk/model_fabric_fc_network_policy_list.go index 9a5e9c875e..1589fa1e1c 100644 --- a/intersight_gosdk/model_fabric_fc_network_policy_list.go +++ b/intersight_gosdk/model_fabric_fc_network_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_fc_network_policy_relationship.go b/intersight_gosdk/model_fabric_fc_network_policy_relationship.go index 45b999f4b4..9e6d71bc0c 100644 --- a/intersight_gosdk/model_fabric_fc_network_policy_relationship.go +++ b/intersight_gosdk/model_fabric_fc_network_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_fc_network_policy_response.go b/intersight_gosdk/model_fabric_fc_network_policy_response.go index 3ec1dc6aba..287a73699f 100644 --- a/intersight_gosdk/model_fabric_fc_network_policy_response.go +++ b/intersight_gosdk/model_fabric_fc_network_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_fc_storage_role.go b/intersight_gosdk/model_fabric_fc_storage_role.go index b5510af835..b5bd701d8e 100644 --- a/intersight_gosdk/model_fabric_fc_storage_role.go +++ b/intersight_gosdk/model_fabric_fc_storage_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_fc_storage_role_list.go b/intersight_gosdk/model_fabric_fc_storage_role_list.go index 64214fa7ac..92c9e61fc1 100644 --- a/intersight_gosdk/model_fabric_fc_storage_role_list.go +++ b/intersight_gosdk/model_fabric_fc_storage_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_fc_storage_role_response.go b/intersight_gosdk/model_fabric_fc_storage_role_response.go index 276a8d944f..7847573987 100644 --- a/intersight_gosdk/model_fabric_fc_storage_role_response.go +++ b/intersight_gosdk/model_fabric_fc_storage_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_fc_uplink_pc_role.go b/intersight_gosdk/model_fabric_fc_uplink_pc_role.go index 6b969680d2..915d1b315f 100644 --- a/intersight_gosdk/model_fabric_fc_uplink_pc_role.go +++ b/intersight_gosdk/model_fabric_fc_uplink_pc_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_fc_uplink_pc_role_list.go b/intersight_gosdk/model_fabric_fc_uplink_pc_role_list.go index 306568d12a..7081f18de9 100644 --- a/intersight_gosdk/model_fabric_fc_uplink_pc_role_list.go +++ b/intersight_gosdk/model_fabric_fc_uplink_pc_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_fc_uplink_pc_role_response.go b/intersight_gosdk/model_fabric_fc_uplink_pc_role_response.go index 49060e7db1..9b91d19746 100644 --- a/intersight_gosdk/model_fabric_fc_uplink_pc_role_response.go +++ b/intersight_gosdk/model_fabric_fc_uplink_pc_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_fc_uplink_role.go b/intersight_gosdk/model_fabric_fc_uplink_role.go index c987f18af6..807f08efa0 100644 --- a/intersight_gosdk/model_fabric_fc_uplink_role.go +++ b/intersight_gosdk/model_fabric_fc_uplink_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_fc_uplink_role_list.go b/intersight_gosdk/model_fabric_fc_uplink_role_list.go index 5e3bc48497..a6528201d8 100644 --- a/intersight_gosdk/model_fabric_fc_uplink_role_list.go +++ b/intersight_gosdk/model_fabric_fc_uplink_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_fc_uplink_role_response.go b/intersight_gosdk/model_fabric_fc_uplink_role_response.go index 394f74d45e..2c1015a2c0 100644 --- a/intersight_gosdk/model_fabric_fc_uplink_role_response.go +++ b/intersight_gosdk/model_fabric_fc_uplink_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_fc_zone_member.go b/intersight_gosdk/model_fabric_fc_zone_member.go index ac533a87b1..53367149e0 100644 --- a/intersight_gosdk/model_fabric_fc_zone_member.go +++ b/intersight_gosdk/model_fabric_fc_zone_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type FabricFcZoneMember struct { // VSAN with scope defined as Storage in the VSAN policy. VsanId *int64 `json:"VsanId,omitempty"` // WWPN that is a member of the FC zone. - Wwpn *string `json:"Wwpn,omitempty"` + Wwpn *string `json:"Wwpn,omitempty" validate:"regexp=^$|([0-9a-fA-F]{2}:){7}[0-9a-fA-F]{2}$"` AdditionalProperties map[string]interface{} } @@ -354,7 +354,7 @@ func (o *FabricFcZoneMember) UnmarshalJSON(data []byte) (err error) { // VSAN with scope defined as Storage in the VSAN policy. VsanId *int64 `json:"VsanId,omitempty"` // WWPN that is a member of the FC zone. - Wwpn *string `json:"Wwpn,omitempty"` + Wwpn *string `json:"Wwpn,omitempty" validate:"regexp=^$|([0-9a-fA-F]{2}:){7}[0-9a-fA-F]{2}$"` } varFabricFcZoneMemberWithoutEmbeddedStruct := FabricFcZoneMemberWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_fabric_fc_zone_policy.go b/intersight_gosdk/model_fabric_fc_zone_policy.go index b97e2fbbbc..e99caf1713 100644 --- a/intersight_gosdk/model_fabric_fc_zone_policy.go +++ b/intersight_gosdk/model_fabric_fc_zone_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_fc_zone_policy_list.go b/intersight_gosdk/model_fabric_fc_zone_policy_list.go index 6f7a4bbda4..15d1c31c5e 100644 --- a/intersight_gosdk/model_fabric_fc_zone_policy_list.go +++ b/intersight_gosdk/model_fabric_fc_zone_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_fc_zone_policy_relationship.go b/intersight_gosdk/model_fabric_fc_zone_policy_relationship.go index 74de4032ec..8d946c3329 100644 --- a/intersight_gosdk/model_fabric_fc_zone_policy_relationship.go +++ b/intersight_gosdk/model_fabric_fc_zone_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_fc_zone_policy_response.go b/intersight_gosdk/model_fabric_fc_zone_policy_response.go index 08f0d05760..bf700b4573 100644 --- a/intersight_gosdk/model_fabric_fc_zone_policy_response.go +++ b/intersight_gosdk/model_fabric_fc_zone_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_fcoe_uplink_pc_role.go b/intersight_gosdk/model_fabric_fcoe_uplink_pc_role.go index ffdece5390..7b5a50a8af 100644 --- a/intersight_gosdk/model_fabric_fcoe_uplink_pc_role.go +++ b/intersight_gosdk/model_fabric_fcoe_uplink_pc_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_fcoe_uplink_pc_role_list.go b/intersight_gosdk/model_fabric_fcoe_uplink_pc_role_list.go index 10f30503f6..77a3b1b37c 100644 --- a/intersight_gosdk/model_fabric_fcoe_uplink_pc_role_list.go +++ b/intersight_gosdk/model_fabric_fcoe_uplink_pc_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_fcoe_uplink_pc_role_response.go b/intersight_gosdk/model_fabric_fcoe_uplink_pc_role_response.go index 80841b5c3a..600afb0bea 100644 --- a/intersight_gosdk/model_fabric_fcoe_uplink_pc_role_response.go +++ b/intersight_gosdk/model_fabric_fcoe_uplink_pc_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_fcoe_uplink_role.go b/intersight_gosdk/model_fabric_fcoe_uplink_role.go index 1d1f715997..a727597687 100644 --- a/intersight_gosdk/model_fabric_fcoe_uplink_role.go +++ b/intersight_gosdk/model_fabric_fcoe_uplink_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_fcoe_uplink_role_list.go b/intersight_gosdk/model_fabric_fcoe_uplink_role_list.go index 673a8e8b3f..d42d436101 100644 --- a/intersight_gosdk/model_fabric_fcoe_uplink_role_list.go +++ b/intersight_gosdk/model_fabric_fcoe_uplink_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_fcoe_uplink_role_response.go b/intersight_gosdk/model_fabric_fcoe_uplink_role_response.go index b65c7bbbd7..f950fae785 100644 --- a/intersight_gosdk/model_fabric_fcoe_uplink_role_response.go +++ b/intersight_gosdk/model_fabric_fcoe_uplink_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_flow_control_policy.go b/intersight_gosdk/model_fabric_flow_control_policy.go index be51935395..942b469061 100644 --- a/intersight_gosdk/model_fabric_flow_control_policy.go +++ b/intersight_gosdk/model_fabric_flow_control_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_flow_control_policy_list.go b/intersight_gosdk/model_fabric_flow_control_policy_list.go index 8e0e9d9621..eeddd88e4c 100644 --- a/intersight_gosdk/model_fabric_flow_control_policy_list.go +++ b/intersight_gosdk/model_fabric_flow_control_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_flow_control_policy_relationship.go b/intersight_gosdk/model_fabric_flow_control_policy_relationship.go index e58c22ad89..9d29dfbc89 100644 --- a/intersight_gosdk/model_fabric_flow_control_policy_relationship.go +++ b/intersight_gosdk/model_fabric_flow_control_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_flow_control_policy_response.go b/intersight_gosdk/model_fabric_flow_control_policy_response.go index e3e89e98e0..539b86f369 100644 --- a/intersight_gosdk/model_fabric_flow_control_policy_response.go +++ b/intersight_gosdk/model_fabric_flow_control_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_lan_pin_group.go b/intersight_gosdk/model_fabric_lan_pin_group.go index e114eb6a38..63799f7a28 100644 --- a/intersight_gosdk/model_fabric_lan_pin_group.go +++ b/intersight_gosdk/model_fabric_lan_pin_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_lan_pin_group_list.go b/intersight_gosdk/model_fabric_lan_pin_group_list.go index 1fd5808612..6197368cef 100644 --- a/intersight_gosdk/model_fabric_lan_pin_group_list.go +++ b/intersight_gosdk/model_fabric_lan_pin_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_lan_pin_group_response.go b/intersight_gosdk/model_fabric_lan_pin_group_response.go index b0db2fc01b..54f6266f73 100644 --- a/intersight_gosdk/model_fabric_lan_pin_group_response.go +++ b/intersight_gosdk/model_fabric_lan_pin_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_link_aggregation_policy.go b/intersight_gosdk/model_fabric_link_aggregation_policy.go index 4ee2a30c36..c0d58a8305 100644 --- a/intersight_gosdk/model_fabric_link_aggregation_policy.go +++ b/intersight_gosdk/model_fabric_link_aggregation_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_link_aggregation_policy_list.go b/intersight_gosdk/model_fabric_link_aggregation_policy_list.go index b141e69904..2aa5e1d48a 100644 --- a/intersight_gosdk/model_fabric_link_aggregation_policy_list.go +++ b/intersight_gosdk/model_fabric_link_aggregation_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_link_aggregation_policy_relationship.go b/intersight_gosdk/model_fabric_link_aggregation_policy_relationship.go index 12312c23c9..ff4e310492 100644 --- a/intersight_gosdk/model_fabric_link_aggregation_policy_relationship.go +++ b/intersight_gosdk/model_fabric_link_aggregation_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_link_aggregation_policy_response.go b/intersight_gosdk/model_fabric_link_aggregation_policy_response.go index 201ccebce6..915e1a8a28 100644 --- a/intersight_gosdk/model_fabric_link_aggregation_policy_response.go +++ b/intersight_gosdk/model_fabric_link_aggregation_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_link_control_policy.go b/intersight_gosdk/model_fabric_link_control_policy.go index 423b6cba61..ecdd677ef2 100644 --- a/intersight_gosdk/model_fabric_link_control_policy.go +++ b/intersight_gosdk/model_fabric_link_control_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_link_control_policy_list.go b/intersight_gosdk/model_fabric_link_control_policy_list.go index 007812c5ba..401637f94b 100644 --- a/intersight_gosdk/model_fabric_link_control_policy_list.go +++ b/intersight_gosdk/model_fabric_link_control_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_link_control_policy_relationship.go b/intersight_gosdk/model_fabric_link_control_policy_relationship.go index 5546281967..7d39cc5e2e 100644 --- a/intersight_gosdk/model_fabric_link_control_policy_relationship.go +++ b/intersight_gosdk/model_fabric_link_control_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_link_control_policy_response.go b/intersight_gosdk/model_fabric_link_control_policy_response.go index 371efb5e79..cfba749f3a 100644 --- a/intersight_gosdk/model_fabric_link_control_policy_response.go +++ b/intersight_gosdk/model_fabric_link_control_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_lldp_settings.go b/intersight_gosdk/model_fabric_lldp_settings.go index 28cb50b3fb..832cd39fc3 100644 --- a/intersight_gosdk/model_fabric_lldp_settings.go +++ b/intersight_gosdk/model_fabric_lldp_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_mac_aging_settings.go b/intersight_gosdk/model_fabric_mac_aging_settings.go index d0080d2fd5..dda2f5cb99 100644 --- a/intersight_gosdk/model_fabric_mac_aging_settings.go +++ b/intersight_gosdk/model_fabric_mac_aging_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_multicast_policy.go b/intersight_gosdk/model_fabric_multicast_policy.go index 6f1404fbbc..441e8cab1a 100644 --- a/intersight_gosdk/model_fabric_multicast_policy.go +++ b/intersight_gosdk/model_fabric_multicast_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type FabricMulticastPolicy struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Used to define the IGMP Querier IP address. - QuerierIpAddress *string `json:"QuerierIpAddress,omitempty"` + QuerierIpAddress *string `json:"QuerierIpAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Used to define the IGMP Querier IP address of the peer switch. - QuerierIpAddressPeer *string `json:"QuerierIpAddressPeer,omitempty"` + QuerierIpAddressPeer *string `json:"QuerierIpAddressPeer,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Administrative state of the IGMP Querier for this VLAN. * `Disabled` - Admin configured Disabled State. * `Enabled` - Admin configured Enabled State. QuerierState *string `json:"QuerierState,omitempty"` // Administrative state of the IGMP Snooping for this VLAN. * `Enabled` - Admin configured Enabled State. * `Disabled` - Admin configured Disabled State. @@ -440,9 +440,9 @@ func (o *FabricMulticastPolicy) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Used to define the IGMP Querier IP address. - QuerierIpAddress *string `json:"QuerierIpAddress,omitempty"` + QuerierIpAddress *string `json:"QuerierIpAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Used to define the IGMP Querier IP address of the peer switch. - QuerierIpAddressPeer *string `json:"QuerierIpAddressPeer,omitempty"` + QuerierIpAddressPeer *string `json:"QuerierIpAddressPeer,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Administrative state of the IGMP Querier for this VLAN. * `Disabled` - Admin configured Disabled State. * `Enabled` - Admin configured Enabled State. QuerierState *string `json:"QuerierState,omitempty"` // Administrative state of the IGMP Snooping for this VLAN. * `Enabled` - Admin configured Enabled State. * `Disabled` - Admin configured Disabled State. diff --git a/intersight_gosdk/model_fabric_multicast_policy_list.go b/intersight_gosdk/model_fabric_multicast_policy_list.go index bf33fb6558..7ad379be33 100644 --- a/intersight_gosdk/model_fabric_multicast_policy_list.go +++ b/intersight_gosdk/model_fabric_multicast_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_multicast_policy_relationship.go b/intersight_gosdk/model_fabric_multicast_policy_relationship.go index 8c568df262..7c0b184575 100644 --- a/intersight_gosdk/model_fabric_multicast_policy_relationship.go +++ b/intersight_gosdk/model_fabric_multicast_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_multicast_policy_response.go b/intersight_gosdk/model_fabric_multicast_policy_response.go index 55ce1f8904..46da8ac7df 100644 --- a/intersight_gosdk/model_fabric_multicast_policy_response.go +++ b/intersight_gosdk/model_fabric_multicast_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_pc_member.go b/intersight_gosdk/model_fabric_pc_member.go index f9772d4d8c..70e90cd560 100644 --- a/intersight_gosdk/model_fabric_pc_member.go +++ b/intersight_gosdk/model_fabric_pc_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_pc_member_list.go b/intersight_gosdk/model_fabric_pc_member_list.go index d95b339f40..61f142de9a 100644 --- a/intersight_gosdk/model_fabric_pc_member_list.go +++ b/intersight_gosdk/model_fabric_pc_member_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_pc_member_response.go b/intersight_gosdk/model_fabric_pc_member_response.go index fb22e7e441..d2eeba1131 100644 --- a/intersight_gosdk/model_fabric_pc_member_response.go +++ b/intersight_gosdk/model_fabric_pc_member_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_pc_operation.go b/intersight_gosdk/model_fabric_pc_operation.go index f36b23fea6..f35e7f0acf 100644 --- a/intersight_gosdk/model_fabric_pc_operation.go +++ b/intersight_gosdk/model_fabric_pc_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_pc_operation_list.go b/intersight_gosdk/model_fabric_pc_operation_list.go index 298cc7c086..d61120fcac 100644 --- a/intersight_gosdk/model_fabric_pc_operation_list.go +++ b/intersight_gosdk/model_fabric_pc_operation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_pc_operation_response.go b/intersight_gosdk/model_fabric_pc_operation_response.go index d28a79b219..a5a9c6ee83 100644 --- a/intersight_gosdk/model_fabric_pc_operation_response.go +++ b/intersight_gosdk/model_fabric_pc_operation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_pin_group.go b/intersight_gosdk/model_fabric_pin_group.go index 28053c73c4..484186dd71 100644 --- a/intersight_gosdk/model_fabric_pin_group.go +++ b/intersight_gosdk/model_fabric_pin_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type FabricPinGroup struct { // 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. ObjectType string `json:"ObjectType"` // Name of the Pingroup for static pinning. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` PortPolicy NullableFabricPortPolicyRelationship `json:"PortPolicy,omitempty"` AdditionalProperties map[string]interface{} } @@ -257,7 +257,7 @@ func (o *FabricPinGroup) UnmarshalJSON(data []byte) (err error) { // 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. ObjectType string `json:"ObjectType"` // Name of the Pingroup for static pinning. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` PortPolicy NullableFabricPortPolicyRelationship `json:"PortPolicy,omitempty"` } diff --git a/intersight_gosdk/model_fabric_port_base.go b/intersight_gosdk/model_fabric_port_base.go index 3ec29944a3..2ada9243f9 100644 --- a/intersight_gosdk/model_fabric_port_base.go +++ b/intersight_gosdk/model_fabric_port_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_port_channel_role.go b/intersight_gosdk/model_fabric_port_channel_role.go index 288faf50dd..32c1eded78 100644 --- a/intersight_gosdk/model_fabric_port_channel_role.go +++ b/intersight_gosdk/model_fabric_port_channel_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_port_identifier.go b/intersight_gosdk/model_fabric_port_identifier.go index e860a03423..0360991d07 100644 --- a/intersight_gosdk/model_fabric_port_identifier.go +++ b/intersight_gosdk/model_fabric_port_identifier.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_port_mode.go b/intersight_gosdk/model_fabric_port_mode.go index 3095c62028..68089976df 100644 --- a/intersight_gosdk/model_fabric_port_mode.go +++ b/intersight_gosdk/model_fabric_port_mode.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_port_mode_list.go b/intersight_gosdk/model_fabric_port_mode_list.go index 0d3a562f06..d1a6d17d71 100644 --- a/intersight_gosdk/model_fabric_port_mode_list.go +++ b/intersight_gosdk/model_fabric_port_mode_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_port_mode_response.go b/intersight_gosdk/model_fabric_port_mode_response.go index 460b3a4b64..cf301595de 100644 --- a/intersight_gosdk/model_fabric_port_mode_response.go +++ b/intersight_gosdk/model_fabric_port_mode_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_port_operation.go b/intersight_gosdk/model_fabric_port_operation.go index 22376c6643..65f29dac38 100644 --- a/intersight_gosdk/model_fabric_port_operation.go +++ b/intersight_gosdk/model_fabric_port_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_port_operation_list.go b/intersight_gosdk/model_fabric_port_operation_list.go index bebfa01cbf..cc3996d2d4 100644 --- a/intersight_gosdk/model_fabric_port_operation_list.go +++ b/intersight_gosdk/model_fabric_port_operation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_port_operation_response.go b/intersight_gosdk/model_fabric_port_operation_response.go index ed538e89bb..995ac068a0 100644 --- a/intersight_gosdk/model_fabric_port_operation_response.go +++ b/intersight_gosdk/model_fabric_port_operation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_port_policy.go b/intersight_gosdk/model_fabric_port_policy.go index e90c76fdbb..ca69904d60 100644 --- a/intersight_gosdk/model_fabric_port_policy.go +++ b/intersight_gosdk/model_fabric_port_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_port_policy_list.go b/intersight_gosdk/model_fabric_port_policy_list.go index 8c8c6d96d3..cf29de9541 100644 --- a/intersight_gosdk/model_fabric_port_policy_list.go +++ b/intersight_gosdk/model_fabric_port_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_port_policy_relationship.go b/intersight_gosdk/model_fabric_port_policy_relationship.go index 61ca280426..8be5ba01ca 100644 --- a/intersight_gosdk/model_fabric_port_policy_relationship.go +++ b/intersight_gosdk/model_fabric_port_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_port_policy_response.go b/intersight_gosdk/model_fabric_port_policy_response.go index 9a261c3085..9b57f0e376 100644 --- a/intersight_gosdk/model_fabric_port_policy_response.go +++ b/intersight_gosdk/model_fabric_port_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_port_role.go b/intersight_gosdk/model_fabric_port_role.go index 3050ca6a0d..f2a0a0849a 100644 --- a/intersight_gosdk/model_fabric_port_role.go +++ b/intersight_gosdk/model_fabric_port_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_qos_class.go b/intersight_gosdk/model_fabric_qos_class.go index 723d66e739..efc28e672c 100644 --- a/intersight_gosdk/model_fabric_qos_class.go +++ b/intersight_gosdk/model_fabric_qos_class.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_san_pin_group.go b/intersight_gosdk/model_fabric_san_pin_group.go index f6e6184310..fa45fe60eb 100644 --- a/intersight_gosdk/model_fabric_san_pin_group.go +++ b/intersight_gosdk/model_fabric_san_pin_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_san_pin_group_list.go b/intersight_gosdk/model_fabric_san_pin_group_list.go index ac02e4b801..1c32fd5b2f 100644 --- a/intersight_gosdk/model_fabric_san_pin_group_list.go +++ b/intersight_gosdk/model_fabric_san_pin_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_san_pin_group_response.go b/intersight_gosdk/model_fabric_san_pin_group_response.go index 20af8b0601..d1eb85da60 100644 --- a/intersight_gosdk/model_fabric_san_pin_group_response.go +++ b/intersight_gosdk/model_fabric_san_pin_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_server_role.go b/intersight_gosdk/model_fabric_server_role.go index 341b3aef30..d7611d18cc 100644 --- a/intersight_gosdk/model_fabric_server_role.go +++ b/intersight_gosdk/model_fabric_server_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_server_role_list.go b/intersight_gosdk/model_fabric_server_role_list.go index 0eb2c7bc0e..94377958b5 100644 --- a/intersight_gosdk/model_fabric_server_role_list.go +++ b/intersight_gosdk/model_fabric_server_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_server_role_response.go b/intersight_gosdk/model_fabric_server_role_response.go index 42c3361088..8ad937cbf6 100644 --- a/intersight_gosdk/model_fabric_server_role_response.go +++ b/intersight_gosdk/model_fabric_server_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_span_dest_eth_port.go b/intersight_gosdk/model_fabric_span_dest_eth_port.go index 4367dad48c..2c23f178be 100644 --- a/intersight_gosdk/model_fabric_span_dest_eth_port.go +++ b/intersight_gosdk/model_fabric_span_dest_eth_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_span_dest_eth_port_list.go b/intersight_gosdk/model_fabric_span_dest_eth_port_list.go index 1198903cb9..5dd04ed99c 100644 --- a/intersight_gosdk/model_fabric_span_dest_eth_port_list.go +++ b/intersight_gosdk/model_fabric_span_dest_eth_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_span_dest_eth_port_response.go b/intersight_gosdk/model_fabric_span_dest_eth_port_response.go index c56e820b09..c77786acea 100644 --- a/intersight_gosdk/model_fabric_span_dest_eth_port_response.go +++ b/intersight_gosdk/model_fabric_span_dest_eth_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_span_session.go b/intersight_gosdk/model_fabric_span_session.go index b0259a8513..d157c8ccf0 100644 --- a/intersight_gosdk/model_fabric_span_session.go +++ b/intersight_gosdk/model_fabric_span_session.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_span_session_list.go b/intersight_gosdk/model_fabric_span_session_list.go index 0a6e28e3b0..5d106dbb69 100644 --- a/intersight_gosdk/model_fabric_span_session_list.go +++ b/intersight_gosdk/model_fabric_span_session_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_span_session_relationship.go b/intersight_gosdk/model_fabric_span_session_relationship.go index 8d0b0100c7..e41e7f96a6 100644 --- a/intersight_gosdk/model_fabric_span_session_relationship.go +++ b/intersight_gosdk/model_fabric_span_session_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_span_session_response.go b/intersight_gosdk/model_fabric_span_session_response.go index 257006b557..833663da0c 100644 --- a/intersight_gosdk/model_fabric_span_session_response.go +++ b/intersight_gosdk/model_fabric_span_session_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_span_source_eth_port.go b/intersight_gosdk/model_fabric_span_source_eth_port.go index d14d44f7a7..463c56bb65 100644 --- a/intersight_gosdk/model_fabric_span_source_eth_port.go +++ b/intersight_gosdk/model_fabric_span_source_eth_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_span_source_eth_port_channel.go b/intersight_gosdk/model_fabric_span_source_eth_port_channel.go index 383dc3eb07..e9b8039228 100644 --- a/intersight_gosdk/model_fabric_span_source_eth_port_channel.go +++ b/intersight_gosdk/model_fabric_span_source_eth_port_channel.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_span_source_eth_port_channel_list.go b/intersight_gosdk/model_fabric_span_source_eth_port_channel_list.go index 81bbc1de14..015778d6dd 100644 --- a/intersight_gosdk/model_fabric_span_source_eth_port_channel_list.go +++ b/intersight_gosdk/model_fabric_span_source_eth_port_channel_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_span_source_eth_port_channel_response.go b/intersight_gosdk/model_fabric_span_source_eth_port_channel_response.go index 842abcc534..1f49196e1e 100644 --- a/intersight_gosdk/model_fabric_span_source_eth_port_channel_response.go +++ b/intersight_gosdk/model_fabric_span_source_eth_port_channel_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_span_source_eth_port_list.go b/intersight_gosdk/model_fabric_span_source_eth_port_list.go index a17584ec65..c39727f8e1 100644 --- a/intersight_gosdk/model_fabric_span_source_eth_port_list.go +++ b/intersight_gosdk/model_fabric_span_source_eth_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_span_source_eth_port_response.go b/intersight_gosdk/model_fabric_span_source_eth_port_response.go index 2517bda10d..d2d4f9aa46 100644 --- a/intersight_gosdk/model_fabric_span_source_eth_port_response.go +++ b/intersight_gosdk/model_fabric_span_source_eth_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_span_source_vlan.go b/intersight_gosdk/model_fabric_span_source_vlan.go index 74982fbfc8..43e273b974 100644 --- a/intersight_gosdk/model_fabric_span_source_vlan.go +++ b/intersight_gosdk/model_fabric_span_source_vlan.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_span_source_vlan_list.go b/intersight_gosdk/model_fabric_span_source_vlan_list.go index 0dde4a3e5c..9f9955b91a 100644 --- a/intersight_gosdk/model_fabric_span_source_vlan_list.go +++ b/intersight_gosdk/model_fabric_span_source_vlan_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_span_source_vlan_relationship.go b/intersight_gosdk/model_fabric_span_source_vlan_relationship.go index 756aec55e9..facc04eaff 100644 --- a/intersight_gosdk/model_fabric_span_source_vlan_relationship.go +++ b/intersight_gosdk/model_fabric_span_source_vlan_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_span_source_vlan_response.go b/intersight_gosdk/model_fabric_span_source_vlan_response.go index 293efe8e9d..c36080fc7e 100644 --- a/intersight_gosdk/model_fabric_span_source_vlan_response.go +++ b/intersight_gosdk/model_fabric_span_source_vlan_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_span_source_vnic_eth_if.go b/intersight_gosdk/model_fabric_span_source_vnic_eth_if.go index d9218f9fd1..a6d3324181 100644 --- a/intersight_gosdk/model_fabric_span_source_vnic_eth_if.go +++ b/intersight_gosdk/model_fabric_span_source_vnic_eth_if.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_span_source_vnic_eth_if_list.go b/intersight_gosdk/model_fabric_span_source_vnic_eth_if_list.go index e1753a8068..bdc8c5bc99 100644 --- a/intersight_gosdk/model_fabric_span_source_vnic_eth_if_list.go +++ b/intersight_gosdk/model_fabric_span_source_vnic_eth_if_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_span_source_vnic_eth_if_response.go b/intersight_gosdk/model_fabric_span_source_vnic_eth_if_response.go index 17396959f9..36bc323edb 100644 --- a/intersight_gosdk/model_fabric_span_source_vnic_eth_if_response.go +++ b/intersight_gosdk/model_fabric_span_source_vnic_eth_if_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_switch_cluster_profile.go b/intersight_gosdk/model_fabric_switch_cluster_profile.go index dcf785e0f1..0b76bd8775 100644 --- a/intersight_gosdk/model_fabric_switch_cluster_profile.go +++ b/intersight_gosdk/model_fabric_switch_cluster_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type FabricSwitchClusterProfile struct { // Values indicating the switches on which the cluster profile has been deployed. 0 indicates that the profile has not been deployed on any switch, 1 indicates that the profile has been deployed on A, 2 indicates that it is deployed on B and 3 indicates that it is deployed on both. * `None` - Switch profiles not deployed on either of the fabric interconnects. * `A` - Switch profiles deployed only on fabric interconnect A. * `B` - Switch profiles deployed only on fabric interconnect B. * `AB` - Switch profiles deployed on both fabric interconnect A and B. DeployedSwitches *string `json:"DeployedSwitches,omitempty"` // The user defined label assigned to the switch profile. - UserLabel *string `json:"UserLabel,omitempty"` + UserLabel *string `json:"UserLabel,omitempty" validate:"regexp=^[ !#$%&\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}~a-zA-Z0-9]*$"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` // An array of relationships to fabricSwitchProfile resources. SwitchProfiles []FabricSwitchProfileRelationship `json:"SwitchProfiles,omitempty"` @@ -484,7 +484,7 @@ func (o *FabricSwitchClusterProfile) UnmarshalJSON(data []byte) (err error) { // Values indicating the switches on which the cluster profile has been deployed. 0 indicates that the profile has not been deployed on any switch, 1 indicates that the profile has been deployed on A, 2 indicates that it is deployed on B and 3 indicates that it is deployed on both. * `None` - Switch profiles not deployed on either of the fabric interconnects. * `A` - Switch profiles deployed only on fabric interconnect A. * `B` - Switch profiles deployed only on fabric interconnect B. * `AB` - Switch profiles deployed on both fabric interconnect A and B. DeployedSwitches *string `json:"DeployedSwitches,omitempty"` // The user defined label assigned to the switch profile. - UserLabel *string `json:"UserLabel,omitempty"` + UserLabel *string `json:"UserLabel,omitempty" validate:"regexp=^[ !#$%&\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}~a-zA-Z0-9]*$"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` // An array of relationships to fabricSwitchProfile resources. SwitchProfiles []FabricSwitchProfileRelationship `json:"SwitchProfiles,omitempty"` diff --git a/intersight_gosdk/model_fabric_switch_cluster_profile_list.go b/intersight_gosdk/model_fabric_switch_cluster_profile_list.go index fbd802939d..6dd59456d9 100644 --- a/intersight_gosdk/model_fabric_switch_cluster_profile_list.go +++ b/intersight_gosdk/model_fabric_switch_cluster_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_switch_cluster_profile_relationship.go b/intersight_gosdk/model_fabric_switch_cluster_profile_relationship.go index 63f578879c..639bb3697f 100644 --- a/intersight_gosdk/model_fabric_switch_cluster_profile_relationship.go +++ b/intersight_gosdk/model_fabric_switch_cluster_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_switch_cluster_profile_response.go b/intersight_gosdk/model_fabric_switch_cluster_profile_response.go index 698e5448da..0169229900 100644 --- a/intersight_gosdk/model_fabric_switch_cluster_profile_response.go +++ b/intersight_gosdk/model_fabric_switch_cluster_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_switch_cluster_profile_template.go b/intersight_gosdk/model_fabric_switch_cluster_profile_template.go index cdcfa70979..b86eba4c22 100644 --- a/intersight_gosdk/model_fabric_switch_cluster_profile_template.go +++ b/intersight_gosdk/model_fabric_switch_cluster_profile_template.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_switch_cluster_profile_template_list.go b/intersight_gosdk/model_fabric_switch_cluster_profile_template_list.go index 00cd818ab0..60cc2c7f82 100644 --- a/intersight_gosdk/model_fabric_switch_cluster_profile_template_list.go +++ b/intersight_gosdk/model_fabric_switch_cluster_profile_template_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_switch_cluster_profile_template_relationship.go b/intersight_gosdk/model_fabric_switch_cluster_profile_template_relationship.go index d93ff8674d..8b33047812 100644 --- a/intersight_gosdk/model_fabric_switch_cluster_profile_template_relationship.go +++ b/intersight_gosdk/model_fabric_switch_cluster_profile_template_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_switch_cluster_profile_template_response.go b/intersight_gosdk/model_fabric_switch_cluster_profile_template_response.go index f7726478a6..da06997678 100644 --- a/intersight_gosdk/model_fabric_switch_cluster_profile_template_response.go +++ b/intersight_gosdk/model_fabric_switch_cluster_profile_template_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_switch_control_policy.go b/intersight_gosdk/model_fabric_switch_control_policy.go index 6c38b6ae6f..c0faf7431f 100644 --- a/intersight_gosdk/model_fabric_switch_control_policy.go +++ b/intersight_gosdk/model_fabric_switch_control_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_switch_control_policy_list.go b/intersight_gosdk/model_fabric_switch_control_policy_list.go index 6adb2f06d6..ea9063826e 100644 --- a/intersight_gosdk/model_fabric_switch_control_policy_list.go +++ b/intersight_gosdk/model_fabric_switch_control_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_switch_control_policy_response.go b/intersight_gosdk/model_fabric_switch_control_policy_response.go index 9d00b34dea..71167ec466 100644 --- a/intersight_gosdk/model_fabric_switch_control_policy_response.go +++ b/intersight_gosdk/model_fabric_switch_control_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_switch_profile.go b/intersight_gosdk/model_fabric_switch_profile.go index 00e6760835..f1b5fa1b1a 100644 --- a/intersight_gosdk/model_fabric_switch_profile.go +++ b/intersight_gosdk/model_fabric_switch_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_switch_profile_list.go b/intersight_gosdk/model_fabric_switch_profile_list.go index e69d9375bf..8802859ecc 100644 --- a/intersight_gosdk/model_fabric_switch_profile_list.go +++ b/intersight_gosdk/model_fabric_switch_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_switch_profile_relationship.go b/intersight_gosdk/model_fabric_switch_profile_relationship.go index b530c813d3..f5e6b7b012 100644 --- a/intersight_gosdk/model_fabric_switch_profile_relationship.go +++ b/intersight_gosdk/model_fabric_switch_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_switch_profile_response.go b/intersight_gosdk/model_fabric_switch_profile_response.go index b832fd081d..f7f1c4c56d 100644 --- a/intersight_gosdk/model_fabric_switch_profile_response.go +++ b/intersight_gosdk/model_fabric_switch_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_switch_profile_template.go b/intersight_gosdk/model_fabric_switch_profile_template.go index 7283c40fc3..179b95d7a1 100644 --- a/intersight_gosdk/model_fabric_switch_profile_template.go +++ b/intersight_gosdk/model_fabric_switch_profile_template.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_switch_profile_template_list.go b/intersight_gosdk/model_fabric_switch_profile_template_list.go index ea9c423b85..bd97741298 100644 --- a/intersight_gosdk/model_fabric_switch_profile_template_list.go +++ b/intersight_gosdk/model_fabric_switch_profile_template_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_switch_profile_template_relationship.go b/intersight_gosdk/model_fabric_switch_profile_template_relationship.go index 6b3f8b9046..8b46fe844f 100644 --- a/intersight_gosdk/model_fabric_switch_profile_template_relationship.go +++ b/intersight_gosdk/model_fabric_switch_profile_template_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_switch_profile_template_response.go b/intersight_gosdk/model_fabric_switch_profile_template_response.go index 2a4dcc3de2..be8ac2a5f3 100644 --- a/intersight_gosdk/model_fabric_switch_profile_template_response.go +++ b/intersight_gosdk/model_fabric_switch_profile_template_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_system_qos_policy.go b/intersight_gosdk/model_fabric_system_qos_policy.go index 09e7f19e88..b840ebff6c 100644 --- a/intersight_gosdk/model_fabric_system_qos_policy.go +++ b/intersight_gosdk/model_fabric_system_qos_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_system_qos_policy_list.go b/intersight_gosdk/model_fabric_system_qos_policy_list.go index b5e527496e..7426e05733 100644 --- a/intersight_gosdk/model_fabric_system_qos_policy_list.go +++ b/intersight_gosdk/model_fabric_system_qos_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_system_qos_policy_response.go b/intersight_gosdk/model_fabric_system_qos_policy_response.go index bee3f21875..01585ebe8c 100644 --- a/intersight_gosdk/model_fabric_system_qos_policy_response.go +++ b/intersight_gosdk/model_fabric_system_qos_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_transceiver_role.go b/intersight_gosdk/model_fabric_transceiver_role.go index eb5fea06b5..67f3a842fa 100644 --- a/intersight_gosdk/model_fabric_transceiver_role.go +++ b/intersight_gosdk/model_fabric_transceiver_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_udld_global_settings.go b/intersight_gosdk/model_fabric_udld_global_settings.go index 72cd506f24..88803cd875 100644 --- a/intersight_gosdk/model_fabric_udld_global_settings.go +++ b/intersight_gosdk/model_fabric_udld_global_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_udld_settings.go b/intersight_gosdk/model_fabric_udld_settings.go index 0418dcb7ab..aef3139c48 100644 --- a/intersight_gosdk/model_fabric_udld_settings.go +++ b/intersight_gosdk/model_fabric_udld_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_uplink_pc_role.go b/intersight_gosdk/model_fabric_uplink_pc_role.go index 1ce26e1210..f8dd60e129 100644 --- a/intersight_gosdk/model_fabric_uplink_pc_role.go +++ b/intersight_gosdk/model_fabric_uplink_pc_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_uplink_pc_role_list.go b/intersight_gosdk/model_fabric_uplink_pc_role_list.go index c06ce7bd35..b5794b56e6 100644 --- a/intersight_gosdk/model_fabric_uplink_pc_role_list.go +++ b/intersight_gosdk/model_fabric_uplink_pc_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_uplink_pc_role_response.go b/intersight_gosdk/model_fabric_uplink_pc_role_response.go index 93a0b91e00..c038d90623 100644 --- a/intersight_gosdk/model_fabric_uplink_pc_role_response.go +++ b/intersight_gosdk/model_fabric_uplink_pc_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_uplink_role.go b/intersight_gosdk/model_fabric_uplink_role.go index c1ef8405b1..d88e824bcc 100644 --- a/intersight_gosdk/model_fabric_uplink_role.go +++ b/intersight_gosdk/model_fabric_uplink_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_uplink_role_list.go b/intersight_gosdk/model_fabric_uplink_role_list.go index ac69c98e3f..1dfa4f007f 100644 --- a/intersight_gosdk/model_fabric_uplink_role_list.go +++ b/intersight_gosdk/model_fabric_uplink_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_uplink_role_response.go b/intersight_gosdk/model_fabric_uplink_role_response.go index b658f5aca3..623fe5166e 100644 --- a/intersight_gosdk/model_fabric_uplink_role_response.go +++ b/intersight_gosdk/model_fabric_uplink_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vlan.go b/intersight_gosdk/model_fabric_vlan.go index 876ecf2cc8..715521be73 100644 --- a/intersight_gosdk/model_fabric_vlan.go +++ b/intersight_gosdk/model_fabric_vlan.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vlan_inventory.go b/intersight_gosdk/model_fabric_vlan_inventory.go index b6f22a0978..f5b91f9ae7 100644 --- a/intersight_gosdk/model_fabric_vlan_inventory.go +++ b/intersight_gosdk/model_fabric_vlan_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vlan_inventory_list.go b/intersight_gosdk/model_fabric_vlan_inventory_list.go index f7cb72829f..99f3a239ad 100644 --- a/intersight_gosdk/model_fabric_vlan_inventory_list.go +++ b/intersight_gosdk/model_fabric_vlan_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vlan_inventory_response.go b/intersight_gosdk/model_fabric_vlan_inventory_response.go index 1a50749500..c3001c2e46 100644 --- a/intersight_gosdk/model_fabric_vlan_inventory_response.go +++ b/intersight_gosdk/model_fabric_vlan_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vlan_list.go b/intersight_gosdk/model_fabric_vlan_list.go index e199beab06..d874fae7c4 100644 --- a/intersight_gosdk/model_fabric_vlan_list.go +++ b/intersight_gosdk/model_fabric_vlan_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vlan_response.go b/intersight_gosdk/model_fabric_vlan_response.go index 7044096808..6eea2cc22d 100644 --- a/intersight_gosdk/model_fabric_vlan_response.go +++ b/intersight_gosdk/model_fabric_vlan_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vlan_set.go b/intersight_gosdk/model_fabric_vlan_set.go index d0d3640682..16f4bf355e 100644 --- a/intersight_gosdk/model_fabric_vlan_set.go +++ b/intersight_gosdk/model_fabric_vlan_set.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -39,7 +39,7 @@ type FabricVlanSet struct { // The sharing type of this VLAN. * `None` - This represents a regular VLAN. * `Primary` - This represents a primary VLAN. * `Isolated` - This represents an isolated VLAN. * `Community` - This represents a community VLAN. SharingType *string `json:"SharingType,omitempty"` // Set of VLANs defined by VLAN object with identical configuration. - Vlans *string `json:"Vlans,omitempty"` + Vlans *string `json:"Vlans,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` EthNetworkPolicy NullableFabricEthNetworkPolicyRelationship `json:"EthNetworkPolicy,omitempty"` MulticastPolicy NullableFabricMulticastPolicyRelationship `json:"MulticastPolicy,omitempty"` AdditionalProperties map[string]interface{} @@ -522,7 +522,7 @@ func (o *FabricVlanSet) UnmarshalJSON(data []byte) (err error) { // The sharing type of this VLAN. * `None` - This represents a regular VLAN. * `Primary` - This represents a primary VLAN. * `Isolated` - This represents an isolated VLAN. * `Community` - This represents a community VLAN. SharingType *string `json:"SharingType,omitempty"` // Set of VLANs defined by VLAN object with identical configuration. - Vlans *string `json:"Vlans,omitempty"` + Vlans *string `json:"Vlans,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` EthNetworkPolicy NullableFabricEthNetworkPolicyRelationship `json:"EthNetworkPolicy,omitempty"` MulticastPolicy NullableFabricMulticastPolicyRelationship `json:"MulticastPolicy,omitempty"` } diff --git a/intersight_gosdk/model_fabric_vlan_set_list.go b/intersight_gosdk/model_fabric_vlan_set_list.go index b776aaee2c..829fa31690 100644 --- a/intersight_gosdk/model_fabric_vlan_set_list.go +++ b/intersight_gosdk/model_fabric_vlan_set_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vlan_set_relationship.go b/intersight_gosdk/model_fabric_vlan_set_relationship.go index b7dc11c3e4..a79d2982a5 100644 --- a/intersight_gosdk/model_fabric_vlan_set_relationship.go +++ b/intersight_gosdk/model_fabric_vlan_set_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vlan_set_response.go b/intersight_gosdk/model_fabric_vlan_set_response.go index 45964bb0eb..773d5bbdb2 100644 --- a/intersight_gosdk/model_fabric_vlan_set_response.go +++ b/intersight_gosdk/model_fabric_vlan_set_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vlan_settings.go b/intersight_gosdk/model_fabric_vlan_settings.go index 8d9370ddcd..d1450f1bb2 100644 --- a/intersight_gosdk/model_fabric_vlan_settings.go +++ b/intersight_gosdk/model_fabric_vlan_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type FabricVlanSettings struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Allowed VLAN IDs of the virtual interface. A list of comma separated VLAN ids and/or VLAN id ranges. - AllowedVlans *string `json:"AllowedVlans,omitempty"` + AllowedVlans *string `json:"AllowedVlans,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // Native VLAN ID of the virtual interface or the corresponding vethernet on the peer Fabric Interconnect to which the virtual interface is connected. If the native VLAN is not a part of the allowed VLANs, it will automatically be added to the list of allowed VLANs. NativeVlan *int64 `json:"NativeVlan,omitempty"` // Enable QinQ (802.1Q-in-802.1Q) Tunneling on the vNIC. @@ -356,7 +356,7 @@ func (o *FabricVlanSettings) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Allowed VLAN IDs of the virtual interface. A list of comma separated VLAN ids and/or VLAN id ranges. - AllowedVlans *string `json:"AllowedVlans,omitempty"` + AllowedVlans *string `json:"AllowedVlans,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // Native VLAN ID of the virtual interface or the corresponding vethernet on the peer Fabric Interconnect to which the virtual interface is connected. If the native VLAN is not a part of the allowed VLANs, it will automatically be added to the list of allowed VLANs. NativeVlan *int64 `json:"NativeVlan,omitempty"` // Enable QinQ (802.1Q-in-802.1Q) Tunneling on the vNIC. diff --git a/intersight_gosdk/model_fabric_vsan.go b/intersight_gosdk/model_fabric_vsan.go index f77a7106d5..59e5297703 100644 --- a/intersight_gosdk/model_fabric_vsan.go +++ b/intersight_gosdk/model_fabric_vsan.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vsan_inventory.go b/intersight_gosdk/model_fabric_vsan_inventory.go index f11c52522a..5ec879ee14 100644 --- a/intersight_gosdk/model_fabric_vsan_inventory.go +++ b/intersight_gosdk/model_fabric_vsan_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vsan_inventory_list.go b/intersight_gosdk/model_fabric_vsan_inventory_list.go index 7efb3c7e8e..f71fcfcd4b 100644 --- a/intersight_gosdk/model_fabric_vsan_inventory_list.go +++ b/intersight_gosdk/model_fabric_vsan_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vsan_inventory_response.go b/intersight_gosdk/model_fabric_vsan_inventory_response.go index 336e6a6858..18ab9bc422 100644 --- a/intersight_gosdk/model_fabric_vsan_inventory_response.go +++ b/intersight_gosdk/model_fabric_vsan_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vsan_list.go b/intersight_gosdk/model_fabric_vsan_list.go index a314a260bb..fa5a217f0e 100644 --- a/intersight_gosdk/model_fabric_vsan_list.go +++ b/intersight_gosdk/model_fabric_vsan_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vsan_response.go b/intersight_gosdk/model_fabric_vsan_response.go index 45cbf3feca..cb26eb2eb1 100644 --- a/intersight_gosdk/model_fabric_vsan_response.go +++ b/intersight_gosdk/model_fabric_vsan_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fault_instance.go b/intersight_gosdk/model_fault_instance.go index 9923d06929..bbeebf1204 100644 --- a/intersight_gosdk/model_fault_instance.go +++ b/intersight_gosdk/model_fault_instance.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fault_instance_list.go b/intersight_gosdk/model_fault_instance_list.go index e0d34b3909..6469ad617c 100644 --- a/intersight_gosdk/model_fault_instance_list.go +++ b/intersight_gosdk/model_fault_instance_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fault_instance_response.go b/intersight_gosdk/model_fault_instance_response.go index fa355d36e7..0f1bab67b8 100644 --- a/intersight_gosdk/model_fault_instance_response.go +++ b/intersight_gosdk/model_fault_instance_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fc_neighbor.go b/intersight_gosdk/model_fc_neighbor.go index f032391ac3..ac8eadfbb8 100644 --- a/intersight_gosdk/model_fc_neighbor.go +++ b/intersight_gosdk/model_fc_neighbor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fc_neighbor_list.go b/intersight_gosdk/model_fc_neighbor_list.go index c5a5742e34..61f0d1688e 100644 --- a/intersight_gosdk/model_fc_neighbor_list.go +++ b/intersight_gosdk/model_fc_neighbor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fc_neighbor_relationship.go b/intersight_gosdk/model_fc_neighbor_relationship.go index 6f98e90204..3e517acb46 100644 --- a/intersight_gosdk/model_fc_neighbor_relationship.go +++ b/intersight_gosdk/model_fc_neighbor_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fc_neighbor_response.go b/intersight_gosdk/model_fc_neighbor_response.go index 019f3fac4f..461270a2e7 100644 --- a/intersight_gosdk/model_fc_neighbor_response.go +++ b/intersight_gosdk/model_fc_neighbor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fc_physical_port.go b/intersight_gosdk/model_fc_physical_port.go index 5ded3af42f..4cc70a905a 100644 --- a/intersight_gosdk/model_fc_physical_port.go +++ b/intersight_gosdk/model_fc_physical_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fc_physical_port_list.go b/intersight_gosdk/model_fc_physical_port_list.go index b90aa435e5..6129f12816 100644 --- a/intersight_gosdk/model_fc_physical_port_list.go +++ b/intersight_gosdk/model_fc_physical_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fc_physical_port_relationship.go b/intersight_gosdk/model_fc_physical_port_relationship.go index cbf4ba811f..f5229ffbd3 100644 --- a/intersight_gosdk/model_fc_physical_port_relationship.go +++ b/intersight_gosdk/model_fc_physical_port_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fc_physical_port_response.go b/intersight_gosdk/model_fc_physical_port_response.go index f4266420db..39e0d5193d 100644 --- a/intersight_gosdk/model_fc_physical_port_response.go +++ b/intersight_gosdk/model_fc_physical_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fc_port_channel.go b/intersight_gosdk/model_fc_port_channel.go index 5bf7078b34..f5a501aed5 100644 --- a/intersight_gosdk/model_fc_port_channel.go +++ b/intersight_gosdk/model_fc_port_channel.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fc_port_channel_list.go b/intersight_gosdk/model_fc_port_channel_list.go index 257220e6b8..400c84c141 100644 --- a/intersight_gosdk/model_fc_port_channel_list.go +++ b/intersight_gosdk/model_fc_port_channel_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fc_port_channel_relationship.go b/intersight_gosdk/model_fc_port_channel_relationship.go index fd9e4adabc..4cf4f84717 100644 --- a/intersight_gosdk/model_fc_port_channel_relationship.go +++ b/intersight_gosdk/model_fc_port_channel_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fc_port_channel_response.go b/intersight_gosdk/model_fc_port_channel_response.go index 8aedc2bb09..499321d412 100644 --- a/intersight_gosdk/model_fc_port_channel_response.go +++ b/intersight_gosdk/model_fc_port_channel_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_block.go b/intersight_gosdk/model_fcpool_block.go index 374e7fbabc..ab6467ab17 100644 --- a/intersight_gosdk/model_fcpool_block.go +++ b/intersight_gosdk/model_fcpool_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type FcpoolBlock struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Starting WWN identifier of the block must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF. To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the following WWN prefix; 20:00:00:25:B5:xx:xx:xx. - From *string `json:"From,omitempty"` + From *string `json:"From,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` // Ending WWN identifier of the block must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. - To *string `json:"To,omitempty"` + To *string `json:"To,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` AdditionalProperties map[string]interface{} } @@ -270,9 +270,9 @@ func (o *FcpoolBlock) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Starting WWN identifier of the block must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF. To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the following WWN prefix; 20:00:00:25:B5:xx:xx:xx. - From *string `json:"From,omitempty"` + From *string `json:"From,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` // Ending WWN identifier of the block must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. - To *string `json:"To,omitempty"` + To *string `json:"To,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` } varFcpoolBlockWithoutEmbeddedStruct := FcpoolBlockWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_fcpool_fc_block.go b/intersight_gosdk/model_fcpool_fc_block.go index 997623124a..951d1d7e6f 100644 --- a/intersight_gosdk/model_fcpool_fc_block.go +++ b/intersight_gosdk/model_fcpool_fc_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_fc_block_list.go b/intersight_gosdk/model_fcpool_fc_block_list.go index d4757a04cb..12bc2510f2 100644 --- a/intersight_gosdk/model_fcpool_fc_block_list.go +++ b/intersight_gosdk/model_fcpool_fc_block_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_fc_block_relationship.go b/intersight_gosdk/model_fcpool_fc_block_relationship.go index 95a820cd50..92f8261a57 100644 --- a/intersight_gosdk/model_fcpool_fc_block_relationship.go +++ b/intersight_gosdk/model_fcpool_fc_block_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_fc_block_response.go b/intersight_gosdk/model_fcpool_fc_block_response.go index 3f5fd7396d..e8f422f862 100644 --- a/intersight_gosdk/model_fcpool_fc_block_response.go +++ b/intersight_gosdk/model_fcpool_fc_block_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_lease.go b/intersight_gosdk/model_fcpool_lease.go index a812ee08cc..0019f344b0 100644 --- a/intersight_gosdk/model_fcpool_lease.go +++ b/intersight_gosdk/model_fcpool_lease.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -32,7 +32,7 @@ type FcpoolLease struct { PoolPurpose *string `json:"PoolPurpose,omitempty"` Reservation *FcpoolReservationReference `json:"Reservation,omitempty"` // WWN ID allocated for pool based allocation. - WwnId *string `json:"WwnId,omitempty"` + WwnId *string `json:"WwnId,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` AssignedToEntity NullableMoBaseMoRelationship `json:"AssignedToEntity,omitempty"` Pool NullableFcpoolPoolRelationship `json:"Pool,omitempty"` PoolMember NullableFcpoolPoolMemberRelationship `json:"PoolMember,omitempty"` @@ -501,7 +501,7 @@ func (o *FcpoolLease) UnmarshalJSON(data []byte) (err error) { PoolPurpose *string `json:"PoolPurpose,omitempty"` Reservation *FcpoolReservationReference `json:"Reservation,omitempty"` // WWN ID allocated for pool based allocation. - WwnId *string `json:"WwnId,omitempty"` + WwnId *string `json:"WwnId,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` AssignedToEntity NullableMoBaseMoRelationship `json:"AssignedToEntity,omitempty"` Pool NullableFcpoolPoolRelationship `json:"Pool,omitempty"` PoolMember NullableFcpoolPoolMemberRelationship `json:"PoolMember,omitempty"` diff --git a/intersight_gosdk/model_fcpool_lease_list.go b/intersight_gosdk/model_fcpool_lease_list.go index bbcf3e8e2f..8dcd07a2a9 100644 --- a/intersight_gosdk/model_fcpool_lease_list.go +++ b/intersight_gosdk/model_fcpool_lease_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_lease_relationship.go b/intersight_gosdk/model_fcpool_lease_relationship.go index d263bb419f..5032d24e9c 100644 --- a/intersight_gosdk/model_fcpool_lease_relationship.go +++ b/intersight_gosdk/model_fcpool_lease_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_lease_response.go b/intersight_gosdk/model_fcpool_lease_response.go index 0dded807c8..dd5e54df7e 100644 --- a/intersight_gosdk/model_fcpool_lease_response.go +++ b/intersight_gosdk/model_fcpool_lease_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_pool.go b/intersight_gosdk/model_fcpool_pool.go index 07ee9e97d3..f35dd5993c 100644 --- a/intersight_gosdk/model_fcpool_pool.go +++ b/intersight_gosdk/model_fcpool_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_pool_list.go b/intersight_gosdk/model_fcpool_pool_list.go index ac5fd0dadb..29072499a0 100644 --- a/intersight_gosdk/model_fcpool_pool_list.go +++ b/intersight_gosdk/model_fcpool_pool_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_pool_member.go b/intersight_gosdk/model_fcpool_pool_member.go index 45736cbe50..62e0a64662 100644 --- a/intersight_gosdk/model_fcpool_pool_member.go +++ b/intersight_gosdk/model_fcpool_pool_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type FcpoolPoolMember struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // WWN ID of this pool member. - WwnId *string `json:"WwnId,omitempty"` + WwnId *string `json:"WwnId,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` AssignedToEntity NullableMoBaseMoRelationship `json:"AssignedToEntity,omitempty"` BlockHead NullableFcpoolFcBlockRelationship `json:"BlockHead,omitempty"` Peer NullableFcpoolLeaseRelationship `json:"Peer,omitempty"` @@ -474,7 +474,7 @@ func (o *FcpoolPoolMember) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // WWN ID of this pool member. - WwnId *string `json:"WwnId,omitempty"` + WwnId *string `json:"WwnId,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` AssignedToEntity NullableMoBaseMoRelationship `json:"AssignedToEntity,omitempty"` BlockHead NullableFcpoolFcBlockRelationship `json:"BlockHead,omitempty"` Peer NullableFcpoolLeaseRelationship `json:"Peer,omitempty"` diff --git a/intersight_gosdk/model_fcpool_pool_member_list.go b/intersight_gosdk/model_fcpool_pool_member_list.go index f761ca58a8..ed9805a4bb 100644 --- a/intersight_gosdk/model_fcpool_pool_member_list.go +++ b/intersight_gosdk/model_fcpool_pool_member_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_pool_member_relationship.go b/intersight_gosdk/model_fcpool_pool_member_relationship.go index e021d0d506..cd89110c46 100644 --- a/intersight_gosdk/model_fcpool_pool_member_relationship.go +++ b/intersight_gosdk/model_fcpool_pool_member_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_pool_member_response.go b/intersight_gosdk/model_fcpool_pool_member_response.go index 107bc8610d..fdf7f032b4 100644 --- a/intersight_gosdk/model_fcpool_pool_member_response.go +++ b/intersight_gosdk/model_fcpool_pool_member_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_pool_relationship.go b/intersight_gosdk/model_fcpool_pool_relationship.go index 6b4d8ce04f..32e69e3bbb 100644 --- a/intersight_gosdk/model_fcpool_pool_relationship.go +++ b/intersight_gosdk/model_fcpool_pool_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_pool_response.go b/intersight_gosdk/model_fcpool_pool_response.go index 4928dbae17..4fe2cb887e 100644 --- a/intersight_gosdk/model_fcpool_pool_response.go +++ b/intersight_gosdk/model_fcpool_pool_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_reservation.go b/intersight_gosdk/model_fcpool_reservation.go index cdc3d9115c..f533f46e42 100644 --- a/intersight_gosdk/model_fcpool_reservation.go +++ b/intersight_gosdk/model_fcpool_reservation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type FcpoolReservation struct { // Purpose of this WWN ID. Purpose can be WWPN or WWNN. IdPurpose *string `json:"IdPurpose,omitempty"` // WWN ID that needs to be reserved. - Identity *string `json:"Identity,omitempty"` + Identity *string `json:"Identity,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` Block NullableFcpoolFcBlockRelationship `json:"Block,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` Pool NullableFcpoolPoolRelationship `json:"Pool,omitempty"` @@ -509,7 +509,7 @@ func (o *FcpoolReservation) UnmarshalJSON(data []byte) (err error) { // Purpose of this WWN ID. Purpose can be WWPN or WWNN. IdPurpose *string `json:"IdPurpose,omitempty"` // WWN ID that needs to be reserved. - Identity *string `json:"Identity,omitempty"` + Identity *string `json:"Identity,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` Block NullableFcpoolFcBlockRelationship `json:"Block,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` Pool NullableFcpoolPoolRelationship `json:"Pool,omitempty"` diff --git a/intersight_gosdk/model_fcpool_reservation_list.go b/intersight_gosdk/model_fcpool_reservation_list.go index d6b20c11f9..2a694ae593 100644 --- a/intersight_gosdk/model_fcpool_reservation_list.go +++ b/intersight_gosdk/model_fcpool_reservation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_reservation_reference.go b/intersight_gosdk/model_fcpool_reservation_reference.go index 65bb6356d8..c8de2eb9a5 100644 --- a/intersight_gosdk/model_fcpool_reservation_reference.go +++ b/intersight_gosdk/model_fcpool_reservation_reference.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_reservation_relationship.go b/intersight_gosdk/model_fcpool_reservation_relationship.go index fdf5309cf3..37169bbd20 100644 --- a/intersight_gosdk/model_fcpool_reservation_relationship.go +++ b/intersight_gosdk/model_fcpool_reservation_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_reservation_response.go b/intersight_gosdk/model_fcpool_reservation_response.go index 6ee8a2d0b6..ca835947cc 100644 --- a/intersight_gosdk/model_fcpool_reservation_response.go +++ b/intersight_gosdk/model_fcpool_reservation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_universe.go b/intersight_gosdk/model_fcpool_universe.go index 49507e4682..83e4b0a26f 100644 --- a/intersight_gosdk/model_fcpool_universe.go +++ b/intersight_gosdk/model_fcpool_universe.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_universe_list.go b/intersight_gosdk/model_fcpool_universe_list.go index dd88f801d8..d6ac740d04 100644 --- a/intersight_gosdk/model_fcpool_universe_list.go +++ b/intersight_gosdk/model_fcpool_universe_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_universe_relationship.go b/intersight_gosdk/model_fcpool_universe_relationship.go index e029b3bf83..7662d5c23a 100644 --- a/intersight_gosdk/model_fcpool_universe_relationship.go +++ b/intersight_gosdk/model_fcpool_universe_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_universe_response.go b/intersight_gosdk/model_fcpool_universe_response.go index 4438d3b553..f4f18909fb 100644 --- a/intersight_gosdk/model_fcpool_universe_response.go +++ b/intersight_gosdk/model_fcpool_universe_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_feedback_feedback_data.go b/intersight_gosdk/model_feedback_feedback_data.go index ac3cc1bcea..d639e86abe 100644 --- a/intersight_gosdk/model_feedback_feedback_data.go +++ b/intersight_gosdk/model_feedback_feedback_data.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_feedback_feedback_post.go b/intersight_gosdk/model_feedback_feedback_post.go index dd7bc1d2b7..9ec066af5a 100644 --- a/intersight_gosdk/model_feedback_feedback_post.go +++ b/intersight_gosdk/model_feedback_feedback_post.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_base_distributable.go b/intersight_gosdk/model_firmware_base_distributable.go index 7882dda2ac..daa32c0510 100644 --- a/intersight_gosdk/model_firmware_base_distributable.go +++ b/intersight_gosdk/model_firmware_base_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_base_distributable_relationship.go b/intersight_gosdk/model_firmware_base_distributable_relationship.go index 539d923d19..8b1f38b3a6 100644 --- a/intersight_gosdk/model_firmware_base_distributable_relationship.go +++ b/intersight_gosdk/model_firmware_base_distributable_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_base_impact.go b/intersight_gosdk/model_firmware_base_impact.go index d1cd63958f..4fe8316018 100644 --- a/intersight_gosdk/model_firmware_base_impact.go +++ b/intersight_gosdk/model_firmware_base_impact.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_bios_descriptor.go b/intersight_gosdk/model_firmware_bios_descriptor.go index a9b9777ce2..2d1be7d236 100644 --- a/intersight_gosdk/model_firmware_bios_descriptor.go +++ b/intersight_gosdk/model_firmware_bios_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_bios_descriptor_list.go b/intersight_gosdk/model_firmware_bios_descriptor_list.go index ffe99c3e9a..896066961a 100644 --- a/intersight_gosdk/model_firmware_bios_descriptor_list.go +++ b/intersight_gosdk/model_firmware_bios_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_bios_descriptor_response.go b/intersight_gosdk/model_firmware_bios_descriptor_response.go index 4b6f19ea21..8b73990774 100644 --- a/intersight_gosdk/model_firmware_bios_descriptor_response.go +++ b/intersight_gosdk/model_firmware_bios_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_board_controller_descriptor.go b/intersight_gosdk/model_firmware_board_controller_descriptor.go index da4d602680..ad2bf82576 100644 --- a/intersight_gosdk/model_firmware_board_controller_descriptor.go +++ b/intersight_gosdk/model_firmware_board_controller_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_board_controller_descriptor_list.go b/intersight_gosdk/model_firmware_board_controller_descriptor_list.go index a347b25821..4458b4b5f2 100644 --- a/intersight_gosdk/model_firmware_board_controller_descriptor_list.go +++ b/intersight_gosdk/model_firmware_board_controller_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_board_controller_descriptor_response.go b/intersight_gosdk/model_firmware_board_controller_descriptor_response.go index bb8cbea443..19b1bf14b2 100644 --- a/intersight_gosdk/model_firmware_board_controller_descriptor_response.go +++ b/intersight_gosdk/model_firmware_board_controller_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_chassis_upgrade.go b/intersight_gosdk/model_firmware_chassis_upgrade.go index 4cc4f85d21..fc723d89fa 100644 --- a/intersight_gosdk/model_firmware_chassis_upgrade.go +++ b/intersight_gosdk/model_firmware_chassis_upgrade.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_chassis_upgrade_impact.go b/intersight_gosdk/model_firmware_chassis_upgrade_impact.go index 53f20c7850..34759c6ca1 100644 --- a/intersight_gosdk/model_firmware_chassis_upgrade_impact.go +++ b/intersight_gosdk/model_firmware_chassis_upgrade_impact.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_chassis_upgrade_list.go b/intersight_gosdk/model_firmware_chassis_upgrade_list.go index ee59de6a83..4d3957ebce 100644 --- a/intersight_gosdk/model_firmware_chassis_upgrade_list.go +++ b/intersight_gosdk/model_firmware_chassis_upgrade_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_chassis_upgrade_response.go b/intersight_gosdk/model_firmware_chassis_upgrade_response.go index 78d2a6225e..da97a55927 100644 --- a/intersight_gosdk/model_firmware_chassis_upgrade_response.go +++ b/intersight_gosdk/model_firmware_chassis_upgrade_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_cifs_server.go b/intersight_gosdk/model_firmware_cifs_server.go index e1ab78f1fb..7b074ce1fc 100644 --- a/intersight_gosdk/model_firmware_cifs_server.go +++ b/intersight_gosdk/model_firmware_cifs_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_cimc_descriptor.go b/intersight_gosdk/model_firmware_cimc_descriptor.go index b7abf8a46a..a1090c3e07 100644 --- a/intersight_gosdk/model_firmware_cimc_descriptor.go +++ b/intersight_gosdk/model_firmware_cimc_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_cimc_descriptor_list.go b/intersight_gosdk/model_firmware_cimc_descriptor_list.go index ba2e296fcd..62fda7bb20 100644 --- a/intersight_gosdk/model_firmware_cimc_descriptor_list.go +++ b/intersight_gosdk/model_firmware_cimc_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_cimc_descriptor_response.go b/intersight_gosdk/model_firmware_cimc_descriptor_response.go index 0ed62215dd..19a67c6179 100644 --- a/intersight_gosdk/model_firmware_cimc_descriptor_response.go +++ b/intersight_gosdk/model_firmware_cimc_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_component_descriptor.go b/intersight_gosdk/model_firmware_component_descriptor.go index eeb4ec93f3..87322adc59 100644 --- a/intersight_gosdk/model_firmware_component_descriptor.go +++ b/intersight_gosdk/model_firmware_component_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_component_impact.go b/intersight_gosdk/model_firmware_component_impact.go index ace1b55d0b..668d328bb4 100644 --- a/intersight_gosdk/model_firmware_component_impact.go +++ b/intersight_gosdk/model_firmware_component_impact.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_component_meta.go b/intersight_gosdk/model_firmware_component_meta.go index c38b0e194f..e42612208b 100644 --- a/intersight_gosdk/model_firmware_component_meta.go +++ b/intersight_gosdk/model_firmware_component_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_dimm_descriptor.go b/intersight_gosdk/model_firmware_dimm_descriptor.go index 3110e7fd72..d4d6bcfc56 100644 --- a/intersight_gosdk/model_firmware_dimm_descriptor.go +++ b/intersight_gosdk/model_firmware_dimm_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_dimm_descriptor_list.go b/intersight_gosdk/model_firmware_dimm_descriptor_list.go index cf2d83573c..42967d7ecd 100644 --- a/intersight_gosdk/model_firmware_dimm_descriptor_list.go +++ b/intersight_gosdk/model_firmware_dimm_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_dimm_descriptor_response.go b/intersight_gosdk/model_firmware_dimm_descriptor_response.go index 55635680dd..a110a8a756 100644 --- a/intersight_gosdk/model_firmware_dimm_descriptor_response.go +++ b/intersight_gosdk/model_firmware_dimm_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_direct_download.go b/intersight_gosdk/model_firmware_direct_download.go index b075e1343e..f46677887b 100644 --- a/intersight_gosdk/model_firmware_direct_download.go +++ b/intersight_gosdk/model_firmware_direct_download.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_distributable.go b/intersight_gosdk/model_firmware_distributable.go index 39056ed267..29f4948b6d 100644 --- a/intersight_gosdk/model_firmware_distributable.go +++ b/intersight_gosdk/model_firmware_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_distributable_list.go b/intersight_gosdk/model_firmware_distributable_list.go index c0fd789ba8..536c314e7b 100644 --- a/intersight_gosdk/model_firmware_distributable_list.go +++ b/intersight_gosdk/model_firmware_distributable_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_distributable_meta.go b/intersight_gosdk/model_firmware_distributable_meta.go index 6d5fb7f967..0ef119e6be 100644 --- a/intersight_gosdk/model_firmware_distributable_meta.go +++ b/intersight_gosdk/model_firmware_distributable_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_distributable_meta_list.go b/intersight_gosdk/model_firmware_distributable_meta_list.go index 49030dfb82..7d55791810 100644 --- a/intersight_gosdk/model_firmware_distributable_meta_list.go +++ b/intersight_gosdk/model_firmware_distributable_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_distributable_meta_relationship.go b/intersight_gosdk/model_firmware_distributable_meta_relationship.go index 1f48a9a74a..3d9c174e23 100644 --- a/intersight_gosdk/model_firmware_distributable_meta_relationship.go +++ b/intersight_gosdk/model_firmware_distributable_meta_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_distributable_meta_response.go b/intersight_gosdk/model_firmware_distributable_meta_response.go index 86d6f8b866..607b41c6dc 100644 --- a/intersight_gosdk/model_firmware_distributable_meta_response.go +++ b/intersight_gosdk/model_firmware_distributable_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_distributable_relationship.go b/intersight_gosdk/model_firmware_distributable_relationship.go index 9a3ebb9c36..4c52351b89 100644 --- a/intersight_gosdk/model_firmware_distributable_relationship.go +++ b/intersight_gosdk/model_firmware_distributable_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_distributable_response.go b/intersight_gosdk/model_firmware_distributable_response.go index 6a3bfb780b..822fa4526d 100644 --- a/intersight_gosdk/model_firmware_distributable_response.go +++ b/intersight_gosdk/model_firmware_distributable_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_drive_descriptor.go b/intersight_gosdk/model_firmware_drive_descriptor.go index 58b951ae32..ff3a4236d9 100644 --- a/intersight_gosdk/model_firmware_drive_descriptor.go +++ b/intersight_gosdk/model_firmware_drive_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_drive_descriptor_list.go b/intersight_gosdk/model_firmware_drive_descriptor_list.go index b12948fcea..a277a930ee 100644 --- a/intersight_gosdk/model_firmware_drive_descriptor_list.go +++ b/intersight_gosdk/model_firmware_drive_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_drive_descriptor_response.go b/intersight_gosdk/model_firmware_drive_descriptor_response.go index c45cd95226..7132c53b90 100644 --- a/intersight_gosdk/model_firmware_drive_descriptor_response.go +++ b/intersight_gosdk/model_firmware_drive_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_driver_distributable.go b/intersight_gosdk/model_firmware_driver_distributable.go index a0a4bf8140..40bc250f2f 100644 --- a/intersight_gosdk/model_firmware_driver_distributable.go +++ b/intersight_gosdk/model_firmware_driver_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_driver_distributable_list.go b/intersight_gosdk/model_firmware_driver_distributable_list.go index 2f91e9c276..8924df6e67 100644 --- a/intersight_gosdk/model_firmware_driver_distributable_list.go +++ b/intersight_gosdk/model_firmware_driver_distributable_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_driver_distributable_response.go b/intersight_gosdk/model_firmware_driver_distributable_response.go index 3adb90203a..6105f9f6dc 100644 --- a/intersight_gosdk/model_firmware_driver_distributable_response.go +++ b/intersight_gosdk/model_firmware_driver_distributable_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_eula.go b/intersight_gosdk/model_firmware_eula.go index 24f0041228..648f2e55c8 100644 --- a/intersight_gosdk/model_firmware_eula.go +++ b/intersight_gosdk/model_firmware_eula.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_eula_list.go b/intersight_gosdk/model_firmware_eula_list.go index 1bf8252609..c88742d611 100644 --- a/intersight_gosdk/model_firmware_eula_list.go +++ b/intersight_gosdk/model_firmware_eula_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_eula_response.go b/intersight_gosdk/model_firmware_eula_response.go index f361afe5a7..288d3585d5 100644 --- a/intersight_gosdk/model_firmware_eula_response.go +++ b/intersight_gosdk/model_firmware_eula_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_exclude_component_pid_list_type.go b/intersight_gosdk/model_firmware_exclude_component_pid_list_type.go index 0ed596202f..a87f785109 100644 --- a/intersight_gosdk/model_firmware_exclude_component_pid_list_type.go +++ b/intersight_gosdk/model_firmware_exclude_component_pid_list_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_fabric_upgrade_impact.go b/intersight_gosdk/model_firmware_fabric_upgrade_impact.go index d6a0c0018c..c81eb6fbb8 100644 --- a/intersight_gosdk/model_firmware_fabric_upgrade_impact.go +++ b/intersight_gosdk/model_firmware_fabric_upgrade_impact.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_firmware_inventory.go b/intersight_gosdk/model_firmware_firmware_inventory.go index a426f4c370..3503aa3cac 100644 --- a/intersight_gosdk/model_firmware_firmware_inventory.go +++ b/intersight_gosdk/model_firmware_firmware_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_firmware_summary.go b/intersight_gosdk/model_firmware_firmware_summary.go index e8155b9b7f..2357e6fad4 100644 --- a/intersight_gosdk/model_firmware_firmware_summary.go +++ b/intersight_gosdk/model_firmware_firmware_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_firmware_summary_list.go b/intersight_gosdk/model_firmware_firmware_summary_list.go index 16313e5e64..55b6e776d9 100644 --- a/intersight_gosdk/model_firmware_firmware_summary_list.go +++ b/intersight_gosdk/model_firmware_firmware_summary_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_firmware_summary_response.go b/intersight_gosdk/model_firmware_firmware_summary_response.go index 1c48cfc07e..ce7f64d77b 100644 --- a/intersight_gosdk/model_firmware_firmware_summary_response.go +++ b/intersight_gosdk/model_firmware_firmware_summary_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_gpu_descriptor.go b/intersight_gosdk/model_firmware_gpu_descriptor.go index e2e58e9e4e..77d77e9e38 100644 --- a/intersight_gosdk/model_firmware_gpu_descriptor.go +++ b/intersight_gosdk/model_firmware_gpu_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_gpu_descriptor_list.go b/intersight_gosdk/model_firmware_gpu_descriptor_list.go index 6fd541005f..cf20e8bd65 100644 --- a/intersight_gosdk/model_firmware_gpu_descriptor_list.go +++ b/intersight_gosdk/model_firmware_gpu_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_gpu_descriptor_response.go b/intersight_gosdk/model_firmware_gpu_descriptor_response.go index 808f62505e..0032170396 100644 --- a/intersight_gosdk/model_firmware_gpu_descriptor_response.go +++ b/intersight_gosdk/model_firmware_gpu_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_hba_descriptor.go b/intersight_gosdk/model_firmware_hba_descriptor.go index a5b918feae..d9ea70bd20 100644 --- a/intersight_gosdk/model_firmware_hba_descriptor.go +++ b/intersight_gosdk/model_firmware_hba_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_hba_descriptor_list.go b/intersight_gosdk/model_firmware_hba_descriptor_list.go index 379633967d..673dc5ff6f 100644 --- a/intersight_gosdk/model_firmware_hba_descriptor_list.go +++ b/intersight_gosdk/model_firmware_hba_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_hba_descriptor_response.go b/intersight_gosdk/model_firmware_hba_descriptor_response.go index 34999b0165..ec6fb9e716 100644 --- a/intersight_gosdk/model_firmware_hba_descriptor_response.go +++ b/intersight_gosdk/model_firmware_hba_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_http_server.go b/intersight_gosdk/model_firmware_http_server.go index 4ac6403af8..8155ad6d19 100644 --- a/intersight_gosdk/model_firmware_http_server.go +++ b/intersight_gosdk/model_firmware_http_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_iom_descriptor.go b/intersight_gosdk/model_firmware_iom_descriptor.go index 066d4ebbd5..6916c43049 100644 --- a/intersight_gosdk/model_firmware_iom_descriptor.go +++ b/intersight_gosdk/model_firmware_iom_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_iom_descriptor_list.go b/intersight_gosdk/model_firmware_iom_descriptor_list.go index 078398c55f..1cb88f920e 100644 --- a/intersight_gosdk/model_firmware_iom_descriptor_list.go +++ b/intersight_gosdk/model_firmware_iom_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_iom_descriptor_response.go b/intersight_gosdk/model_firmware_iom_descriptor_response.go index 4038593ed5..14fb4ebafa 100644 --- a/intersight_gosdk/model_firmware_iom_descriptor_response.go +++ b/intersight_gosdk/model_firmware_iom_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_model_bundle_version.go b/intersight_gosdk/model_firmware_model_bundle_version.go index c52956aa4d..56d5a87457 100644 --- a/intersight_gosdk/model_firmware_model_bundle_version.go +++ b/intersight_gosdk/model_firmware_model_bundle_version.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_mswitch_descriptor.go b/intersight_gosdk/model_firmware_mswitch_descriptor.go index 7520c2fde3..d574e84c1a 100644 --- a/intersight_gosdk/model_firmware_mswitch_descriptor.go +++ b/intersight_gosdk/model_firmware_mswitch_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_mswitch_descriptor_list.go b/intersight_gosdk/model_firmware_mswitch_descriptor_list.go index 4ec3d6973f..55a991808e 100644 --- a/intersight_gosdk/model_firmware_mswitch_descriptor_list.go +++ b/intersight_gosdk/model_firmware_mswitch_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_mswitch_descriptor_response.go b/intersight_gosdk/model_firmware_mswitch_descriptor_response.go index 61b71e84ed..929121a523 100644 --- a/intersight_gosdk/model_firmware_mswitch_descriptor_response.go +++ b/intersight_gosdk/model_firmware_mswitch_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_network_share.go b/intersight_gosdk/model_firmware_network_share.go index e88ebcf5af..2b1b107800 100644 --- a/intersight_gosdk/model_firmware_network_share.go +++ b/intersight_gosdk/model_firmware_network_share.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_nfs_server.go b/intersight_gosdk/model_firmware_nfs_server.go index 2064dad69d..f1bd17e857 100644 --- a/intersight_gosdk/model_firmware_nfs_server.go +++ b/intersight_gosdk/model_firmware_nfs_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_nxos_descriptor.go b/intersight_gosdk/model_firmware_nxos_descriptor.go index b430f42811..101393a0ea 100644 --- a/intersight_gosdk/model_firmware_nxos_descriptor.go +++ b/intersight_gosdk/model_firmware_nxos_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_nxos_descriptor_list.go b/intersight_gosdk/model_firmware_nxos_descriptor_list.go index bfbea2f043..793e507181 100644 --- a/intersight_gosdk/model_firmware_nxos_descriptor_list.go +++ b/intersight_gosdk/model_firmware_nxos_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_nxos_descriptor_response.go b/intersight_gosdk/model_firmware_nxos_descriptor_response.go index 1bf4efcd68..18e101a6dd 100644 --- a/intersight_gosdk/model_firmware_nxos_descriptor_response.go +++ b/intersight_gosdk/model_firmware_nxos_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_pcie_descriptor.go b/intersight_gosdk/model_firmware_pcie_descriptor.go index b1a5f6d258..3b976f4bb5 100644 --- a/intersight_gosdk/model_firmware_pcie_descriptor.go +++ b/intersight_gosdk/model_firmware_pcie_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_pcie_descriptor_list.go b/intersight_gosdk/model_firmware_pcie_descriptor_list.go index 700abe446d..e2a3427a2e 100644 --- a/intersight_gosdk/model_firmware_pcie_descriptor_list.go +++ b/intersight_gosdk/model_firmware_pcie_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_pcie_descriptor_response.go b/intersight_gosdk/model_firmware_pcie_descriptor_response.go index 9ee517725a..cb2e775826 100644 --- a/intersight_gosdk/model_firmware_pcie_descriptor_response.go +++ b/intersight_gosdk/model_firmware_pcie_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_policy.go b/intersight_gosdk/model_firmware_policy.go index a5d1f9ebea..84f704b026 100644 --- a/intersight_gosdk/model_firmware_policy.go +++ b/intersight_gosdk/model_firmware_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_policy_list.go b/intersight_gosdk/model_firmware_policy_list.go index 3e416194ac..9bf56ed460 100644 --- a/intersight_gosdk/model_firmware_policy_list.go +++ b/intersight_gosdk/model_firmware_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_policy_response.go b/intersight_gosdk/model_firmware_policy_response.go index 46565b9ea9..5ceea26488 100644 --- a/intersight_gosdk/model_firmware_policy_response.go +++ b/intersight_gosdk/model_firmware_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_psu_descriptor.go b/intersight_gosdk/model_firmware_psu_descriptor.go index 6d5d3a2914..6daab08fce 100644 --- a/intersight_gosdk/model_firmware_psu_descriptor.go +++ b/intersight_gosdk/model_firmware_psu_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_psu_descriptor_list.go b/intersight_gosdk/model_firmware_psu_descriptor_list.go index 5782c9356d..be1ba2b573 100644 --- a/intersight_gosdk/model_firmware_psu_descriptor_list.go +++ b/intersight_gosdk/model_firmware_psu_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_psu_descriptor_response.go b/intersight_gosdk/model_firmware_psu_descriptor_response.go index f61e4140a2..93f6a6fa0d 100644 --- a/intersight_gosdk/model_firmware_psu_descriptor_response.go +++ b/intersight_gosdk/model_firmware_psu_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_running_firmware.go b/intersight_gosdk/model_firmware_running_firmware.go index 26380d3a36..26c25915d1 100644 --- a/intersight_gosdk/model_firmware_running_firmware.go +++ b/intersight_gosdk/model_firmware_running_firmware.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_running_firmware_list.go b/intersight_gosdk/model_firmware_running_firmware_list.go index 1ef1fcdb06..79c308b33a 100644 --- a/intersight_gosdk/model_firmware_running_firmware_list.go +++ b/intersight_gosdk/model_firmware_running_firmware_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_running_firmware_relationship.go b/intersight_gosdk/model_firmware_running_firmware_relationship.go index dc43b204db..3053b709d2 100644 --- a/intersight_gosdk/model_firmware_running_firmware_relationship.go +++ b/intersight_gosdk/model_firmware_running_firmware_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_running_firmware_response.go b/intersight_gosdk/model_firmware_running_firmware_response.go index 4d767b45d6..9763da4e26 100644 --- a/intersight_gosdk/model_firmware_running_firmware_response.go +++ b/intersight_gosdk/model_firmware_running_firmware_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_sas_expander_descriptor.go b/intersight_gosdk/model_firmware_sas_expander_descriptor.go index 5a2d7a7565..654c00bd7f 100644 --- a/intersight_gosdk/model_firmware_sas_expander_descriptor.go +++ b/intersight_gosdk/model_firmware_sas_expander_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_sas_expander_descriptor_list.go b/intersight_gosdk/model_firmware_sas_expander_descriptor_list.go index 3bc83eb3ca..be469f1bf1 100644 --- a/intersight_gosdk/model_firmware_sas_expander_descriptor_list.go +++ b/intersight_gosdk/model_firmware_sas_expander_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_sas_expander_descriptor_response.go b/intersight_gosdk/model_firmware_sas_expander_descriptor_response.go index 1f55b0a6a3..8bfd6bcc4d 100644 --- a/intersight_gosdk/model_firmware_sas_expander_descriptor_response.go +++ b/intersight_gosdk/model_firmware_sas_expander_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_server_configuration_utility_distributable.go b/intersight_gosdk/model_firmware_server_configuration_utility_distributable.go index a264fa5a7f..850f54b4cb 100644 --- a/intersight_gosdk/model_firmware_server_configuration_utility_distributable.go +++ b/intersight_gosdk/model_firmware_server_configuration_utility_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_server_configuration_utility_distributable_list.go b/intersight_gosdk/model_firmware_server_configuration_utility_distributable_list.go index 43cdfe9433..c7b3ff7872 100644 --- a/intersight_gosdk/model_firmware_server_configuration_utility_distributable_list.go +++ b/intersight_gosdk/model_firmware_server_configuration_utility_distributable_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_server_configuration_utility_distributable_relationship.go b/intersight_gosdk/model_firmware_server_configuration_utility_distributable_relationship.go index 58c983f4f1..93981f446c 100644 --- a/intersight_gosdk/model_firmware_server_configuration_utility_distributable_relationship.go +++ b/intersight_gosdk/model_firmware_server_configuration_utility_distributable_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_server_configuration_utility_distributable_response.go b/intersight_gosdk/model_firmware_server_configuration_utility_distributable_response.go index fa34106e84..8171a4867d 100644 --- a/intersight_gosdk/model_firmware_server_configuration_utility_distributable_response.go +++ b/intersight_gosdk/model_firmware_server_configuration_utility_distributable_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_server_upgrade_impact.go b/intersight_gosdk/model_firmware_server_upgrade_impact.go index 9e8f6a9323..d9ae7543e0 100644 --- a/intersight_gosdk/model_firmware_server_upgrade_impact.go +++ b/intersight_gosdk/model_firmware_server_upgrade_impact.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_storage_controller_descriptor.go b/intersight_gosdk/model_firmware_storage_controller_descriptor.go index 1b2a188bcb..c694c6a1e8 100644 --- a/intersight_gosdk/model_firmware_storage_controller_descriptor.go +++ b/intersight_gosdk/model_firmware_storage_controller_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_storage_controller_descriptor_list.go b/intersight_gosdk/model_firmware_storage_controller_descriptor_list.go index 93873863b5..a61396c0a0 100644 --- a/intersight_gosdk/model_firmware_storage_controller_descriptor_list.go +++ b/intersight_gosdk/model_firmware_storage_controller_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_storage_controller_descriptor_response.go b/intersight_gosdk/model_firmware_storage_controller_descriptor_response.go index 7e103c8b5f..19bff52a1a 100644 --- a/intersight_gosdk/model_firmware_storage_controller_descriptor_response.go +++ b/intersight_gosdk/model_firmware_storage_controller_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_switch_upgrade.go b/intersight_gosdk/model_firmware_switch_upgrade.go index 619eecc9d4..9bf1075b09 100644 --- a/intersight_gosdk/model_firmware_switch_upgrade.go +++ b/intersight_gosdk/model_firmware_switch_upgrade.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_switch_upgrade_list.go b/intersight_gosdk/model_firmware_switch_upgrade_list.go index 6480545376..634233a7f7 100644 --- a/intersight_gosdk/model_firmware_switch_upgrade_list.go +++ b/intersight_gosdk/model_firmware_switch_upgrade_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_switch_upgrade_response.go b/intersight_gosdk/model_firmware_switch_upgrade_response.go index f10a5bfeef..7d9b5f1521 100644 --- a/intersight_gosdk/model_firmware_switch_upgrade_response.go +++ b/intersight_gosdk/model_firmware_switch_upgrade_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_unsupported_version_upgrade.go b/intersight_gosdk/model_firmware_unsupported_version_upgrade.go index 3163855009..3e91985e7d 100644 --- a/intersight_gosdk/model_firmware_unsupported_version_upgrade.go +++ b/intersight_gosdk/model_firmware_unsupported_version_upgrade.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_unsupported_version_upgrade_list.go b/intersight_gosdk/model_firmware_unsupported_version_upgrade_list.go index fec9a0f6c9..2753c4eb7a 100644 --- a/intersight_gosdk/model_firmware_unsupported_version_upgrade_list.go +++ b/intersight_gosdk/model_firmware_unsupported_version_upgrade_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_unsupported_version_upgrade_response.go b/intersight_gosdk/model_firmware_unsupported_version_upgrade_response.go index 4a6ae949ff..eba7ecec7b 100644 --- a/intersight_gosdk/model_firmware_unsupported_version_upgrade_response.go +++ b/intersight_gosdk/model_firmware_unsupported_version_upgrade_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_upgrade.go b/intersight_gosdk/model_firmware_upgrade.go index 0eecc5ff91..5628a71a3f 100644 --- a/intersight_gosdk/model_firmware_upgrade.go +++ b/intersight_gosdk/model_firmware_upgrade.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_upgrade_base.go b/intersight_gosdk/model_firmware_upgrade_base.go index 5e08f4dfd1..6d7353776c 100644 --- a/intersight_gosdk/model_firmware_upgrade_base.go +++ b/intersight_gosdk/model_firmware_upgrade_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_upgrade_base_relationship.go b/intersight_gosdk/model_firmware_upgrade_base_relationship.go index 769031180a..62f9e5b4c9 100644 --- a/intersight_gosdk/model_firmware_upgrade_base_relationship.go +++ b/intersight_gosdk/model_firmware_upgrade_base_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_upgrade_impact.go b/intersight_gosdk/model_firmware_upgrade_impact.go index 3d5adca77c..286963848d 100644 --- a/intersight_gosdk/model_firmware_upgrade_impact.go +++ b/intersight_gosdk/model_firmware_upgrade_impact.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_upgrade_impact_base.go b/intersight_gosdk/model_firmware_upgrade_impact_base.go index 60a9281d0e..25a4b61abf 100644 --- a/intersight_gosdk/model_firmware_upgrade_impact_base.go +++ b/intersight_gosdk/model_firmware_upgrade_impact_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_upgrade_impact_status.go b/intersight_gosdk/model_firmware_upgrade_impact_status.go index a14289da01..01c57c7c67 100644 --- a/intersight_gosdk/model_firmware_upgrade_impact_status.go +++ b/intersight_gosdk/model_firmware_upgrade_impact_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_upgrade_impact_status_list.go b/intersight_gosdk/model_firmware_upgrade_impact_status_list.go index b3a17c69f4..68f4759194 100644 --- a/intersight_gosdk/model_firmware_upgrade_impact_status_list.go +++ b/intersight_gosdk/model_firmware_upgrade_impact_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_upgrade_impact_status_relationship.go b/intersight_gosdk/model_firmware_upgrade_impact_status_relationship.go index c79b515768..b3d28babbf 100644 --- a/intersight_gosdk/model_firmware_upgrade_impact_status_relationship.go +++ b/intersight_gosdk/model_firmware_upgrade_impact_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_upgrade_impact_status_response.go b/intersight_gosdk/model_firmware_upgrade_impact_status_response.go index 66cccd5c11..f52d70b54f 100644 --- a/intersight_gosdk/model_firmware_upgrade_impact_status_response.go +++ b/intersight_gosdk/model_firmware_upgrade_impact_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_upgrade_list.go b/intersight_gosdk/model_firmware_upgrade_list.go index 2ba325aca7..19f4273dea 100644 --- a/intersight_gosdk/model_firmware_upgrade_list.go +++ b/intersight_gosdk/model_firmware_upgrade_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_upgrade_response.go b/intersight_gosdk/model_firmware_upgrade_response.go index e112f4d110..b5e9823bc7 100644 --- a/intersight_gosdk/model_firmware_upgrade_response.go +++ b/intersight_gosdk/model_firmware_upgrade_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_upgrade_status.go b/intersight_gosdk/model_firmware_upgrade_status.go index 47273e3cd9..127f9e4a19 100644 --- a/intersight_gosdk/model_firmware_upgrade_status.go +++ b/intersight_gosdk/model_firmware_upgrade_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_upgrade_status_list.go b/intersight_gosdk/model_firmware_upgrade_status_list.go index 4ffa2cf495..62d698f28c 100644 --- a/intersight_gosdk/model_firmware_upgrade_status_list.go +++ b/intersight_gosdk/model_firmware_upgrade_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_upgrade_status_relationship.go b/intersight_gosdk/model_firmware_upgrade_status_relationship.go index 23a5d24bf4..cb9adb08e9 100644 --- a/intersight_gosdk/model_firmware_upgrade_status_relationship.go +++ b/intersight_gosdk/model_firmware_upgrade_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_upgrade_status_response.go b/intersight_gosdk/model_firmware_upgrade_status_response.go index c2a6361faa..822a70cdb6 100644 --- a/intersight_gosdk/model_firmware_upgrade_status_response.go +++ b/intersight_gosdk/model_firmware_upgrade_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_upgrade_validity.go b/intersight_gosdk/model_firmware_upgrade_validity.go index 74621c2968..6629971f85 100644 --- a/intersight_gosdk/model_firmware_upgrade_validity.go +++ b/intersight_gosdk/model_firmware_upgrade_validity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_version_map.go b/intersight_gosdk/model_firmware_version_map.go index f3f057de98..adbe997f72 100644 --- a/intersight_gosdk/model_firmware_version_map.go +++ b/intersight_gosdk/model_firmware_version_map.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fmc_device.go b/intersight_gosdk/model_fmc_device.go index 5d5783a33e..6892ea73c3 100644 --- a/intersight_gosdk/model_fmc_device.go +++ b/intersight_gosdk/model_fmc_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fmc_device_ha_pair.go b/intersight_gosdk/model_fmc_device_ha_pair.go index 2c1981b30a..f19cdb5445 100644 --- a/intersight_gosdk/model_fmc_device_ha_pair.go +++ b/intersight_gosdk/model_fmc_device_ha_pair.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fmc_device_ha_pair_list.go b/intersight_gosdk/model_fmc_device_ha_pair_list.go index 6dbaa8b871..2d25067445 100644 --- a/intersight_gosdk/model_fmc_device_ha_pair_list.go +++ b/intersight_gosdk/model_fmc_device_ha_pair_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fmc_device_ha_pair_response.go b/intersight_gosdk/model_fmc_device_ha_pair_response.go index 5eb38e9aeb..b8e6b70478 100644 --- a/intersight_gosdk/model_fmc_device_ha_pair_response.go +++ b/intersight_gosdk/model_fmc_device_ha_pair_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fmc_device_list.go b/intersight_gosdk/model_fmc_device_list.go index f891b6cf37..02aeb5d363 100644 --- a/intersight_gosdk/model_fmc_device_list.go +++ b/intersight_gosdk/model_fmc_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fmc_device_response.go b/intersight_gosdk/model_fmc_device_response.go index b795871a2b..ce872dd3d9 100644 --- a/intersight_gosdk/model_fmc_device_response.go +++ b/intersight_gosdk/model_fmc_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fmc_domain.go b/intersight_gosdk/model_fmc_domain.go index c8a10b932d..1a19c4ab2c 100644 --- a/intersight_gosdk/model_fmc_domain.go +++ b/intersight_gosdk/model_fmc_domain.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fmc_domain_list.go b/intersight_gosdk/model_fmc_domain_list.go index 41e675718e..33706309ab 100644 --- a/intersight_gosdk/model_fmc_domain_list.go +++ b/intersight_gosdk/model_fmc_domain_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fmc_domain_response.go b/intersight_gosdk/model_fmc_domain_response.go index faef663b4d..ee4c17f2d8 100644 --- a/intersight_gosdk/model_fmc_domain_response.go +++ b/intersight_gosdk/model_fmc_domain_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fmc_inventory_entity.go b/intersight_gosdk/model_fmc_inventory_entity.go index c2179b010f..66eaf60544 100644 --- a/intersight_gosdk/model_fmc_inventory_entity.go +++ b/intersight_gosdk/model_fmc_inventory_entity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fmc_physical_interface.go b/intersight_gosdk/model_fmc_physical_interface.go index 94bfc789fe..a22b8841b4 100644 --- a/intersight_gosdk/model_fmc_physical_interface.go +++ b/intersight_gosdk/model_fmc_physical_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fmc_physical_interface_list.go b/intersight_gosdk/model_fmc_physical_interface_list.go index f89f95e156..f2b7a16d04 100644 --- a/intersight_gosdk/model_fmc_physical_interface_list.go +++ b/intersight_gosdk/model_fmc_physical_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fmc_physical_interface_response.go b/intersight_gosdk/model_fmc_physical_interface_response.go index f134384d51..a62ea2b90f 100644 --- a/intersight_gosdk/model_fmc_physical_interface_response.go +++ b/intersight_gosdk/model_fmc_physical_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_catalog.go b/intersight_gosdk/model_forecast_catalog.go index 2bc00e70b1..946e5897e2 100644 --- a/intersight_gosdk/model_forecast_catalog.go +++ b/intersight_gosdk/model_forecast_catalog.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type ForecastCatalog struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The time at which the regression model needs to run for all the metrics specified in catalog. - SchedTime *string `json:"SchedTime,omitempty"` + SchedTime *string `json:"SchedTime,omitempty" validate:"regexp=^$|^[0-9]{2}:[0-9]{2}:[0-9]{2}"` // The catalog version used in forecast configuration service. Version *string `json:"Version,omitempty"` // An array of relationships to forecastDefinition resources. @@ -308,7 +308,7 @@ func (o *ForecastCatalog) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The time at which the regression model needs to run for all the metrics specified in catalog. - SchedTime *string `json:"SchedTime,omitempty"` + SchedTime *string `json:"SchedTime,omitempty" validate:"regexp=^$|^[0-9]{2}:[0-9]{2}:[0-9]{2}"` // The catalog version used in forecast configuration service. Version *string `json:"Version,omitempty"` // An array of relationships to forecastDefinition resources. diff --git a/intersight_gosdk/model_forecast_catalog_list.go b/intersight_gosdk/model_forecast_catalog_list.go index 1c909552df..7304e4d99d 100644 --- a/intersight_gosdk/model_forecast_catalog_list.go +++ b/intersight_gosdk/model_forecast_catalog_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_catalog_relationship.go b/intersight_gosdk/model_forecast_catalog_relationship.go index 306636e7df..e2ab770141 100644 --- a/intersight_gosdk/model_forecast_catalog_relationship.go +++ b/intersight_gosdk/model_forecast_catalog_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_catalog_response.go b/intersight_gosdk/model_forecast_catalog_response.go index b823eee8ea..4565635ed3 100644 --- a/intersight_gosdk/model_forecast_catalog_response.go +++ b/intersight_gosdk/model_forecast_catalog_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_definition.go b/intersight_gosdk/model_forecast_definition.go index ecf41b9af1..852301c5b3 100644 --- a/intersight_gosdk/model_forecast_definition.go +++ b/intersight_gosdk/model_forecast_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_definition_list.go b/intersight_gosdk/model_forecast_definition_list.go index 058fc2700c..8f6baffbaf 100644 --- a/intersight_gosdk/model_forecast_definition_list.go +++ b/intersight_gosdk/model_forecast_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_definition_relationship.go b/intersight_gosdk/model_forecast_definition_relationship.go index ce3da08867..a84fd02e71 100644 --- a/intersight_gosdk/model_forecast_definition_relationship.go +++ b/intersight_gosdk/model_forecast_definition_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_definition_response.go b/intersight_gosdk/model_forecast_definition_response.go index da228342f4..00b142a8c9 100644 --- a/intersight_gosdk/model_forecast_definition_response.go +++ b/intersight_gosdk/model_forecast_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_instance.go b/intersight_gosdk/model_forecast_instance.go index 3d2aa91da7..af8f4bdc2c 100644 --- a/intersight_gosdk/model_forecast_instance.go +++ b/intersight_gosdk/model_forecast_instance.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_instance_list.go b/intersight_gosdk/model_forecast_instance_list.go index fe378c04f0..fbb89e6170 100644 --- a/intersight_gosdk/model_forecast_instance_list.go +++ b/intersight_gosdk/model_forecast_instance_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_instance_relationship.go b/intersight_gosdk/model_forecast_instance_relationship.go index be9939dc10..f43df681bc 100644 --- a/intersight_gosdk/model_forecast_instance_relationship.go +++ b/intersight_gosdk/model_forecast_instance_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_instance_response.go b/intersight_gosdk/model_forecast_instance_response.go index ceaab93fdc..2b00d4da17 100644 --- a/intersight_gosdk/model_forecast_instance_response.go +++ b/intersight_gosdk/model_forecast_instance_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_model.go b/intersight_gosdk/model_forecast_model.go index e7bec88fdd..fb3938ebb9 100644 --- a/intersight_gosdk/model_forecast_model.go +++ b/intersight_gosdk/model_forecast_model.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_graphics_card.go b/intersight_gosdk/model_graphics_card.go index 095f953ff2..2fdb44e1dd 100644 --- a/intersight_gosdk/model_graphics_card.go +++ b/intersight_gosdk/model_graphics_card.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_graphics_card_list.go b/intersight_gosdk/model_graphics_card_list.go index 8242a3bebf..94df337852 100644 --- a/intersight_gosdk/model_graphics_card_list.go +++ b/intersight_gosdk/model_graphics_card_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_graphics_card_relationship.go b/intersight_gosdk/model_graphics_card_relationship.go index a3b582f36a..639bda19a9 100644 --- a/intersight_gosdk/model_graphics_card_relationship.go +++ b/intersight_gosdk/model_graphics_card_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_graphics_card_response.go b/intersight_gosdk/model_graphics_card_response.go index be3a95b599..806661eed6 100644 --- a/intersight_gosdk/model_graphics_card_response.go +++ b/intersight_gosdk/model_graphics_card_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_graphics_controller.go b/intersight_gosdk/model_graphics_controller.go index 2137a17313..3c5519c0a4 100644 --- a/intersight_gosdk/model_graphics_controller.go +++ b/intersight_gosdk/model_graphics_controller.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_graphics_controller_list.go b/intersight_gosdk/model_graphics_controller_list.go index 4b91e95fc5..3d16b9f636 100644 --- a/intersight_gosdk/model_graphics_controller_list.go +++ b/intersight_gosdk/model_graphics_controller_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_graphics_controller_relationship.go b/intersight_gosdk/model_graphics_controller_relationship.go index 76730f4d5b..6dab36ae64 100644 --- a/intersight_gosdk/model_graphics_controller_relationship.go +++ b/intersight_gosdk/model_graphics_controller_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_graphics_controller_response.go b/intersight_gosdk/model_graphics_controller_response.go index 1446464cb6..d3e603750a 100644 --- a/intersight_gosdk/model_graphics_controller_response.go +++ b/intersight_gosdk/model_graphics_controller_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_compatibility_status.go b/intersight_gosdk/model_hcl_compatibility_status.go index 45072b32b4..dcc6ea734e 100644 --- a/intersight_gosdk/model_hcl_compatibility_status.go +++ b/intersight_gosdk/model_hcl_compatibility_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_constraint.go b/intersight_gosdk/model_hcl_constraint.go index 205f325cec..34de7e80da 100644 --- a/intersight_gosdk/model_hcl_constraint.go +++ b/intersight_gosdk/model_hcl_constraint.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_driver_image.go b/intersight_gosdk/model_hcl_driver_image.go index 5164565629..115b2244c3 100644 --- a/intersight_gosdk/model_hcl_driver_image.go +++ b/intersight_gosdk/model_hcl_driver_image.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_driver_image_list.go b/intersight_gosdk/model_hcl_driver_image_list.go index 10c9e82ad7..34b9d627bc 100644 --- a/intersight_gosdk/model_hcl_driver_image_list.go +++ b/intersight_gosdk/model_hcl_driver_image_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_driver_image_response.go b/intersight_gosdk/model_hcl_driver_image_response.go index fd85652c16..3926d0c142 100644 --- a/intersight_gosdk/model_hcl_driver_image_response.go +++ b/intersight_gosdk/model_hcl_driver_image_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_exempted_catalog.go b/intersight_gosdk/model_hcl_exempted_catalog.go index 66aa486668..be5e80336b 100644 --- a/intersight_gosdk/model_hcl_exempted_catalog.go +++ b/intersight_gosdk/model_hcl_exempted_catalog.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_exempted_catalog_list.go b/intersight_gosdk/model_hcl_exempted_catalog_list.go index 72dc63dc11..88966c369f 100644 --- a/intersight_gosdk/model_hcl_exempted_catalog_list.go +++ b/intersight_gosdk/model_hcl_exempted_catalog_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_exempted_catalog_response.go b/intersight_gosdk/model_hcl_exempted_catalog_response.go index 97d1e0c93f..b802281797 100644 --- a/intersight_gosdk/model_hcl_exempted_catalog_response.go +++ b/intersight_gosdk/model_hcl_exempted_catalog_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_firmware.go b/intersight_gosdk/model_hcl_firmware.go index 2ffee84a86..865000ed0b 100644 --- a/intersight_gosdk/model_hcl_firmware.go +++ b/intersight_gosdk/model_hcl_firmware.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_hardware_compatibility_profile.go b/intersight_gosdk/model_hcl_hardware_compatibility_profile.go index 9199cc18b9..4081df944a 100644 --- a/intersight_gosdk/model_hcl_hardware_compatibility_profile.go +++ b/intersight_gosdk/model_hcl_hardware_compatibility_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_hw_catalog_info.go b/intersight_gosdk/model_hcl_hw_catalog_info.go index b4ea64a5de..1ed3c18fd8 100644 --- a/intersight_gosdk/model_hcl_hw_catalog_info.go +++ b/intersight_gosdk/model_hcl_hw_catalog_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_hw_catalog_info_list.go b/intersight_gosdk/model_hcl_hw_catalog_info_list.go index 23bb45b4d4..d142d347c7 100644 --- a/intersight_gosdk/model_hcl_hw_catalog_info_list.go +++ b/intersight_gosdk/model_hcl_hw_catalog_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_hw_catalog_info_relationship.go b/intersight_gosdk/model_hcl_hw_catalog_info_relationship.go index 398852ef51..fb54786105 100644 --- a/intersight_gosdk/model_hcl_hw_catalog_info_relationship.go +++ b/intersight_gosdk/model_hcl_hw_catalog_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_hw_catalog_info_response.go b/intersight_gosdk/model_hcl_hw_catalog_info_response.go index 6752ef0197..626a05416b 100644 --- a/intersight_gosdk/model_hcl_hw_catalog_info_response.go +++ b/intersight_gosdk/model_hcl_hw_catalog_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info.go b/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info.go index fd7315ddef..f50af61d2b 100644 --- a/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info.go +++ b/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info_list.go b/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info_list.go index 4431611c27..93cb9765de 100644 --- a/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info_list.go +++ b/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info_relationship.go b/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info_relationship.go index c1d215cbef..de0e781584 100644 --- a/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info_relationship.go +++ b/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info_response.go b/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info_response.go index af4c50538d..c26c7ab1a0 100644 --- a/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info_response.go +++ b/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_operating_system.go b/intersight_gosdk/model_hcl_operating_system.go index 8c049fb13b..197f091d23 100644 --- a/intersight_gosdk/model_hcl_operating_system.go +++ b/intersight_gosdk/model_hcl_operating_system.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_operating_system_list.go b/intersight_gosdk/model_hcl_operating_system_list.go index be3a0e1600..7b36691705 100644 --- a/intersight_gosdk/model_hcl_operating_system_list.go +++ b/intersight_gosdk/model_hcl_operating_system_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_operating_system_relationship.go b/intersight_gosdk/model_hcl_operating_system_relationship.go index b4f42b6001..6a876e89c6 100644 --- a/intersight_gosdk/model_hcl_operating_system_relationship.go +++ b/intersight_gosdk/model_hcl_operating_system_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_operating_system_response.go b/intersight_gosdk/model_hcl_operating_system_response.go index c26fe9a11d..5482a7f5b6 100644 --- a/intersight_gosdk/model_hcl_operating_system_response.go +++ b/intersight_gosdk/model_hcl_operating_system_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_operating_system_vendor.go b/intersight_gosdk/model_hcl_operating_system_vendor.go index 9401e7daec..cd6cdc8f87 100644 --- a/intersight_gosdk/model_hcl_operating_system_vendor.go +++ b/intersight_gosdk/model_hcl_operating_system_vendor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_operating_system_vendor_list.go b/intersight_gosdk/model_hcl_operating_system_vendor_list.go index dedadb9ae6..a8e36eb744 100644 --- a/intersight_gosdk/model_hcl_operating_system_vendor_list.go +++ b/intersight_gosdk/model_hcl_operating_system_vendor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_operating_system_vendor_relationship.go b/intersight_gosdk/model_hcl_operating_system_vendor_relationship.go index 6ceff77cee..63970fb1ba 100644 --- a/intersight_gosdk/model_hcl_operating_system_vendor_relationship.go +++ b/intersight_gosdk/model_hcl_operating_system_vendor_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_operating_system_vendor_response.go b/intersight_gosdk/model_hcl_operating_system_vendor_response.go index 5725261f14..8b84ebc097 100644 --- a/intersight_gosdk/model_hcl_operating_system_vendor_response.go +++ b/intersight_gosdk/model_hcl_operating_system_vendor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_product.go b/intersight_gosdk/model_hcl_product.go index ab8f3e6139..634cfad74d 100644 --- a/intersight_gosdk/model_hcl_product.go +++ b/intersight_gosdk/model_hcl_product.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_server_hw_catalog_info.go b/intersight_gosdk/model_hcl_server_hw_catalog_info.go index 533b702279..1ae447565b 100644 --- a/intersight_gosdk/model_hcl_server_hw_catalog_info.go +++ b/intersight_gosdk/model_hcl_server_hw_catalog_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_server_hw_catalog_info_list.go b/intersight_gosdk/model_hcl_server_hw_catalog_info_list.go index b7d737f969..3e949f2d6d 100644 --- a/intersight_gosdk/model_hcl_server_hw_catalog_info_list.go +++ b/intersight_gosdk/model_hcl_server_hw_catalog_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_server_hw_catalog_info_relationship.go b/intersight_gosdk/model_hcl_server_hw_catalog_info_relationship.go index 2fcfc1724e..fabd48eb42 100644 --- a/intersight_gosdk/model_hcl_server_hw_catalog_info_relationship.go +++ b/intersight_gosdk/model_hcl_server_hw_catalog_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_server_hw_catalog_info_response.go b/intersight_gosdk/model_hcl_server_hw_catalog_info_response.go index 79f1df7f76..68a216ec91 100644 --- a/intersight_gosdk/model_hcl_server_hw_catalog_info_response.go +++ b/intersight_gosdk/model_hcl_server_hw_catalog_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_supported_driver_name.go b/intersight_gosdk/model_hcl_supported_driver_name.go index 9baa250eb6..145d2bbd81 100644 --- a/intersight_gosdk/model_hcl_supported_driver_name.go +++ b/intersight_gosdk/model_hcl_supported_driver_name.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_abstract_app_setting.go b/intersight_gosdk/model_hyperflex_abstract_app_setting.go index ad75d52ac8..7b8ccf33ed 100644 --- a/intersight_gosdk/model_hyperflex_abstract_app_setting.go +++ b/intersight_gosdk/model_hyperflex_abstract_app_setting.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_alarm.go b/intersight_gosdk/model_hyperflex_alarm.go index c265103149..e2ee56dec8 100644 --- a/intersight_gosdk/model_hyperflex_alarm.go +++ b/intersight_gosdk/model_hyperflex_alarm.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_alarm_list.go b/intersight_gosdk/model_hyperflex_alarm_list.go index 1747d23122..a86d54ae78 100644 --- a/intersight_gosdk/model_hyperflex_alarm_list.go +++ b/intersight_gosdk/model_hyperflex_alarm_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_alarm_relationship.go b/intersight_gosdk/model_hyperflex_alarm_relationship.go index 03a6d70ee9..d52476e803 100644 --- a/intersight_gosdk/model_hyperflex_alarm_relationship.go +++ b/intersight_gosdk/model_hyperflex_alarm_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_alarm_response.go b/intersight_gosdk/model_hyperflex_alarm_response.go index 486b0df852..88f2045459 100644 --- a/intersight_gosdk/model_hyperflex_alarm_response.go +++ b/intersight_gosdk/model_hyperflex_alarm_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_alarm_summary.go b/intersight_gosdk/model_hyperflex_alarm_summary.go index 317f1af01c..94076ec8c9 100644 --- a/intersight_gosdk/model_hyperflex_alarm_summary.go +++ b/intersight_gosdk/model_hyperflex_alarm_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_app_catalog.go b/intersight_gosdk/model_hyperflex_app_catalog.go index bf07ab036e..23d28e27d7 100644 --- a/intersight_gosdk/model_hyperflex_app_catalog.go +++ b/intersight_gosdk/model_hyperflex_app_catalog.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_app_catalog_list.go b/intersight_gosdk/model_hyperflex_app_catalog_list.go index 9febc4e4c0..93cf4e1f78 100644 --- a/intersight_gosdk/model_hyperflex_app_catalog_list.go +++ b/intersight_gosdk/model_hyperflex_app_catalog_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_app_catalog_relationship.go b/intersight_gosdk/model_hyperflex_app_catalog_relationship.go index 6b94df4377..9b579c9f26 100644 --- a/intersight_gosdk/model_hyperflex_app_catalog_relationship.go +++ b/intersight_gosdk/model_hyperflex_app_catalog_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_app_catalog_response.go b/intersight_gosdk/model_hyperflex_app_catalog_response.go index d76d91baf7..30c5213c0d 100644 --- a/intersight_gosdk/model_hyperflex_app_catalog_response.go +++ b/intersight_gosdk/model_hyperflex_app_catalog_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_app_setting_constraint.go b/intersight_gosdk/model_hyperflex_app_setting_constraint.go index be367a4039..b8cd998644 100644 --- a/intersight_gosdk/model_hyperflex_app_setting_constraint.go +++ b/intersight_gosdk/model_hyperflex_app_setting_constraint.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_auto_support_policy.go b/intersight_gosdk/model_hyperflex_auto_support_policy.go index d86ad026b2..6006205821 100644 --- a/intersight_gosdk/model_hyperflex_auto_support_policy.go +++ b/intersight_gosdk/model_hyperflex_auto_support_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type HyperflexAutoSupportPolicy struct { // Enable or disable Auto-Support. AdminState *bool `json:"AdminState,omitempty"` // The recipient email address for support tickets. - ServiceTicketReceipient *string `json:"ServiceTicketReceipient,omitempty"` + ServiceTicketReceipient *string "json:\"ServiceTicketReceipient,omitempty\" validate:\"regexp=^$|^[a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$\"" // An array of relationships to hyperflexClusterProfile resources. ClusterProfiles []HyperflexClusterProfileRelationship `json:"ClusterProfiles,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` @@ -361,7 +361,7 @@ func (o *HyperflexAutoSupportPolicy) UnmarshalJSON(data []byte) (err error) { // Enable or disable Auto-Support. AdminState *bool `json:"AdminState,omitempty"` // The recipient email address for support tickets. - ServiceTicketReceipient *string `json:"ServiceTicketReceipient,omitempty"` + ServiceTicketReceipient *string "json:\"ServiceTicketReceipient,omitempty\" validate:\"regexp=^$|^[a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$\"" // An array of relationships to hyperflexClusterProfile resources. ClusterProfiles []HyperflexClusterProfileRelationship `json:"ClusterProfiles,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` diff --git a/intersight_gosdk/model_hyperflex_auto_support_policy_list.go b/intersight_gosdk/model_hyperflex_auto_support_policy_list.go index 0749382301..f7e3dfca52 100644 --- a/intersight_gosdk/model_hyperflex_auto_support_policy_list.go +++ b/intersight_gosdk/model_hyperflex_auto_support_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_auto_support_policy_relationship.go b/intersight_gosdk/model_hyperflex_auto_support_policy_relationship.go index 67d57b21e7..013464e4c9 100644 --- a/intersight_gosdk/model_hyperflex_auto_support_policy_relationship.go +++ b/intersight_gosdk/model_hyperflex_auto_support_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_auto_support_policy_response.go b/intersight_gosdk/model_hyperflex_auto_support_policy_response.go index 204af6ba7e..d433006256 100644 --- a/intersight_gosdk/model_hyperflex_auto_support_policy_response.go +++ b/intersight_gosdk/model_hyperflex_auto_support_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_backup_cluster.go b/intersight_gosdk/model_hyperflex_backup_cluster.go index f8bff2e757..0d991a1593 100644 --- a/intersight_gosdk/model_hyperflex_backup_cluster.go +++ b/intersight_gosdk/model_hyperflex_backup_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_backup_cluster_list.go b/intersight_gosdk/model_hyperflex_backup_cluster_list.go index f075c29546..50eb6a935b 100644 --- a/intersight_gosdk/model_hyperflex_backup_cluster_list.go +++ b/intersight_gosdk/model_hyperflex_backup_cluster_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_backup_cluster_relationship.go b/intersight_gosdk/model_hyperflex_backup_cluster_relationship.go index 25fbb540b1..ea8a8dfec6 100644 --- a/intersight_gosdk/model_hyperflex_backup_cluster_relationship.go +++ b/intersight_gosdk/model_hyperflex_backup_cluster_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_backup_cluster_response.go b/intersight_gosdk/model_hyperflex_backup_cluster_response.go index 0953db0f4b..ecc21a65c1 100644 --- a/intersight_gosdk/model_hyperflex_backup_cluster_response.go +++ b/intersight_gosdk/model_hyperflex_backup_cluster_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_backup_policy_settings.go b/intersight_gosdk/model_hyperflex_backup_policy_settings.go index 54bba529a7..060490251a 100644 --- a/intersight_gosdk/model_hyperflex_backup_policy_settings.go +++ b/intersight_gosdk/model_hyperflex_backup_policy_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_base_cluster.go b/intersight_gosdk/model_hyperflex_base_cluster.go index e5104b8053..b47a3be3ea 100644 --- a/intersight_gosdk/model_hyperflex_base_cluster.go +++ b/intersight_gosdk/model_hyperflex_base_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_base_cluster_relationship.go b/intersight_gosdk/model_hyperflex_base_cluster_relationship.go index 923b68e2c5..ca48545b74 100644 --- a/intersight_gosdk/model_hyperflex_base_cluster_relationship.go +++ b/intersight_gosdk/model_hyperflex_base_cluster_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_capability.go b/intersight_gosdk/model_hyperflex_capability.go index 1e1e9ee7bf..2867d364dd 100644 --- a/intersight_gosdk/model_hyperflex_capability.go +++ b/intersight_gosdk/model_hyperflex_capability.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_capability_info.go b/intersight_gosdk/model_hyperflex_capability_info.go index 62ffaf2c40..506ee2ec3c 100644 --- a/intersight_gosdk/model_hyperflex_capability_info.go +++ b/intersight_gosdk/model_hyperflex_capability_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_capability_info_list.go b/intersight_gosdk/model_hyperflex_capability_info_list.go index 845f880c6d..63b967e289 100644 --- a/intersight_gosdk/model_hyperflex_capability_info_list.go +++ b/intersight_gosdk/model_hyperflex_capability_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_capability_info_relationship.go b/intersight_gosdk/model_hyperflex_capability_info_relationship.go index 08f8ab7568..099a802d2e 100644 --- a/intersight_gosdk/model_hyperflex_capability_info_relationship.go +++ b/intersight_gosdk/model_hyperflex_capability_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_capability_info_response.go b/intersight_gosdk/model_hyperflex_capability_info_response.go index 2f112c4a4f..75966440cd 100644 --- a/intersight_gosdk/model_hyperflex_capability_info_response.go +++ b/intersight_gosdk/model_hyperflex_capability_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster.go b/intersight_gosdk/model_hyperflex_cluster.go index 53391572fd..e824b4757d 100644 --- a/intersight_gosdk/model_hyperflex_cluster.go +++ b/intersight_gosdk/model_hyperflex_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_backup_policy.go b/intersight_gosdk/model_hyperflex_cluster_backup_policy.go index 168688e6b1..e71ab39d84 100644 --- a/intersight_gosdk/model_hyperflex_cluster_backup_policy.go +++ b/intersight_gosdk/model_hyperflex_cluster_backup_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_backup_policy_deployment.go b/intersight_gosdk/model_hyperflex_cluster_backup_policy_deployment.go index c3ec594126..835e4e39f8 100644 --- a/intersight_gosdk/model_hyperflex_cluster_backup_policy_deployment.go +++ b/intersight_gosdk/model_hyperflex_cluster_backup_policy_deployment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_backup_policy_deployment_list.go b/intersight_gosdk/model_hyperflex_cluster_backup_policy_deployment_list.go index 7542a085ee..99a3923b46 100644 --- a/intersight_gosdk/model_hyperflex_cluster_backup_policy_deployment_list.go +++ b/intersight_gosdk/model_hyperflex_cluster_backup_policy_deployment_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_backup_policy_deployment_response.go b/intersight_gosdk/model_hyperflex_cluster_backup_policy_deployment_response.go index 3ca6f45eb4..1ac2f29120 100644 --- a/intersight_gosdk/model_hyperflex_cluster_backup_policy_deployment_response.go +++ b/intersight_gosdk/model_hyperflex_cluster_backup_policy_deployment_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory.go b/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory.go index 614749c437..c41c30e949 100644 --- a/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory.go +++ b/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory_list.go b/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory_list.go index f1902b0d54..bc1165210a 100644 --- a/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory_list.go +++ b/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory_relationship.go b/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory_relationship.go index 282e23fa98..62fa0f7223 100644 --- a/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory_relationship.go +++ b/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory_response.go b/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory_response.go index 7db91058a4..99d091805c 100644 --- a/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory_response.go +++ b/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_backup_policy_list.go b/intersight_gosdk/model_hyperflex_cluster_backup_policy_list.go index 235e1bbbf6..795ed13975 100644 --- a/intersight_gosdk/model_hyperflex_cluster_backup_policy_list.go +++ b/intersight_gosdk/model_hyperflex_cluster_backup_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_backup_policy_response.go b/intersight_gosdk/model_hyperflex_cluster_backup_policy_response.go index b6c45c2e87..b7a490093d 100644 --- a/intersight_gosdk/model_hyperflex_cluster_backup_policy_response.go +++ b/intersight_gosdk/model_hyperflex_cluster_backup_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_health_check_execution_snapshot.go b/intersight_gosdk/model_hyperflex_cluster_health_check_execution_snapshot.go index a12575ae18..db7035ff98 100644 --- a/intersight_gosdk/model_hyperflex_cluster_health_check_execution_snapshot.go +++ b/intersight_gosdk/model_hyperflex_cluster_health_check_execution_snapshot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_health_check_execution_snapshot_list.go b/intersight_gosdk/model_hyperflex_cluster_health_check_execution_snapshot_list.go index 90f3d8e4e3..ad68878ed9 100644 --- a/intersight_gosdk/model_hyperflex_cluster_health_check_execution_snapshot_list.go +++ b/intersight_gosdk/model_hyperflex_cluster_health_check_execution_snapshot_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_health_check_execution_snapshot_response.go b/intersight_gosdk/model_hyperflex_cluster_health_check_execution_snapshot_response.go index cd5fcbff04..51672c357c 100644 --- a/intersight_gosdk/model_hyperflex_cluster_health_check_execution_snapshot_response.go +++ b/intersight_gosdk/model_hyperflex_cluster_health_check_execution_snapshot_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_list.go b/intersight_gosdk/model_hyperflex_cluster_list.go index a619303da8..a388fa1ba7 100644 --- a/intersight_gosdk/model_hyperflex_cluster_list.go +++ b/intersight_gosdk/model_hyperflex_cluster_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_network_policy.go b/intersight_gosdk/model_hyperflex_cluster_network_policy.go index dc7284d597..616aa99493 100644 --- a/intersight_gosdk/model_hyperflex_cluster_network_policy.go +++ b/intersight_gosdk/model_hyperflex_cluster_network_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_network_policy_list.go b/intersight_gosdk/model_hyperflex_cluster_network_policy_list.go index de3959bcae..43f5089e99 100644 --- a/intersight_gosdk/model_hyperflex_cluster_network_policy_list.go +++ b/intersight_gosdk/model_hyperflex_cluster_network_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_network_policy_relationship.go b/intersight_gosdk/model_hyperflex_cluster_network_policy_relationship.go index 6f46ca4399..acf81ad440 100644 --- a/intersight_gosdk/model_hyperflex_cluster_network_policy_relationship.go +++ b/intersight_gosdk/model_hyperflex_cluster_network_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_network_policy_response.go b/intersight_gosdk/model_hyperflex_cluster_network_policy_response.go index 823b285bd4..730ba965b3 100644 --- a/intersight_gosdk/model_hyperflex_cluster_network_policy_response.go +++ b/intersight_gosdk/model_hyperflex_cluster_network_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_profile.go b/intersight_gosdk/model_hyperflex_cluster_profile.go index c2ae5e95df..78d82bdcb8 100644 --- a/intersight_gosdk/model_hyperflex_cluster_profile.go +++ b/intersight_gosdk/model_hyperflex_cluster_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,35 +30,35 @@ type HyperflexClusterProfile struct { ObjectType string `json:"ObjectType"` ClusterInternalSubnet NullableCommIpV4Interface `json:"ClusterInternalSubnet,omitempty"` // The storage data IP address for the HyperFlex cluster. - DataIpAddress *string `json:"DataIpAddress,omitempty"` + DataIpAddress *string `json:"DataIpAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The node name prefix that is used to automatically generate the default hostname for each server. A dash (-) will be appended to the prefix followed by the node number to form a hostname. This default naming scheme can be manually overridden in the node configuration. The maximum length of a prefix is 60, must only contain alphanumeric characters or dash (-), and must start with an alphanumeric character. - HostNamePrefix *string `json:"HostNamePrefix,omitempty"` + HostNamePrefix *string `json:"HostNamePrefix,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-]{1,59}$"` // The hypervisor control virtual IP address for the HyperFlex compute cluster that is used for node/pod management. - HypervisorControlIpAddress *string `json:"HypervisorControlIpAddress,omitempty"` + HypervisorControlIpAddress *string `json:"HypervisorControlIpAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The hypervisor type for the HyperFlex cluster. * `ESXi` - The hypervisor running on the HyperFlex cluster is a Vmware ESXi hypervisor of any version. * `Hyper-V` - The hypervisor running on the HyperFlex cluster is Microsoft Hyper-V. * `Unknown` - The hypervisor running on the HyperFlex cluster is not known. HypervisorType *string `json:"HypervisorType,omitempty"` // The NIC based setup being set/unset determined by inventory. IsNicBased *bool `json:"IsNicBased,omitempty"` // The MAC address prefix in the form of 00:25:B5:XX. - MacAddressPrefix *string `json:"MacAddressPrefix,omitempty"` + MacAddressPrefix *string `json:"MacAddressPrefix,omitempty" validate:"regexp=^$|^00:25:B5:[0-9a-fA-F]{2}$"` // The management IP address for the HyperFlex cluster. - MgmtIpAddress *string `json:"MgmtIpAddress,omitempty"` + MgmtIpAddress *string `json:"MgmtIpAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The management platform for the HyperFlex cluster. * `FI` - The host servers used in the cluster deployment are managed by a UCS Fabric Interconnect. * `EDGE` - The host servers used in the cluster deployment are standalone severs. * `DC-No-FI` - The host servers used in the cluster deployment are standalone servers with the DC Advantage license. MgmtPlatform *string `json:"MgmtPlatform,omitempty"` // The number of copies of each data block written. Replication *int64 `json:"Replication,omitempty"` // The storage data IP address for the HyperFlex cluster. - StorageClientIpAddress *string `json:"StorageClientIpAddress,omitempty"` + StorageClientIpAddress *string `json:"StorageClientIpAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The netmask for the Storage client network IP address. StorageClientNetmask *string `json:"StorageClientNetmask,omitempty"` StorageClientVlan NullableHyperflexNamedVlan `json:"StorageClientVlan,omitempty"` // The auxiliary storage IP address for the HyperFlex cluster. For two node clusters, this is the IP address of the auxiliary ZK controller. - StorageClusterAuxiliaryIp *string `json:"StorageClusterAuxiliaryIp,omitempty"` + StorageClusterAuxiliaryIp *string `json:"StorageClusterAuxiliaryIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` StorageDataVlan NullableHyperflexNamedVlan `json:"StorageDataVlan,omitempty"` // The storage type used for the HyperFlex cluster (HyperFlex Storage or 3rd party). * `HyperFlexDp` - The type of storage is HyperFlex Data Platform. * `ThirdParty` - The type of storage is 3rd Party Storage (PureStorage, etc..). StorageType *string `json:"StorageType,omitempty"` // The WWxN prefix in the form of 20:00:00:25:B5:XX. - WwxnPrefix *string `json:"WwxnPrefix,omitempty"` + WwxnPrefix *string `json:"WwxnPrefix,omitempty" validate:"regexp=^$|^20:00:00:25:B5:[0-9a-fA-F]{2}$"` AssociatedCluster NullableHyperflexClusterRelationship `json:"AssociatedCluster,omitempty"` AutoSupport NullableHyperflexAutoSupportPolicyRelationship `json:"AutoSupport,omitempty"` ClusterNetwork NullableHyperflexClusterNetworkPolicyRelationship `json:"ClusterNetwork,omitempty"` @@ -1700,35 +1700,35 @@ func (o *HyperflexClusterProfile) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` ClusterInternalSubnet NullableCommIpV4Interface `json:"ClusterInternalSubnet,omitempty"` // The storage data IP address for the HyperFlex cluster. - DataIpAddress *string `json:"DataIpAddress,omitempty"` + DataIpAddress *string `json:"DataIpAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The node name prefix that is used to automatically generate the default hostname for each server. A dash (-) will be appended to the prefix followed by the node number to form a hostname. This default naming scheme can be manually overridden in the node configuration. The maximum length of a prefix is 60, must only contain alphanumeric characters or dash (-), and must start with an alphanumeric character. - HostNamePrefix *string `json:"HostNamePrefix,omitempty"` + HostNamePrefix *string `json:"HostNamePrefix,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-]{1,59}$"` // The hypervisor control virtual IP address for the HyperFlex compute cluster that is used for node/pod management. - HypervisorControlIpAddress *string `json:"HypervisorControlIpAddress,omitempty"` + HypervisorControlIpAddress *string `json:"HypervisorControlIpAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The hypervisor type for the HyperFlex cluster. * `ESXi` - The hypervisor running on the HyperFlex cluster is a Vmware ESXi hypervisor of any version. * `Hyper-V` - The hypervisor running on the HyperFlex cluster is Microsoft Hyper-V. * `Unknown` - The hypervisor running on the HyperFlex cluster is not known. HypervisorType *string `json:"HypervisorType,omitempty"` // The NIC based setup being set/unset determined by inventory. IsNicBased *bool `json:"IsNicBased,omitempty"` // The MAC address prefix in the form of 00:25:B5:XX. - MacAddressPrefix *string `json:"MacAddressPrefix,omitempty"` + MacAddressPrefix *string `json:"MacAddressPrefix,omitempty" validate:"regexp=^$|^00:25:B5:[0-9a-fA-F]{2}$"` // The management IP address for the HyperFlex cluster. - MgmtIpAddress *string `json:"MgmtIpAddress,omitempty"` + MgmtIpAddress *string `json:"MgmtIpAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The management platform for the HyperFlex cluster. * `FI` - The host servers used in the cluster deployment are managed by a UCS Fabric Interconnect. * `EDGE` - The host servers used in the cluster deployment are standalone severs. * `DC-No-FI` - The host servers used in the cluster deployment are standalone servers with the DC Advantage license. MgmtPlatform *string `json:"MgmtPlatform,omitempty"` // The number of copies of each data block written. Replication *int64 `json:"Replication,omitempty"` // The storage data IP address for the HyperFlex cluster. - StorageClientIpAddress *string `json:"StorageClientIpAddress,omitempty"` + StorageClientIpAddress *string `json:"StorageClientIpAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The netmask for the Storage client network IP address. StorageClientNetmask *string `json:"StorageClientNetmask,omitempty"` StorageClientVlan NullableHyperflexNamedVlan `json:"StorageClientVlan,omitempty"` // The auxiliary storage IP address for the HyperFlex cluster. For two node clusters, this is the IP address of the auxiliary ZK controller. - StorageClusterAuxiliaryIp *string `json:"StorageClusterAuxiliaryIp,omitempty"` + StorageClusterAuxiliaryIp *string `json:"StorageClusterAuxiliaryIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` StorageDataVlan NullableHyperflexNamedVlan `json:"StorageDataVlan,omitempty"` // The storage type used for the HyperFlex cluster (HyperFlex Storage or 3rd party). * `HyperFlexDp` - The type of storage is HyperFlex Data Platform. * `ThirdParty` - The type of storage is 3rd Party Storage (PureStorage, etc..). StorageType *string `json:"StorageType,omitempty"` // The WWxN prefix in the form of 20:00:00:25:B5:XX. - WwxnPrefix *string `json:"WwxnPrefix,omitempty"` + WwxnPrefix *string `json:"WwxnPrefix,omitempty" validate:"regexp=^$|^20:00:00:25:B5:[0-9a-fA-F]{2}$"` AssociatedCluster NullableHyperflexClusterRelationship `json:"AssociatedCluster,omitempty"` AutoSupport NullableHyperflexAutoSupportPolicyRelationship `json:"AutoSupport,omitempty"` ClusterNetwork NullableHyperflexClusterNetworkPolicyRelationship `json:"ClusterNetwork,omitempty"` diff --git a/intersight_gosdk/model_hyperflex_cluster_profile_list.go b/intersight_gosdk/model_hyperflex_cluster_profile_list.go index ef96182f1d..c782562434 100644 --- a/intersight_gosdk/model_hyperflex_cluster_profile_list.go +++ b/intersight_gosdk/model_hyperflex_cluster_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_profile_relationship.go b/intersight_gosdk/model_hyperflex_cluster_profile_relationship.go index 0ed8a9a376..705b7cbffb 100644 --- a/intersight_gosdk/model_hyperflex_cluster_profile_relationship.go +++ b/intersight_gosdk/model_hyperflex_cluster_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_profile_response.go b/intersight_gosdk/model_hyperflex_cluster_profile_response.go index 1f0b879419..5e66fb1774 100644 --- a/intersight_gosdk/model_hyperflex_cluster_profile_response.go +++ b/intersight_gosdk/model_hyperflex_cluster_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_relationship.go b/intersight_gosdk/model_hyperflex_cluster_relationship.go index e4d014402a..6888fd5f56 100644 --- a/intersight_gosdk/model_hyperflex_cluster_relationship.go +++ b/intersight_gosdk/model_hyperflex_cluster_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_replication_network_policy.go b/intersight_gosdk/model_hyperflex_cluster_replication_network_policy.go index 5fefead046..c6d4997f0e 100644 --- a/intersight_gosdk/model_hyperflex_cluster_replication_network_policy.go +++ b/intersight_gosdk/model_hyperflex_cluster_replication_network_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_deployment.go b/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_deployment.go index a22e7b6313..a507831f8b 100644 --- a/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_deployment.go +++ b/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_deployment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_deployment_list.go b/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_deployment_list.go index 39a4025b56..0095605f84 100644 --- a/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_deployment_list.go +++ b/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_deployment_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_deployment_response.go b/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_deployment_response.go index 28973c6c1c..5b15187259 100644 --- a/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_deployment_response.go +++ b/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_deployment_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_list.go b/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_list.go index 664ae10508..a394d27156 100644 --- a/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_list.go +++ b/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_response.go b/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_response.go index 5442cdd51d..4bcf8211fb 100644 --- a/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_response.go +++ b/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_response.go b/intersight_gosdk/model_hyperflex_cluster_response.go index 3003b91339..43d1fa96d1 100644 --- a/intersight_gosdk/model_hyperflex_cluster_response.go +++ b/intersight_gosdk/model_hyperflex_cluster_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_storage_policy.go b/intersight_gosdk/model_hyperflex_cluster_storage_policy.go index 0b7b76ed33..d63a549676 100644 --- a/intersight_gosdk/model_hyperflex_cluster_storage_policy.go +++ b/intersight_gosdk/model_hyperflex_cluster_storage_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_storage_policy_list.go b/intersight_gosdk/model_hyperflex_cluster_storage_policy_list.go index 03da237714..c0558194ed 100644 --- a/intersight_gosdk/model_hyperflex_cluster_storage_policy_list.go +++ b/intersight_gosdk/model_hyperflex_cluster_storage_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_storage_policy_relationship.go b/intersight_gosdk/model_hyperflex_cluster_storage_policy_relationship.go index a92bd5e3ff..15ef11945a 100644 --- a/intersight_gosdk/model_hyperflex_cluster_storage_policy_relationship.go +++ b/intersight_gosdk/model_hyperflex_cluster_storage_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_storage_policy_response.go b/intersight_gosdk/model_hyperflex_cluster_storage_policy_response.go index 305c637911..bd787d5b95 100644 --- a/intersight_gosdk/model_hyperflex_cluster_storage_policy_response.go +++ b/intersight_gosdk/model_hyperflex_cluster_storage_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_config_result.go b/intersight_gosdk/model_hyperflex_config_result.go index 676253fd97..a35a82275a 100644 --- a/intersight_gosdk/model_hyperflex_config_result.go +++ b/intersight_gosdk/model_hyperflex_config_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_config_result_entry.go b/intersight_gosdk/model_hyperflex_config_result_entry.go index 61d7247762..4f1f8581ef 100644 --- a/intersight_gosdk/model_hyperflex_config_result_entry.go +++ b/intersight_gosdk/model_hyperflex_config_result_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_config_result_entry_list.go b/intersight_gosdk/model_hyperflex_config_result_entry_list.go index d4d28947c3..bda2b39de4 100644 --- a/intersight_gosdk/model_hyperflex_config_result_entry_list.go +++ b/intersight_gosdk/model_hyperflex_config_result_entry_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_config_result_entry_relationship.go b/intersight_gosdk/model_hyperflex_config_result_entry_relationship.go index cdb751f3eb..208e8eb032 100644 --- a/intersight_gosdk/model_hyperflex_config_result_entry_relationship.go +++ b/intersight_gosdk/model_hyperflex_config_result_entry_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_config_result_entry_response.go b/intersight_gosdk/model_hyperflex_config_result_entry_response.go index 3d8f3dceaf..05bceec73f 100644 --- a/intersight_gosdk/model_hyperflex_config_result_entry_response.go +++ b/intersight_gosdk/model_hyperflex_config_result_entry_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_config_result_list.go b/intersight_gosdk/model_hyperflex_config_result_list.go index e51dccd7b2..17b0054f1e 100644 --- a/intersight_gosdk/model_hyperflex_config_result_list.go +++ b/intersight_gosdk/model_hyperflex_config_result_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_config_result_relationship.go b/intersight_gosdk/model_hyperflex_config_result_relationship.go index b9b1030d9f..41a4151ce0 100644 --- a/intersight_gosdk/model_hyperflex_config_result_relationship.go +++ b/intersight_gosdk/model_hyperflex_config_result_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_config_result_response.go b/intersight_gosdk/model_hyperflex_config_result_response.go index 196d4529b8..fb9b7c5346 100644 --- a/intersight_gosdk/model_hyperflex_config_result_response.go +++ b/intersight_gosdk/model_hyperflex_config_result_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_data_protection_peer.go b/intersight_gosdk/model_hyperflex_data_protection_peer.go index f9734112e9..619c81753c 100644 --- a/intersight_gosdk/model_hyperflex_data_protection_peer.go +++ b/intersight_gosdk/model_hyperflex_data_protection_peer.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_data_protection_peer_list.go b/intersight_gosdk/model_hyperflex_data_protection_peer_list.go index a9931af961..d948ce4864 100644 --- a/intersight_gosdk/model_hyperflex_data_protection_peer_list.go +++ b/intersight_gosdk/model_hyperflex_data_protection_peer_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_data_protection_peer_relationship.go b/intersight_gosdk/model_hyperflex_data_protection_peer_relationship.go index 9c886b1c3a..19700b30d4 100644 --- a/intersight_gosdk/model_hyperflex_data_protection_peer_relationship.go +++ b/intersight_gosdk/model_hyperflex_data_protection_peer_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_data_protection_peer_response.go b/intersight_gosdk/model_hyperflex_data_protection_peer_response.go index 983b6c313d..46293555a7 100644 --- a/intersight_gosdk/model_hyperflex_data_protection_peer_response.go +++ b/intersight_gosdk/model_hyperflex_data_protection_peer_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_datastore_info.go b/intersight_gosdk/model_hyperflex_datastore_info.go index 592d72d12c..0c06d3a6db 100644 --- a/intersight_gosdk/model_hyperflex_datastore_info.go +++ b/intersight_gosdk/model_hyperflex_datastore_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_datastore_statistic.go b/intersight_gosdk/model_hyperflex_datastore_statistic.go index 36fd85eb4e..43d743382d 100644 --- a/intersight_gosdk/model_hyperflex_datastore_statistic.go +++ b/intersight_gosdk/model_hyperflex_datastore_statistic.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_datastore_statistic_list.go b/intersight_gosdk/model_hyperflex_datastore_statistic_list.go index 5ec34dc6ef..0d2335a7d9 100644 --- a/intersight_gosdk/model_hyperflex_datastore_statistic_list.go +++ b/intersight_gosdk/model_hyperflex_datastore_statistic_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_datastore_statistic_relationship.go b/intersight_gosdk/model_hyperflex_datastore_statistic_relationship.go index bc85bcc887..e26c450ee9 100644 --- a/intersight_gosdk/model_hyperflex_datastore_statistic_relationship.go +++ b/intersight_gosdk/model_hyperflex_datastore_statistic_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_datastore_statistic_response.go b/intersight_gosdk/model_hyperflex_datastore_statistic_response.go index 369a2896ed..b7f5da023a 100644 --- a/intersight_gosdk/model_hyperflex_datastore_statistic_response.go +++ b/intersight_gosdk/model_hyperflex_datastore_statistic_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_device_package_download_state.go b/intersight_gosdk/model_hyperflex_device_package_download_state.go index 237bb543f3..fa3641028c 100644 --- a/intersight_gosdk/model_hyperflex_device_package_download_state.go +++ b/intersight_gosdk/model_hyperflex_device_package_download_state.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_device_package_download_state_list.go b/intersight_gosdk/model_hyperflex_device_package_download_state_list.go index e3998c9fda..bc9ccf1692 100644 --- a/intersight_gosdk/model_hyperflex_device_package_download_state_list.go +++ b/intersight_gosdk/model_hyperflex_device_package_download_state_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_device_package_download_state_response.go b/intersight_gosdk/model_hyperflex_device_package_download_state_response.go index 9bfa4f5d2c..d1a3a7983e 100644 --- a/intersight_gosdk/model_hyperflex_device_package_download_state_response.go +++ b/intersight_gosdk/model_hyperflex_device_package_download_state_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_drive.go b/intersight_gosdk/model_hyperflex_drive.go index 68ff67a713..ac687e24fc 100644 --- a/intersight_gosdk/model_hyperflex_drive.go +++ b/intersight_gosdk/model_hyperflex_drive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_drive_list.go b/intersight_gosdk/model_hyperflex_drive_list.go index c0a1f1df53..455bef61d8 100644 --- a/intersight_gosdk/model_hyperflex_drive_list.go +++ b/intersight_gosdk/model_hyperflex_drive_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_drive_relationship.go b/intersight_gosdk/model_hyperflex_drive_relationship.go index 78ea4e0d58..f3f0e3f8ed 100644 --- a/intersight_gosdk/model_hyperflex_drive_relationship.go +++ b/intersight_gosdk/model_hyperflex_drive_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_drive_response.go b/intersight_gosdk/model_hyperflex_drive_response.go index 325bb516ba..302f567e98 100644 --- a/intersight_gosdk/model_hyperflex_drive_response.go +++ b/intersight_gosdk/model_hyperflex_drive_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_encryption.go b/intersight_gosdk/model_hyperflex_encryption.go index 738137585e..840add55dd 100644 --- a/intersight_gosdk/model_hyperflex_encryption.go +++ b/intersight_gosdk/model_hyperflex_encryption.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_encryption_list.go b/intersight_gosdk/model_hyperflex_encryption_list.go index acba87e4b5..b781208cfd 100644 --- a/intersight_gosdk/model_hyperflex_encryption_list.go +++ b/intersight_gosdk/model_hyperflex_encryption_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_encryption_relationship.go b/intersight_gosdk/model_hyperflex_encryption_relationship.go index e224321ad5..95a95ba677 100644 --- a/intersight_gosdk/model_hyperflex_encryption_relationship.go +++ b/intersight_gosdk/model_hyperflex_encryption_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_encryption_response.go b/intersight_gosdk/model_hyperflex_encryption_response.go index 20d5237e9c..533dfb3bf7 100644 --- a/intersight_gosdk/model_hyperflex_encryption_response.go +++ b/intersight_gosdk/model_hyperflex_encryption_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_entity_reference.go b/intersight_gosdk/model_hyperflex_entity_reference.go index 55bb66b63e..0d2068d611 100644 --- a/intersight_gosdk/model_hyperflex_entity_reference.go +++ b/intersight_gosdk/model_hyperflex_entity_reference.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_error_stack.go b/intersight_gosdk/model_hyperflex_error_stack.go index d5c2d74a13..8a7aaf8f3b 100644 --- a/intersight_gosdk/model_hyperflex_error_stack.go +++ b/intersight_gosdk/model_hyperflex_error_stack.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_ext_fc_storage_policy.go b/intersight_gosdk/model_hyperflex_ext_fc_storage_policy.go index 56553dce89..041394162b 100644 --- a/intersight_gosdk/model_hyperflex_ext_fc_storage_policy.go +++ b/intersight_gosdk/model_hyperflex_ext_fc_storage_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_ext_fc_storage_policy_list.go b/intersight_gosdk/model_hyperflex_ext_fc_storage_policy_list.go index d927690b5c..ce1d9f7ea5 100644 --- a/intersight_gosdk/model_hyperflex_ext_fc_storage_policy_list.go +++ b/intersight_gosdk/model_hyperflex_ext_fc_storage_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_ext_fc_storage_policy_relationship.go b/intersight_gosdk/model_hyperflex_ext_fc_storage_policy_relationship.go index b788ce5dd2..7fb282598d 100644 --- a/intersight_gosdk/model_hyperflex_ext_fc_storage_policy_relationship.go +++ b/intersight_gosdk/model_hyperflex_ext_fc_storage_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_ext_fc_storage_policy_response.go b/intersight_gosdk/model_hyperflex_ext_fc_storage_policy_response.go index 96ecc0a7cd..1430bc2184 100644 --- a/intersight_gosdk/model_hyperflex_ext_fc_storage_policy_response.go +++ b/intersight_gosdk/model_hyperflex_ext_fc_storage_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy.go b/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy.go index 4c08047950..4737691203 100644 --- a/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy.go +++ b/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy_list.go b/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy_list.go index bcf7b29cd2..e3efd42b36 100644 --- a/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy_list.go +++ b/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy_relationship.go b/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy_relationship.go index 7a4d184eda..f395914160 100644 --- a/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy_relationship.go +++ b/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy_response.go b/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy_response.go index 0b53345e1e..00127fa77c 100644 --- a/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy_response.go +++ b/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_feature_limit_entry.go b/intersight_gosdk/model_hyperflex_feature_limit_entry.go index fd6babca49..27c96cb644 100644 --- a/intersight_gosdk/model_hyperflex_feature_limit_entry.go +++ b/intersight_gosdk/model_hyperflex_feature_limit_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_feature_limit_external.go b/intersight_gosdk/model_hyperflex_feature_limit_external.go index c87818e31f..a4f3334aef 100644 --- a/intersight_gosdk/model_hyperflex_feature_limit_external.go +++ b/intersight_gosdk/model_hyperflex_feature_limit_external.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_feature_limit_external_list.go b/intersight_gosdk/model_hyperflex_feature_limit_external_list.go index 189a4b0bc8..8c963424f6 100644 --- a/intersight_gosdk/model_hyperflex_feature_limit_external_list.go +++ b/intersight_gosdk/model_hyperflex_feature_limit_external_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_feature_limit_external_relationship.go b/intersight_gosdk/model_hyperflex_feature_limit_external_relationship.go index 017aff1801..deceece5dd 100644 --- a/intersight_gosdk/model_hyperflex_feature_limit_external_relationship.go +++ b/intersight_gosdk/model_hyperflex_feature_limit_external_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_feature_limit_external_response.go b/intersight_gosdk/model_hyperflex_feature_limit_external_response.go index 2dce456994..ae76992349 100644 --- a/intersight_gosdk/model_hyperflex_feature_limit_external_response.go +++ b/intersight_gosdk/model_hyperflex_feature_limit_external_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_feature_limit_internal.go b/intersight_gosdk/model_hyperflex_feature_limit_internal.go index 670866670a..29f490a2be 100644 --- a/intersight_gosdk/model_hyperflex_feature_limit_internal.go +++ b/intersight_gosdk/model_hyperflex_feature_limit_internal.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_feature_limit_internal_list.go b/intersight_gosdk/model_hyperflex_feature_limit_internal_list.go index e0555e7355..770cf2327e 100644 --- a/intersight_gosdk/model_hyperflex_feature_limit_internal_list.go +++ b/intersight_gosdk/model_hyperflex_feature_limit_internal_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_feature_limit_internal_relationship.go b/intersight_gosdk/model_hyperflex_feature_limit_internal_relationship.go index b951ed0682..601be1be63 100644 --- a/intersight_gosdk/model_hyperflex_feature_limit_internal_relationship.go +++ b/intersight_gosdk/model_hyperflex_feature_limit_internal_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_feature_limit_internal_response.go b/intersight_gosdk/model_hyperflex_feature_limit_internal_response.go index 25d138d7e6..369e05f9d4 100644 --- a/intersight_gosdk/model_hyperflex_feature_limit_internal_response.go +++ b/intersight_gosdk/model_hyperflex_feature_limit_internal_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_file_path.go b/intersight_gosdk/model_hyperflex_file_path.go index c170b813d8..492734658a 100644 --- a/intersight_gosdk/model_hyperflex_file_path.go +++ b/intersight_gosdk/model_hyperflex_file_path.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health.go b/intersight_gosdk/model_hyperflex_health.go index d4efc4439f..375919c42c 100644 --- a/intersight_gosdk/model_hyperflex_health.go +++ b/intersight_gosdk/model_hyperflex_health.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health_check_definition.go b/intersight_gosdk/model_hyperflex_health_check_definition.go index 5c28a059a1..025a4d2a4a 100644 --- a/intersight_gosdk/model_hyperflex_health_check_definition.go +++ b/intersight_gosdk/model_hyperflex_health_check_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health_check_definition_list.go b/intersight_gosdk/model_hyperflex_health_check_definition_list.go index 8c2cf21cf2..3c2c6cb27d 100644 --- a/intersight_gosdk/model_hyperflex_health_check_definition_list.go +++ b/intersight_gosdk/model_hyperflex_health_check_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health_check_definition_relationship.go b/intersight_gosdk/model_hyperflex_health_check_definition_relationship.go index a1716f3d6e..58dd50d819 100644 --- a/intersight_gosdk/model_hyperflex_health_check_definition_relationship.go +++ b/intersight_gosdk/model_hyperflex_health_check_definition_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health_check_definition_response.go b/intersight_gosdk/model_hyperflex_health_check_definition_response.go index 9ef3989266..6f0337f09c 100644 --- a/intersight_gosdk/model_hyperflex_health_check_definition_response.go +++ b/intersight_gosdk/model_hyperflex_health_check_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health_check_execution.go b/intersight_gosdk/model_hyperflex_health_check_execution.go index a121ac8cc6..6db9cc76ff 100644 --- a/intersight_gosdk/model_hyperflex_health_check_execution.go +++ b/intersight_gosdk/model_hyperflex_health_check_execution.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health_check_execution_list.go b/intersight_gosdk/model_hyperflex_health_check_execution_list.go index 806cb5e921..f7e78fbc56 100644 --- a/intersight_gosdk/model_hyperflex_health_check_execution_list.go +++ b/intersight_gosdk/model_hyperflex_health_check_execution_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health_check_execution_response.go b/intersight_gosdk/model_hyperflex_health_check_execution_response.go index f3b34d7d52..fb87fb4ad8 100644 --- a/intersight_gosdk/model_hyperflex_health_check_execution_response.go +++ b/intersight_gosdk/model_hyperflex_health_check_execution_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health_check_execution_snapshot.go b/intersight_gosdk/model_hyperflex_health_check_execution_snapshot.go index 556a297635..5e03e3073a 100644 --- a/intersight_gosdk/model_hyperflex_health_check_execution_snapshot.go +++ b/intersight_gosdk/model_hyperflex_health_check_execution_snapshot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health_check_execution_snapshot_list.go b/intersight_gosdk/model_hyperflex_health_check_execution_snapshot_list.go index 04bff75132..b5c0a14371 100644 --- a/intersight_gosdk/model_hyperflex_health_check_execution_snapshot_list.go +++ b/intersight_gosdk/model_hyperflex_health_check_execution_snapshot_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health_check_execution_snapshot_response.go b/intersight_gosdk/model_hyperflex_health_check_execution_snapshot_response.go index 3ea2e0ec88..f66bb8d2ff 100644 --- a/intersight_gosdk/model_hyperflex_health_check_execution_snapshot_response.go +++ b/intersight_gosdk/model_hyperflex_health_check_execution_snapshot_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health_check_node_level_info.go b/intersight_gosdk/model_hyperflex_health_check_node_level_info.go index 9d79ac953c..6c34cf2a86 100644 --- a/intersight_gosdk/model_hyperflex_health_check_node_level_info.go +++ b/intersight_gosdk/model_hyperflex_health_check_node_level_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health_check_package_checksum.go b/intersight_gosdk/model_hyperflex_health_check_package_checksum.go index 51fefdcc92..5b2100ce65 100644 --- a/intersight_gosdk/model_hyperflex_health_check_package_checksum.go +++ b/intersight_gosdk/model_hyperflex_health_check_package_checksum.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health_check_package_checksum_list.go b/intersight_gosdk/model_hyperflex_health_check_package_checksum_list.go index c2da25216a..87699088e3 100644 --- a/intersight_gosdk/model_hyperflex_health_check_package_checksum_list.go +++ b/intersight_gosdk/model_hyperflex_health_check_package_checksum_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health_check_package_checksum_response.go b/intersight_gosdk/model_hyperflex_health_check_package_checksum_response.go index 7a4411856c..5671a7b87f 100644 --- a/intersight_gosdk/model_hyperflex_health_check_package_checksum_response.go +++ b/intersight_gosdk/model_hyperflex_health_check_package_checksum_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health_check_schedule_policy.go b/intersight_gosdk/model_hyperflex_health_check_schedule_policy.go index 6cca5c4c06..ac358ea8e4 100644 --- a/intersight_gosdk/model_hyperflex_health_check_schedule_policy.go +++ b/intersight_gosdk/model_hyperflex_health_check_schedule_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health_check_schedule_policy_list.go b/intersight_gosdk/model_hyperflex_health_check_schedule_policy_list.go index e2421724d6..4786ed0f5e 100644 --- a/intersight_gosdk/model_hyperflex_health_check_schedule_policy_list.go +++ b/intersight_gosdk/model_hyperflex_health_check_schedule_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health_check_schedule_policy_response.go b/intersight_gosdk/model_hyperflex_health_check_schedule_policy_response.go index 37216e814c..4b20464f67 100644 --- a/intersight_gosdk/model_hyperflex_health_check_schedule_policy_response.go +++ b/intersight_gosdk/model_hyperflex_health_check_schedule_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health_check_script_info.go b/intersight_gosdk/model_hyperflex_health_check_script_info.go index 6a41f5905f..2c7afd031e 100644 --- a/intersight_gosdk/model_hyperflex_health_check_script_info.go +++ b/intersight_gosdk/model_hyperflex_health_check_script_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health_list.go b/intersight_gosdk/model_hyperflex_health_list.go index 67fbf75449..e4e0169f6c 100644 --- a/intersight_gosdk/model_hyperflex_health_list.go +++ b/intersight_gosdk/model_hyperflex_health_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health_relationship.go b/intersight_gosdk/model_hyperflex_health_relationship.go index eac280673e..69c553e0a6 100644 --- a/intersight_gosdk/model_hyperflex_health_relationship.go +++ b/intersight_gosdk/model_hyperflex_health_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health_response.go b/intersight_gosdk/model_hyperflex_health_response.go index d8f205f74e..4f0c4173d5 100644 --- a/intersight_gosdk/model_hyperflex_health_response.go +++ b/intersight_gosdk/model_hyperflex_health_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hw_catalog.go b/intersight_gosdk/model_hyperflex_hw_catalog.go index 835d945fca..1556d607ca 100644 --- a/intersight_gosdk/model_hyperflex_hw_catalog.go +++ b/intersight_gosdk/model_hyperflex_hw_catalog.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hw_catalog_list.go b/intersight_gosdk/model_hyperflex_hw_catalog_list.go index 081c96070b..2ae97ff990 100644 --- a/intersight_gosdk/model_hyperflex_hw_catalog_list.go +++ b/intersight_gosdk/model_hyperflex_hw_catalog_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hw_catalog_response.go b/intersight_gosdk/model_hyperflex_hw_catalog_response.go index a06616c464..093af96cbd 100644 --- a/intersight_gosdk/model_hyperflex_hw_catalog_response.go +++ b/intersight_gosdk/model_hyperflex_hw_catalog_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hx_host_mount_status_dt.go b/intersight_gosdk/model_hyperflex_hx_host_mount_status_dt.go index 9101fc6bf3..065edd8452 100644 --- a/intersight_gosdk/model_hyperflex_hx_host_mount_status_dt.go +++ b/intersight_gosdk/model_hyperflex_hx_host_mount_status_dt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hx_license_authorization_details_dt.go b/intersight_gosdk/model_hyperflex_hx_license_authorization_details_dt.go index 74236f7b36..b98d5421c3 100644 --- a/intersight_gosdk/model_hyperflex_hx_license_authorization_details_dt.go +++ b/intersight_gosdk/model_hyperflex_hx_license_authorization_details_dt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hx_link_dt.go b/intersight_gosdk/model_hyperflex_hx_link_dt.go index b30b0532df..90f8adf8dd 100644 --- a/intersight_gosdk/model_hyperflex_hx_link_dt.go +++ b/intersight_gosdk/model_hyperflex_hx_link_dt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hx_network_address_dt.go b/intersight_gosdk/model_hyperflex_hx_network_address_dt.go index 502e2bf432..1865902cc4 100644 --- a/intersight_gosdk/model_hyperflex_hx_network_address_dt.go +++ b/intersight_gosdk/model_hyperflex_hx_network_address_dt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hx_platform_datastore_config_dt.go b/intersight_gosdk/model_hyperflex_hx_platform_datastore_config_dt.go index f20996ed36..b5e4718c5a 100644 --- a/intersight_gosdk/model_hyperflex_hx_platform_datastore_config_dt.go +++ b/intersight_gosdk/model_hyperflex_hx_platform_datastore_config_dt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hx_registration_details_dt.go b/intersight_gosdk/model_hyperflex_hx_registration_details_dt.go index 9870e46f8d..1e4afca92c 100644 --- a/intersight_gosdk/model_hyperflex_hx_registration_details_dt.go +++ b/intersight_gosdk/model_hyperflex_hx_registration_details_dt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hx_resiliency_info_dt.go b/intersight_gosdk/model_hyperflex_hx_resiliency_info_dt.go index ed4d5db0ed..da1aeb8c44 100644 --- a/intersight_gosdk/model_hyperflex_hx_resiliency_info_dt.go +++ b/intersight_gosdk/model_hyperflex_hx_resiliency_info_dt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hx_site_dt.go b/intersight_gosdk/model_hyperflex_hx_site_dt.go index 1111569e66..0229bc9310 100644 --- a/intersight_gosdk/model_hyperflex_hx_site_dt.go +++ b/intersight_gosdk/model_hyperflex_hx_site_dt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hx_uu_id_dt.go b/intersight_gosdk/model_hyperflex_hx_uu_id_dt.go index cb0b02dc88..6cdaa6592e 100644 --- a/intersight_gosdk/model_hyperflex_hx_uu_id_dt.go +++ b/intersight_gosdk/model_hyperflex_hx_uu_id_dt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hx_zone_info_dt.go b/intersight_gosdk/model_hyperflex_hx_zone_info_dt.go index c71eae947b..b5590d2cc1 100644 --- a/intersight_gosdk/model_hyperflex_hx_zone_info_dt.go +++ b/intersight_gosdk/model_hyperflex_hx_zone_info_dt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hx_zone_resiliency_info_dt.go b/intersight_gosdk/model_hyperflex_hx_zone_resiliency_info_dt.go index 64f7b63b16..982f3be0fa 100644 --- a/intersight_gosdk/model_hyperflex_hx_zone_resiliency_info_dt.go +++ b/intersight_gosdk/model_hyperflex_hx_zone_resiliency_info_dt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hxdp_version.go b/intersight_gosdk/model_hyperflex_hxdp_version.go index 4a904d200d..aa8ec93abf 100644 --- a/intersight_gosdk/model_hyperflex_hxdp_version.go +++ b/intersight_gosdk/model_hyperflex_hxdp_version.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hxdp_version_list.go b/intersight_gosdk/model_hyperflex_hxdp_version_list.go index e910196572..cf807e4c38 100644 --- a/intersight_gosdk/model_hyperflex_hxdp_version_list.go +++ b/intersight_gosdk/model_hyperflex_hxdp_version_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hxdp_version_relationship.go b/intersight_gosdk/model_hyperflex_hxdp_version_relationship.go index 4fa9da9a3b..c753f44b69 100644 --- a/intersight_gosdk/model_hyperflex_hxdp_version_relationship.go +++ b/intersight_gosdk/model_hyperflex_hxdp_version_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hxdp_version_response.go b/intersight_gosdk/model_hyperflex_hxdp_version_response.go index c7983f586d..0bd3629de1 100644 --- a/intersight_gosdk/model_hyperflex_hxdp_version_response.go +++ b/intersight_gosdk/model_hyperflex_hxdp_version_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hypervisor_host.go b/intersight_gosdk/model_hyperflex_hypervisor_host.go index 814a0de0ea..3e544700b5 100644 --- a/intersight_gosdk/model_hyperflex_hypervisor_host.go +++ b/intersight_gosdk/model_hyperflex_hypervisor_host.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hypervisor_host_list.go b/intersight_gosdk/model_hyperflex_hypervisor_host_list.go index 2b9c20f447..b1a6bdf61c 100644 --- a/intersight_gosdk/model_hyperflex_hypervisor_host_list.go +++ b/intersight_gosdk/model_hyperflex_hypervisor_host_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hypervisor_host_relationship.go b/intersight_gosdk/model_hyperflex_hypervisor_host_relationship.go index 281bf9a563..605b764251 100644 --- a/intersight_gosdk/model_hyperflex_hypervisor_host_relationship.go +++ b/intersight_gosdk/model_hyperflex_hypervisor_host_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hypervisor_host_response.go b/intersight_gosdk/model_hyperflex_hypervisor_host_response.go index 8b953f24b3..bc8df65a49 100644 --- a/intersight_gosdk/model_hyperflex_hypervisor_host_response.go +++ b/intersight_gosdk/model_hyperflex_hypervisor_host_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hypervisor_virtual_machine.go b/intersight_gosdk/model_hyperflex_hypervisor_virtual_machine.go index 092ef82cb0..f3d99c1c99 100644 --- a/intersight_gosdk/model_hyperflex_hypervisor_virtual_machine.go +++ b/intersight_gosdk/model_hyperflex_hypervisor_virtual_machine.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hypervisor_virtual_machine_list.go b/intersight_gosdk/model_hyperflex_hypervisor_virtual_machine_list.go index 3972d0afb6..7a5be8b131 100644 --- a/intersight_gosdk/model_hyperflex_hypervisor_virtual_machine_list.go +++ b/intersight_gosdk/model_hyperflex_hypervisor_virtual_machine_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hypervisor_virtual_machine_response.go b/intersight_gosdk/model_hyperflex_hypervisor_virtual_machine_response.go index e44ab6ba56..d16930d4ff 100644 --- a/intersight_gosdk/model_hyperflex_hypervisor_virtual_machine_response.go +++ b/intersight_gosdk/model_hyperflex_hypervisor_virtual_machine_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_initiator_group.go b/intersight_gosdk/model_hyperflex_initiator_group.go index 9a448323e8..4848d9f675 100644 --- a/intersight_gosdk/model_hyperflex_initiator_group.go +++ b/intersight_gosdk/model_hyperflex_initiator_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_initiator_group_list.go b/intersight_gosdk/model_hyperflex_initiator_group_list.go index a120627222..462347e343 100644 --- a/intersight_gosdk/model_hyperflex_initiator_group_list.go +++ b/intersight_gosdk/model_hyperflex_initiator_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_initiator_group_relationship.go b/intersight_gosdk/model_hyperflex_initiator_group_relationship.go index 94282467ec..ea1b5740ef 100644 --- a/intersight_gosdk/model_hyperflex_initiator_group_relationship.go +++ b/intersight_gosdk/model_hyperflex_initiator_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_initiator_group_response.go b/intersight_gosdk/model_hyperflex_initiator_group_response.go index c54f564551..381d3ba7f6 100644 --- a/intersight_gosdk/model_hyperflex_initiator_group_response.go +++ b/intersight_gosdk/model_hyperflex_initiator_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_ip_addr_range.go b/intersight_gosdk/model_hyperflex_ip_addr_range.go index 3979118c04..141d8bc6b2 100644 --- a/intersight_gosdk/model_hyperflex_ip_addr_range.go +++ b/intersight_gosdk/model_hyperflex_ip_addr_range.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,15 +30,15 @@ type HyperflexIpAddrRange struct { ObjectType string `json:"ObjectType"` // The end IPv4 address of the range. // Deprecated - EndAddr *string `json:"EndAddr,omitempty"` + EndAddr *string `json:"EndAddr,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The default gateway for the start and end IPv4 addresses. - Gateway *string `json:"Gateway,omitempty"` + Gateway *string `json:"Gateway,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` IpAddrBlocks []CommIpV4AddressBlock `json:"IpAddrBlocks,omitempty"` // The netmask specified in dot decimal notation. The start address, end address, and gateway must all be within the network specified by this netmask. - Netmask *string `json:"Netmask,omitempty"` + Netmask *string `json:"Netmask,omitempty" validate:"regexp=^$|^(((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}))$"` // The start IPv4 address of the range. // Deprecated - StartAddr *string `json:"StartAddr,omitempty"` + StartAddr *string `json:"StartAddr,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` AdditionalProperties map[string]interface{} } @@ -390,15 +390,15 @@ func (o *HyperflexIpAddrRange) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` // The end IPv4 address of the range. // Deprecated - EndAddr *string `json:"EndAddr,omitempty"` + EndAddr *string `json:"EndAddr,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The default gateway for the start and end IPv4 addresses. - Gateway *string `json:"Gateway,omitempty"` + Gateway *string `json:"Gateway,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` IpAddrBlocks []CommIpV4AddressBlock `json:"IpAddrBlocks,omitempty"` // The netmask specified in dot decimal notation. The start address, end address, and gateway must all be within the network specified by this netmask. - Netmask *string `json:"Netmask,omitempty"` + Netmask *string `json:"Netmask,omitempty" validate:"regexp=^$|^(((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}))$"` // The start IPv4 address of the range. // Deprecated - StartAddr *string `json:"StartAddr,omitempty"` + StartAddr *string `json:"StartAddr,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` } varHyperflexIpAddrRangeWithoutEmbeddedStruct := HyperflexIpAddrRangeWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_hyperflex_iscsi_network.go b/intersight_gosdk/model_hyperflex_iscsi_network.go index 6546e80cab..9b67da6042 100644 --- a/intersight_gosdk/model_hyperflex_iscsi_network.go +++ b/intersight_gosdk/model_hyperflex_iscsi_network.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_iscsi_network_list.go b/intersight_gosdk/model_hyperflex_iscsi_network_list.go index d54f6de775..a545c19eb8 100644 --- a/intersight_gosdk/model_hyperflex_iscsi_network_list.go +++ b/intersight_gosdk/model_hyperflex_iscsi_network_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_iscsi_network_response.go b/intersight_gosdk/model_hyperflex_iscsi_network_response.go index c2e32349a9..c382ad82ae 100644 --- a/intersight_gosdk/model_hyperflex_iscsi_network_response.go +++ b/intersight_gosdk/model_hyperflex_iscsi_network_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_key_encryption_key.go b/intersight_gosdk/model_hyperflex_key_encryption_key.go index 805881566f..8fc941110d 100644 --- a/intersight_gosdk/model_hyperflex_key_encryption_key.go +++ b/intersight_gosdk/model_hyperflex_key_encryption_key.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_key_encryption_key_list.go b/intersight_gosdk/model_hyperflex_key_encryption_key_list.go index 9480ee7d53..490712b694 100644 --- a/intersight_gosdk/model_hyperflex_key_encryption_key_list.go +++ b/intersight_gosdk/model_hyperflex_key_encryption_key_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_key_encryption_key_response.go b/intersight_gosdk/model_hyperflex_key_encryption_key_response.go index e5b7cd78a5..8c42e66ce3 100644 --- a/intersight_gosdk/model_hyperflex_key_encryption_key_response.go +++ b/intersight_gosdk/model_hyperflex_key_encryption_key_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_license.go b/intersight_gosdk/model_hyperflex_license.go index cbe0ef749b..50388a5f03 100644 --- a/intersight_gosdk/model_hyperflex_license.go +++ b/intersight_gosdk/model_hyperflex_license.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_license_list.go b/intersight_gosdk/model_hyperflex_license_list.go index 41386d8101..6f6d46feda 100644 --- a/intersight_gosdk/model_hyperflex_license_list.go +++ b/intersight_gosdk/model_hyperflex_license_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_license_relationship.go b/intersight_gosdk/model_hyperflex_license_relationship.go index cb95a11892..e97f9bcd5d 100644 --- a/intersight_gosdk/model_hyperflex_license_relationship.go +++ b/intersight_gosdk/model_hyperflex_license_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_license_response.go b/intersight_gosdk/model_hyperflex_license_response.go index e2fa77c972..61797bcf23 100644 --- a/intersight_gosdk/model_hyperflex_license_response.go +++ b/intersight_gosdk/model_hyperflex_license_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_local_credential_policy.go b/intersight_gosdk/model_hyperflex_local_credential_policy.go index 0b49a72a84..a19c62632f 100644 --- a/intersight_gosdk/model_hyperflex_local_credential_policy.go +++ b/intersight_gosdk/model_hyperflex_local_credential_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,11 +31,11 @@ type HyperflexLocalCredentialPolicy struct { // Indicates if Hypervisor password is the factory set default password. For HyperFlex Data Platform versions 3.0 or higher, enable this if the default password was not changed on the Hypervisor. It is required to supply a new custom Hypervisor password that will be applied to the Hypervisor during deployment. For HyperFlex Data Platform versions prior to 3.0 release, this setting has no effect and the default password will be used for initial install. The Hypervisor password should be changed after deployment. FactoryHypervisorPassword *bool `json:"FactoryHypervisorPassword,omitempty"` // HyperFlex storage controller VM password must contain a minimum of 10 characters, with at least 1 lowercase, 1 uppercase, 1 numeric, and 1 of these -_@#$%^&*! special characters. - HxdpRootPwd *string `json:"HxdpRootPwd,omitempty"` + HxdpRootPwd *string `json:"HxdpRootPwd,omitempty" validate:"regexp=^[a-zA-Z0-9!@#$%^&*_-]{10,}$"` // Hypervisor administrator username must contain only alphanumeric characters. - HypervisorAdmin *string `json:"HypervisorAdmin,omitempty"` + HypervisorAdmin *string `json:"HypervisorAdmin,omitempty" validate:"regexp=^[a-zA-Z0-9]{1,}$"` // The Hypervisor root password. For HyperFlex Data Platform 3.0 or later, if the factory default password was not manually changed, you must set a new custom password. If the password was manually changed, you must not enable the factory default password property and provide the current hypervisor password. Note - All HyperFlex nodes require the same hypervisor password for installation. For HyperFlex Data Platform prior to 3.0, use the default password \"Cisco123\" for newly manufactured HyperFlex servers. A custom password should only be entered if hypervisor credentials were manually changed prior to deployment. - HypervisorAdminPwd *string `json:"HypervisorAdminPwd,omitempty"` + HypervisorAdminPwd *string `json:"HypervisorAdminPwd,omitempty" validate:"regexp=^.{7,40}$"` // Indicates whether the value of the 'deploymentPrivateKey' property has been set. IsDeploymentPrivateKeySet *bool `json:"IsDeploymentPrivateKeySet,omitempty"` // Indicates whether the value of the 'hxdpRootPwd' property has been set. @@ -546,11 +546,11 @@ func (o *HyperflexLocalCredentialPolicy) UnmarshalJSON(data []byte) (err error) // Indicates if Hypervisor password is the factory set default password. For HyperFlex Data Platform versions 3.0 or higher, enable this if the default password was not changed on the Hypervisor. It is required to supply a new custom Hypervisor password that will be applied to the Hypervisor during deployment. For HyperFlex Data Platform versions prior to 3.0 release, this setting has no effect and the default password will be used for initial install. The Hypervisor password should be changed after deployment. FactoryHypervisorPassword *bool `json:"FactoryHypervisorPassword,omitempty"` // HyperFlex storage controller VM password must contain a minimum of 10 characters, with at least 1 lowercase, 1 uppercase, 1 numeric, and 1 of these -_@#$%^&*! special characters. - HxdpRootPwd *string `json:"HxdpRootPwd,omitempty"` + HxdpRootPwd *string `json:"HxdpRootPwd,omitempty" validate:"regexp=^[a-zA-Z0-9!@#$%^&*_-]{10,}$"` // Hypervisor administrator username must contain only alphanumeric characters. - HypervisorAdmin *string `json:"HypervisorAdmin,omitempty"` + HypervisorAdmin *string `json:"HypervisorAdmin,omitempty" validate:"regexp=^[a-zA-Z0-9]{1,}$"` // The Hypervisor root password. For HyperFlex Data Platform 3.0 or later, if the factory default password was not manually changed, you must set a new custom password. If the password was manually changed, you must not enable the factory default password property and provide the current hypervisor password. Note - All HyperFlex nodes require the same hypervisor password for installation. For HyperFlex Data Platform prior to 3.0, use the default password \"Cisco123\" for newly manufactured HyperFlex servers. A custom password should only be entered if hypervisor credentials were manually changed prior to deployment. - HypervisorAdminPwd *string `json:"HypervisorAdminPwd,omitempty"` + HypervisorAdminPwd *string `json:"HypervisorAdminPwd,omitempty" validate:"regexp=^.{7,40}$"` // Indicates whether the value of the 'deploymentPrivateKey' property has been set. IsDeploymentPrivateKeySet *bool `json:"IsDeploymentPrivateKeySet,omitempty"` // Indicates whether the value of the 'hxdpRootPwd' property has been set. diff --git a/intersight_gosdk/model_hyperflex_local_credential_policy_list.go b/intersight_gosdk/model_hyperflex_local_credential_policy_list.go index 62f5efe347..22c539e041 100644 --- a/intersight_gosdk/model_hyperflex_local_credential_policy_list.go +++ b/intersight_gosdk/model_hyperflex_local_credential_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_local_credential_policy_relationship.go b/intersight_gosdk/model_hyperflex_local_credential_policy_relationship.go index 72717d1e44..62329c6dae 100644 --- a/intersight_gosdk/model_hyperflex_local_credential_policy_relationship.go +++ b/intersight_gosdk/model_hyperflex_local_credential_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_local_credential_policy_response.go b/intersight_gosdk/model_hyperflex_local_credential_policy_response.go index 84ccbe51bf..e352e5c787 100644 --- a/intersight_gosdk/model_hyperflex_local_credential_policy_response.go +++ b/intersight_gosdk/model_hyperflex_local_credential_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_logical_availability_zone.go b/intersight_gosdk/model_hyperflex_logical_availability_zone.go index 926e71f7a7..680cff4061 100644 --- a/intersight_gosdk/model_hyperflex_logical_availability_zone.go +++ b/intersight_gosdk/model_hyperflex_logical_availability_zone.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_lun.go b/intersight_gosdk/model_hyperflex_lun.go index a4f1a988a8..98471067aa 100644 --- a/intersight_gosdk/model_hyperflex_lun.go +++ b/intersight_gosdk/model_hyperflex_lun.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_lun_list.go b/intersight_gosdk/model_hyperflex_lun_list.go index ec02acee3e..1ffda85334 100644 --- a/intersight_gosdk/model_hyperflex_lun_list.go +++ b/intersight_gosdk/model_hyperflex_lun_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_lun_relationship.go b/intersight_gosdk/model_hyperflex_lun_relationship.go index 0e6f0abf03..29584247c4 100644 --- a/intersight_gosdk/model_hyperflex_lun_relationship.go +++ b/intersight_gosdk/model_hyperflex_lun_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_lun_response.go b/intersight_gosdk/model_hyperflex_lun_response.go index 62f521f9f0..6501a99d67 100644 --- a/intersight_gosdk/model_hyperflex_lun_response.go +++ b/intersight_gosdk/model_hyperflex_lun_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_mac_addr_prefix_range.go b/intersight_gosdk/model_hyperflex_mac_addr_prefix_range.go index c509fe4e98..5b32eec580 100644 --- a/intersight_gosdk/model_hyperflex_mac_addr_prefix_range.go +++ b/intersight_gosdk/model_hyperflex_mac_addr_prefix_range.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type HyperflexMacAddrPrefixRange struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The end MAC address prefix of a MAC address prefix range in the form of 00:25:B5:XX. - EndAddr *string `json:"EndAddr,omitempty"` + EndAddr *string `json:"EndAddr,omitempty" validate:"regexp=^$|^00:25:B5:[0-9a-fA-F]{2}$"` // The start MAC address prefix of a MAC address prefix range in the form of 00:25:B5:XX. - StartAddr *string `json:"StartAddr,omitempty"` + StartAddr *string `json:"StartAddr,omitempty" validate:"regexp=^$|^00:25:B5:[0-9a-fA-F]{2}$"` AdditionalProperties map[string]interface{} } @@ -270,9 +270,9 @@ func (o *HyperflexMacAddrPrefixRange) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The end MAC address prefix of a MAC address prefix range in the form of 00:25:B5:XX. - EndAddr *string `json:"EndAddr,omitempty"` + EndAddr *string `json:"EndAddr,omitempty" validate:"regexp=^$|^00:25:B5:[0-9a-fA-F]{2}$"` // The start MAC address prefix of a MAC address prefix range in the form of 00:25:B5:XX. - StartAddr *string `json:"StartAddr,omitempty"` + StartAddr *string `json:"StartAddr,omitempty" validate:"regexp=^$|^00:25:B5:[0-9a-fA-F]{2}$"` } varHyperflexMacAddrPrefixRangeWithoutEmbeddedStruct := HyperflexMacAddrPrefixRangeWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_hyperflex_map_cluster_id_to_protection_info.go b/intersight_gosdk/model_hyperflex_map_cluster_id_to_protection_info.go index 9e296131c4..77f4d897f8 100644 --- a/intersight_gosdk/model_hyperflex_map_cluster_id_to_protection_info.go +++ b/intersight_gosdk/model_hyperflex_map_cluster_id_to_protection_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_map_cluster_id_to_st_snapshot_point.go b/intersight_gosdk/model_hyperflex_map_cluster_id_to_st_snapshot_point.go index 41ee44111f..c80227ab29 100644 --- a/intersight_gosdk/model_hyperflex_map_cluster_id_to_st_snapshot_point.go +++ b/intersight_gosdk/model_hyperflex_map_cluster_id_to_st_snapshot_point.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_map_uuid_to_tracked_disk.go b/intersight_gosdk/model_hyperflex_map_uuid_to_tracked_disk.go index 34266a4ccd..f494a7f2b1 100644 --- a/intersight_gosdk/model_hyperflex_map_uuid_to_tracked_disk.go +++ b/intersight_gosdk/model_hyperflex_map_uuid_to_tracked_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_named_vlan.go b/intersight_gosdk/model_hyperflex_named_vlan.go index c7b9e8c406..6a97a8eea6 100644 --- a/intersight_gosdk/model_hyperflex_named_vlan.go +++ b/intersight_gosdk/model_hyperflex_named_vlan.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type HyperflexNamedVlan struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The name of the VLAN. The name can be from 1 to 32 characters long and can contain a combination of alphanumeric characters, underscores, and hyphens. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^$|^[a-zA-Z0-9-_.]{1,32}$"` // The ID of the named VLAN. An ID of 0 means the traffic is untagged. The ID can be any number between 0 and 4095, inclusive. VlanId *int64 `json:"VlanId,omitempty"` AdditionalProperties map[string]interface{} @@ -270,7 +270,7 @@ func (o *HyperflexNamedVlan) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The name of the VLAN. The name can be from 1 to 32 characters long and can contain a combination of alphanumeric characters, underscores, and hyphens. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^$|^[a-zA-Z0-9-_.]{1,32}$"` // The ID of the named VLAN. An ID of 0 means the traffic is untagged. The ID can be any number between 0 and 4095, inclusive. VlanId *int64 `json:"VlanId,omitempty"` } diff --git a/intersight_gosdk/model_hyperflex_named_vsan.go b/intersight_gosdk/model_hyperflex_named_vsan.go index cbfe2637fd..a95070d881 100644 --- a/intersight_gosdk/model_hyperflex_named_vsan.go +++ b/intersight_gosdk/model_hyperflex_named_vsan.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type HyperflexNamedVsan struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The name of the VSAN. The name can be from 1 to 32 characters long and can contain a combination of alphanumeric characters, underscores, and hyphens. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^$|^[a-zA-Z0-9-_.]{1,32}$"` // The ID of the named VSAN. The ID can be any number between 1 and 4093, inclusive. VsanId *int64 `json:"VsanId,omitempty"` AdditionalProperties map[string]interface{} @@ -270,7 +270,7 @@ func (o *HyperflexNamedVsan) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The name of the VSAN. The name can be from 1 to 32 characters long and can contain a combination of alphanumeric characters, underscores, and hyphens. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^$|^[a-zA-Z0-9-_.]{1,32}$"` // The ID of the named VSAN. The ID can be any number between 1 and 4093, inclusive. VsanId *int64 `json:"VsanId,omitempty"` } diff --git a/intersight_gosdk/model_hyperflex_network_configuration.go b/intersight_gosdk/model_hyperflex_network_configuration.go index a6ad443215..95f4b1241e 100644 --- a/intersight_gosdk/model_hyperflex_network_configuration.go +++ b/intersight_gosdk/model_hyperflex_network_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type HyperflexNetworkConfiguration struct { // The data IP of the HyperFlex cluster. DataIpAddress *string `json:"DataIpAddress,omitempty"` // The data subnet mask of the HyperFlex cluster. - DataNetmask *string `json:"DataNetmask,omitempty"` + DataNetmask *string `json:"DataNetmask,omitempty" validate:"regexp=^$|^(((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}))$"` // The data VLAN of the HyperFlex cluster. DataVlan *int64 `json:"DataVlan,omitempty"` // The DNS domain suffix configured for the HyperFlex Cluster. @@ -47,7 +47,7 @@ type HyperflexNetworkConfiguration struct { // The management IP or the hostname of the HyperFlex cluster. MgmtIpAddress *string `json:"MgmtIpAddress,omitempty"` // The management subnet mask of the HyperFlex cluster. - MgmtNetmask *string `json:"MgmtNetmask,omitempty"` + MgmtNetmask *string `json:"MgmtNetmask,omitempty" validate:"regexp=^$|^(((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}))$"` // The management VLAN ID of the HyperFlex cluster. MgmtVlan *int64 `json:"MgmtVlan,omitempty"` // The timezone configured on the HyperFlex Cluster. @@ -681,7 +681,7 @@ func (o *HyperflexNetworkConfiguration) UnmarshalJSON(data []byte) (err error) { // The data IP of the HyperFlex cluster. DataIpAddress *string `json:"DataIpAddress,omitempty"` // The data subnet mask of the HyperFlex cluster. - DataNetmask *string `json:"DataNetmask,omitempty"` + DataNetmask *string `json:"DataNetmask,omitempty" validate:"regexp=^$|^(((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}))$"` // The data VLAN of the HyperFlex cluster. DataVlan *int64 `json:"DataVlan,omitempty"` // The DNS domain suffix configured for the HyperFlex Cluster. @@ -695,7 +695,7 @@ func (o *HyperflexNetworkConfiguration) UnmarshalJSON(data []byte) (err error) { // The management IP or the hostname of the HyperFlex cluster. MgmtIpAddress *string `json:"MgmtIpAddress,omitempty"` // The management subnet mask of the HyperFlex cluster. - MgmtNetmask *string `json:"MgmtNetmask,omitempty"` + MgmtNetmask *string `json:"MgmtNetmask,omitempty" validate:"regexp=^$|^(((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}))$"` // The management VLAN ID of the HyperFlex cluster. MgmtVlan *int64 `json:"MgmtVlan,omitempty"` // The timezone configured on the HyperFlex Cluster. diff --git a/intersight_gosdk/model_hyperflex_node.go b/intersight_gosdk/model_hyperflex_node.go index 6c68830f95..3b4016f29a 100644 --- a/intersight_gosdk/model_hyperflex_node.go +++ b/intersight_gosdk/model_hyperflex_node.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_node_config_policy.go b/intersight_gosdk/model_hyperflex_node_config_policy.go index 7eb6392482..e880ba01c0 100644 --- a/intersight_gosdk/model_hyperflex_node_config_policy.go +++ b/intersight_gosdk/model_hyperflex_node_config_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -34,7 +34,7 @@ type HyperflexNodeConfigPolicy struct { MgmtIpRange NullableHyperflexIpAddrRange `json:"MgmtIpRange,omitempty"` // The node name prefix that is used to automatically generate the default hostname for each server. A dash (-) will be appended to the prefix followed by the node number to form a hostname. This default naming scheme can be manually overridden in the node configuration. The maximum length of a prefix is 60, must only contain alphanumeric characters or dash (-), and must start with an alphanumeric character. // Deprecated - NodeNamePrefix *string `json:"NodeNamePrefix,omitempty"` + NodeNamePrefix *string `json:"NodeNamePrefix,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-]{1,59}$"` // An array of relationships to hyperflexClusterProfile resources. ClusterProfiles []HyperflexClusterProfileRelationship `json:"ClusterProfiles,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` @@ -515,7 +515,7 @@ func (o *HyperflexNodeConfigPolicy) UnmarshalJSON(data []byte) (err error) { MgmtIpRange NullableHyperflexIpAddrRange `json:"MgmtIpRange,omitempty"` // The node name prefix that is used to automatically generate the default hostname for each server. A dash (-) will be appended to the prefix followed by the node number to form a hostname. This default naming scheme can be manually overridden in the node configuration. The maximum length of a prefix is 60, must only contain alphanumeric characters or dash (-), and must start with an alphanumeric character. // Deprecated - NodeNamePrefix *string `json:"NodeNamePrefix,omitempty"` + NodeNamePrefix *string `json:"NodeNamePrefix,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-]{1,59}$"` // An array of relationships to hyperflexClusterProfile resources. ClusterProfiles []HyperflexClusterProfileRelationship `json:"ClusterProfiles,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` diff --git a/intersight_gosdk/model_hyperflex_node_config_policy_list.go b/intersight_gosdk/model_hyperflex_node_config_policy_list.go index 3a511b8741..e5c15cadaa 100644 --- a/intersight_gosdk/model_hyperflex_node_config_policy_list.go +++ b/intersight_gosdk/model_hyperflex_node_config_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_node_config_policy_relationship.go b/intersight_gosdk/model_hyperflex_node_config_policy_relationship.go index de63ba2cd4..bf774786b1 100644 --- a/intersight_gosdk/model_hyperflex_node_config_policy_relationship.go +++ b/intersight_gosdk/model_hyperflex_node_config_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_node_config_policy_response.go b/intersight_gosdk/model_hyperflex_node_config_policy_response.go index 2c6228dc9a..622f6975bb 100644 --- a/intersight_gosdk/model_hyperflex_node_config_policy_response.go +++ b/intersight_gosdk/model_hyperflex_node_config_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_node_list.go b/intersight_gosdk/model_hyperflex_node_list.go index e6d7747ab0..1abfb47b92 100644 --- a/intersight_gosdk/model_hyperflex_node_list.go +++ b/intersight_gosdk/model_hyperflex_node_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_node_profile.go b/intersight_gosdk/model_hyperflex_node_profile.go index 32549689aa..f842a34b76 100644 --- a/intersight_gosdk/model_hyperflex_node_profile.go +++ b/intersight_gosdk/model_hyperflex_node_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,17 +29,17 @@ type HyperflexNodeProfile struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IP address for storage data network (Controller VM interface). - HxdpDataIp *string `json:"HxdpDataIp,omitempty"` + HxdpDataIp *string `json:"HxdpDataIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP address for HyperFlex management network. - HxdpMgmtIp *string `json:"HxdpMgmtIp,omitempty"` + HxdpMgmtIp *string `json:"HxdpMgmtIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP address for storage client network (Controller VM interface). - HxdpStorageClientIp *string `json:"HxdpStorageClientIp,omitempty"` + HxdpStorageClientIp *string `json:"HxdpStorageClientIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP address for hypervisor control such as VM migration or pod management. - HypervisorControlIp *string `json:"HypervisorControlIp,omitempty"` + HypervisorControlIp *string `json:"HypervisorControlIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP address for storage data network (Hypervisor interface). - HypervisorDataIp *string `json:"HypervisorDataIp,omitempty"` + HypervisorDataIp *string `json:"HypervisorDataIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP address for Hypervisor management network. - HypervisorMgmtIp *string `json:"HypervisorMgmtIp,omitempty"` + HypervisorMgmtIp *string `json:"HypervisorMgmtIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The role that this node performs in the HyperFlex cluster. * `Unknown` - The node role is not available. * `Storage` - The node persists data and contributes to the storage capacity of a cluster. * `Compute` - The node contributes to the compute capacity of a cluster. NodeRole *string `json:"NodeRole,omitempty"` AssignedServer NullableComputePhysicalRelationship `json:"AssignedServer,omitempty"` @@ -604,17 +604,17 @@ func (o *HyperflexNodeProfile) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IP address for storage data network (Controller VM interface). - HxdpDataIp *string `json:"HxdpDataIp,omitempty"` + HxdpDataIp *string `json:"HxdpDataIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP address for HyperFlex management network. - HxdpMgmtIp *string `json:"HxdpMgmtIp,omitempty"` + HxdpMgmtIp *string `json:"HxdpMgmtIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP address for storage client network (Controller VM interface). - HxdpStorageClientIp *string `json:"HxdpStorageClientIp,omitempty"` + HxdpStorageClientIp *string `json:"HxdpStorageClientIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP address for hypervisor control such as VM migration or pod management. - HypervisorControlIp *string `json:"HypervisorControlIp,omitempty"` + HypervisorControlIp *string `json:"HypervisorControlIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP address for storage data network (Hypervisor interface). - HypervisorDataIp *string `json:"HypervisorDataIp,omitempty"` + HypervisorDataIp *string `json:"HypervisorDataIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP address for Hypervisor management network. - HypervisorMgmtIp *string `json:"HypervisorMgmtIp,omitempty"` + HypervisorMgmtIp *string `json:"HypervisorMgmtIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The role that this node performs in the HyperFlex cluster. * `Unknown` - The node role is not available. * `Storage` - The node persists data and contributes to the storage capacity of a cluster. * `Compute` - The node contributes to the compute capacity of a cluster. NodeRole *string `json:"NodeRole,omitempty"` AssignedServer NullableComputePhysicalRelationship `json:"AssignedServer,omitempty"` diff --git a/intersight_gosdk/model_hyperflex_node_profile_list.go b/intersight_gosdk/model_hyperflex_node_profile_list.go index a4f33f20a5..c50a1c96ae 100644 --- a/intersight_gosdk/model_hyperflex_node_profile_list.go +++ b/intersight_gosdk/model_hyperflex_node_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_node_profile_relationship.go b/intersight_gosdk/model_hyperflex_node_profile_relationship.go index 1a332e1bb3..37286b5ccc 100644 --- a/intersight_gosdk/model_hyperflex_node_profile_relationship.go +++ b/intersight_gosdk/model_hyperflex_node_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_node_profile_response.go b/intersight_gosdk/model_hyperflex_node_profile_response.go index 3d8d1405fe..9eb7dccc4f 100644 --- a/intersight_gosdk/model_hyperflex_node_profile_response.go +++ b/intersight_gosdk/model_hyperflex_node_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_node_relationship.go b/intersight_gosdk/model_hyperflex_node_relationship.go index e077ba55c8..2ec54c1b2f 100644 --- a/intersight_gosdk/model_hyperflex_node_relationship.go +++ b/intersight_gosdk/model_hyperflex_node_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_node_response.go b/intersight_gosdk/model_hyperflex_node_response.go index ff7894968e..74c84ae373 100644 --- a/intersight_gosdk/model_hyperflex_node_response.go +++ b/intersight_gosdk/model_hyperflex_node_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_port_type_to_port_number_map.go b/intersight_gosdk/model_hyperflex_port_type_to_port_number_map.go index 1fc6d7ead0..59f910540f 100644 --- a/intersight_gosdk/model_hyperflex_port_type_to_port_number_map.go +++ b/intersight_gosdk/model_hyperflex_port_type_to_port_number_map.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_protected_cluster.go b/intersight_gosdk/model_hyperflex_protected_cluster.go index 1ac0a53c0c..8eddf7dc12 100644 --- a/intersight_gosdk/model_hyperflex_protected_cluster.go +++ b/intersight_gosdk/model_hyperflex_protected_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_protected_cluster_list.go b/intersight_gosdk/model_hyperflex_protected_cluster_list.go index 6352fc1990..72119b2f9a 100644 --- a/intersight_gosdk/model_hyperflex_protected_cluster_list.go +++ b/intersight_gosdk/model_hyperflex_protected_cluster_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_protected_cluster_response.go b/intersight_gosdk/model_hyperflex_protected_cluster_response.go index 76d91637d4..bacbec80cf 100644 --- a/intersight_gosdk/model_hyperflex_protected_cluster_response.go +++ b/intersight_gosdk/model_hyperflex_protected_cluster_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_protection_info.go b/intersight_gosdk/model_hyperflex_protection_info.go index d434dfd87f..300546cd44 100644 --- a/intersight_gosdk/model_hyperflex_protection_info.go +++ b/intersight_gosdk/model_hyperflex_protection_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_proxy_setting_policy.go b/intersight_gosdk/model_hyperflex_proxy_setting_policy.go index e67c259b4b..8fe14430d2 100644 --- a/intersight_gosdk/model_hyperflex_proxy_setting_policy.go +++ b/intersight_gosdk/model_hyperflex_proxy_setting_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type HyperflexProxySettingPolicy struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // HTTP Proxy server FQDN or IP. - Hostname *string `json:"Hostname,omitempty"` + Hostname *string `json:"Hostname,omitempty" validate:"regexp=^[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?$|^[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?(\\\\.[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?)*(\\\\.[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?)$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password for the HTTP Proxy. @@ -466,7 +466,7 @@ func (o *HyperflexProxySettingPolicy) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // HTTP Proxy server FQDN or IP. - Hostname *string `json:"Hostname,omitempty"` + Hostname *string `json:"Hostname,omitempty" validate:"regexp=^[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?$|^[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?(\\\\.[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?)*(\\\\.[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?)$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password for the HTTP Proxy. diff --git a/intersight_gosdk/model_hyperflex_proxy_setting_policy_list.go b/intersight_gosdk/model_hyperflex_proxy_setting_policy_list.go index 5aa02d4a6f..3375a74788 100644 --- a/intersight_gosdk/model_hyperflex_proxy_setting_policy_list.go +++ b/intersight_gosdk/model_hyperflex_proxy_setting_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_proxy_setting_policy_relationship.go b/intersight_gosdk/model_hyperflex_proxy_setting_policy_relationship.go index 71609e81fb..e027c44adc 100644 --- a/intersight_gosdk/model_hyperflex_proxy_setting_policy_relationship.go +++ b/intersight_gosdk/model_hyperflex_proxy_setting_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_proxy_setting_policy_response.go b/intersight_gosdk/model_hyperflex_proxy_setting_policy_response.go index 40140b06b2..b85c6c7087 100644 --- a/intersight_gosdk/model_hyperflex_proxy_setting_policy_response.go +++ b/intersight_gosdk/model_hyperflex_proxy_setting_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_re_sync_cluster_mo_ids.go b/intersight_gosdk/model_hyperflex_re_sync_cluster_mo_ids.go index ee2fcc7f47..4263b5cb0a 100644 --- a/intersight_gosdk/model_hyperflex_re_sync_cluster_mo_ids.go +++ b/intersight_gosdk/model_hyperflex_re_sync_cluster_mo_ids.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_reduce_re_sync.go b/intersight_gosdk/model_hyperflex_reduce_re_sync.go index 7a1d6c032b..5b4f2e067d 100644 --- a/intersight_gosdk/model_hyperflex_reduce_re_sync.go +++ b/intersight_gosdk/model_hyperflex_reduce_re_sync.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_reduce_re_sync_list.go b/intersight_gosdk/model_hyperflex_reduce_re_sync_list.go index 7e15545f20..c206004814 100644 --- a/intersight_gosdk/model_hyperflex_reduce_re_sync_list.go +++ b/intersight_gosdk/model_hyperflex_reduce_re_sync_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_reduce_re_sync_response.go b/intersight_gosdk/model_hyperflex_reduce_re_sync_response.go index cf41521202..a2d85630c5 100644 --- a/intersight_gosdk/model_hyperflex_reduce_re_sync_response.go +++ b/intersight_gosdk/model_hyperflex_reduce_re_sync_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_replication_cluster_reference_to_schedule.go b/intersight_gosdk/model_hyperflex_replication_cluster_reference_to_schedule.go index 4ae5b4a907..c08913d44e 100644 --- a/intersight_gosdk/model_hyperflex_replication_cluster_reference_to_schedule.go +++ b/intersight_gosdk/model_hyperflex_replication_cluster_reference_to_schedule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_replication_peer_info.go b/intersight_gosdk/model_hyperflex_replication_peer_info.go index 2996830a4b..afab44a84d 100644 --- a/intersight_gosdk/model_hyperflex_replication_peer_info.go +++ b/intersight_gosdk/model_hyperflex_replication_peer_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_replication_plat_datastore.go b/intersight_gosdk/model_hyperflex_replication_plat_datastore.go index 34996be026..a26f58f675 100644 --- a/intersight_gosdk/model_hyperflex_replication_plat_datastore.go +++ b/intersight_gosdk/model_hyperflex_replication_plat_datastore.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_replication_plat_datastore_pair.go b/intersight_gosdk/model_hyperflex_replication_plat_datastore_pair.go index a6769464d3..0fadda2dd7 100644 --- a/intersight_gosdk/model_hyperflex_replication_plat_datastore_pair.go +++ b/intersight_gosdk/model_hyperflex_replication_plat_datastore_pair.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_replication_schedule.go b/intersight_gosdk/model_hyperflex_replication_schedule.go index 80582b9942..e9c8d095c6 100644 --- a/intersight_gosdk/model_hyperflex_replication_schedule.go +++ b/intersight_gosdk/model_hyperflex_replication_schedule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_replication_status.go b/intersight_gosdk/model_hyperflex_replication_status.go index a19e029cb8..d230f6da46 100644 --- a/intersight_gosdk/model_hyperflex_replication_status.go +++ b/intersight_gosdk/model_hyperflex_replication_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_rpo_status.go b/intersight_gosdk/model_hyperflex_rpo_status.go index e854acce6e..186c20763a 100644 --- a/intersight_gosdk/model_hyperflex_rpo_status.go +++ b/intersight_gosdk/model_hyperflex_rpo_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_server_firmware_version.go b/intersight_gosdk/model_hyperflex_server_firmware_version.go index 0f36013878..02d7ebc6fe 100644 --- a/intersight_gosdk/model_hyperflex_server_firmware_version.go +++ b/intersight_gosdk/model_hyperflex_server_firmware_version.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_server_firmware_version_entry.go b/intersight_gosdk/model_hyperflex_server_firmware_version_entry.go index 863c42eaff..7646fc1cad 100644 --- a/intersight_gosdk/model_hyperflex_server_firmware_version_entry.go +++ b/intersight_gosdk/model_hyperflex_server_firmware_version_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -32,7 +32,7 @@ type HyperflexServerFirmwareVersionEntry struct { // The server platform type that is applicable for the server firmware bundle version. * `M5` - M5 generation of UCS server. * `M3` - M3 generation of UCS server. * `M4` - M4 generation of UCS server. * `M6` - M6 generation of UCS server. ServerPlatform *string `json:"ServerPlatform,omitempty"` // The server firmware bundle version. - Version *string `json:"Version,omitempty"` + Version *string `json:"Version,omitempty" validate:"regexp=(^3\\\\.[1-9]\\\\([1-9][a-z]\\\\)$|^[4-9]\\\\.[0-9]\\\\([1-9][a-z]\\\\)$)"` ServerFirmwareVersion NullableHyperflexServerFirmwareVersionRelationship `json:"ServerFirmwareVersion,omitempty"` AdditionalProperties map[string]interface{} } @@ -371,7 +371,7 @@ func (o *HyperflexServerFirmwareVersionEntry) UnmarshalJSON(data []byte) (err er // The server platform type that is applicable for the server firmware bundle version. * `M5` - M5 generation of UCS server. * `M3` - M3 generation of UCS server. * `M4` - M4 generation of UCS server. * `M6` - M6 generation of UCS server. ServerPlatform *string `json:"ServerPlatform,omitempty"` // The server firmware bundle version. - Version *string `json:"Version,omitempty"` + Version *string `json:"Version,omitempty" validate:"regexp=(^3\\\\.[1-9]\\\\([1-9][a-z]\\\\)$|^[4-9]\\\\.[0-9]\\\\([1-9][a-z]\\\\)$)"` ServerFirmwareVersion NullableHyperflexServerFirmwareVersionRelationship `json:"ServerFirmwareVersion,omitempty"` } diff --git a/intersight_gosdk/model_hyperflex_server_firmware_version_entry_list.go b/intersight_gosdk/model_hyperflex_server_firmware_version_entry_list.go index 8ddeb1f31f..61136a68e7 100644 --- a/intersight_gosdk/model_hyperflex_server_firmware_version_entry_list.go +++ b/intersight_gosdk/model_hyperflex_server_firmware_version_entry_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_server_firmware_version_entry_relationship.go b/intersight_gosdk/model_hyperflex_server_firmware_version_entry_relationship.go index ce28a7e745..0e231c397a 100644 --- a/intersight_gosdk/model_hyperflex_server_firmware_version_entry_relationship.go +++ b/intersight_gosdk/model_hyperflex_server_firmware_version_entry_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_server_firmware_version_entry_response.go b/intersight_gosdk/model_hyperflex_server_firmware_version_entry_response.go index 52956f5b30..f52d377e36 100644 --- a/intersight_gosdk/model_hyperflex_server_firmware_version_entry_response.go +++ b/intersight_gosdk/model_hyperflex_server_firmware_version_entry_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_server_firmware_version_info.go b/intersight_gosdk/model_hyperflex_server_firmware_version_info.go index b451ec9f1d..c9a428b789 100644 --- a/intersight_gosdk/model_hyperflex_server_firmware_version_info.go +++ b/intersight_gosdk/model_hyperflex_server_firmware_version_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type HyperflexServerFirmwareVersionInfo struct { // The platform type for UCS server. * `M5` - M5 generation of UCS server. * `M3` - M3 generation of UCS server. * `M4` - M4 generation of UCS server. * `M6` - M6 generation of UCS server. ServerPlatform *string `json:"ServerPlatform,omitempty"` // The server firmware bundle version. - Version *string `json:"Version,omitempty"` + Version *string `json:"Version,omitempty" validate:"regexp=(^3\\\\.[1-9]\\\\([1-9][a-z]\\\\)$|^[4-9]\\\\.[0-9]\\\\([1-9][a-z]\\\\)$|^[4-9]\\\\.[0-9]\\\\([0-9](\\\\.[0-9]+|[a-z]).*\\\\)$)"` AdditionalProperties map[string]interface{} } @@ -276,7 +276,7 @@ func (o *HyperflexServerFirmwareVersionInfo) UnmarshalJSON(data []byte) (err err // The platform type for UCS server. * `M5` - M5 generation of UCS server. * `M3` - M3 generation of UCS server. * `M4` - M4 generation of UCS server. * `M6` - M6 generation of UCS server. ServerPlatform *string `json:"ServerPlatform,omitempty"` // The server firmware bundle version. - Version *string `json:"Version,omitempty"` + Version *string `json:"Version,omitempty" validate:"regexp=(^3\\\\.[1-9]\\\\([1-9][a-z]\\\\)$|^[4-9]\\\\.[0-9]\\\\([1-9][a-z]\\\\)$|^[4-9]\\\\.[0-9]\\\\([0-9](\\\\.[0-9]+|[a-z]).*\\\\)$)"` } varHyperflexServerFirmwareVersionInfoWithoutEmbeddedStruct := HyperflexServerFirmwareVersionInfoWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_hyperflex_server_firmware_version_list.go b/intersight_gosdk/model_hyperflex_server_firmware_version_list.go index 88f1266404..bb35e79d9b 100644 --- a/intersight_gosdk/model_hyperflex_server_firmware_version_list.go +++ b/intersight_gosdk/model_hyperflex_server_firmware_version_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_server_firmware_version_relationship.go b/intersight_gosdk/model_hyperflex_server_firmware_version_relationship.go index c3fc81db42..f52db84962 100644 --- a/intersight_gosdk/model_hyperflex_server_firmware_version_relationship.go +++ b/intersight_gosdk/model_hyperflex_server_firmware_version_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_server_firmware_version_response.go b/intersight_gosdk/model_hyperflex_server_firmware_version_response.go index 634d5dbe9b..3224ea3843 100644 --- a/intersight_gosdk/model_hyperflex_server_firmware_version_response.go +++ b/intersight_gosdk/model_hyperflex_server_firmware_version_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_server_model.go b/intersight_gosdk/model_hyperflex_server_model.go index 8217fd232f..41e4311d54 100644 --- a/intersight_gosdk/model_hyperflex_server_model.go +++ b/intersight_gosdk/model_hyperflex_server_model.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_server_model_entry.go b/intersight_gosdk/model_hyperflex_server_model_entry.go index f6b45f382e..702cbf8ce5 100644 --- a/intersight_gosdk/model_hyperflex_server_model_entry.go +++ b/intersight_gosdk/model_hyperflex_server_model_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_server_model_list.go b/intersight_gosdk/model_hyperflex_server_model_list.go index d98110f730..1f11ac5fb1 100644 --- a/intersight_gosdk/model_hyperflex_server_model_list.go +++ b/intersight_gosdk/model_hyperflex_server_model_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_server_model_relationship.go b/intersight_gosdk/model_hyperflex_server_model_relationship.go index a692af7152..cdaa4baeb0 100644 --- a/intersight_gosdk/model_hyperflex_server_model_relationship.go +++ b/intersight_gosdk/model_hyperflex_server_model_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_server_model_response.go b/intersight_gosdk/model_hyperflex_server_model_response.go index dbd64921a4..c06c6a1ff7 100644 --- a/intersight_gosdk/model_hyperflex_server_model_response.go +++ b/intersight_gosdk/model_hyperflex_server_model_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_service_auth_token.go b/intersight_gosdk/model_hyperflex_service_auth_token.go index ad8d2ff0dc..74541b5aa7 100644 --- a/intersight_gosdk/model_hyperflex_service_auth_token.go +++ b/intersight_gosdk/model_hyperflex_service_auth_token.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_service_auth_token_list.go b/intersight_gosdk/model_hyperflex_service_auth_token_list.go index 41335b44a0..e1f71e7e44 100644 --- a/intersight_gosdk/model_hyperflex_service_auth_token_list.go +++ b/intersight_gosdk/model_hyperflex_service_auth_token_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_service_auth_token_response.go b/intersight_gosdk/model_hyperflex_service_auth_token_response.go index 0bf87781b6..a1147da907 100644 --- a/intersight_gosdk/model_hyperflex_service_auth_token_response.go +++ b/intersight_gosdk/model_hyperflex_service_auth_token_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_site_details.go b/intersight_gosdk/model_hyperflex_site_details.go index d4471fc8b9..7701a0bcf7 100644 --- a/intersight_gosdk/model_hyperflex_site_details.go +++ b/intersight_gosdk/model_hyperflex_site_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_snapshot_files.go b/intersight_gosdk/model_hyperflex_snapshot_files.go index 2b48137770..16402966f2 100644 --- a/intersight_gosdk/model_hyperflex_snapshot_files.go +++ b/intersight_gosdk/model_hyperflex_snapshot_files.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_snapshot_info_brief.go b/intersight_gosdk/model_hyperflex_snapshot_info_brief.go index 7c29b8ae89..fc3646522a 100644 --- a/intersight_gosdk/model_hyperflex_snapshot_info_brief.go +++ b/intersight_gosdk/model_hyperflex_snapshot_info_brief.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_snapshot_point.go b/intersight_gosdk/model_hyperflex_snapshot_point.go index 1e47c009ae..0cb1598563 100644 --- a/intersight_gosdk/model_hyperflex_snapshot_point.go +++ b/intersight_gosdk/model_hyperflex_snapshot_point.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_snapshot_status.go b/intersight_gosdk/model_hyperflex_snapshot_status.go index b846639ded..d8845d85b8 100644 --- a/intersight_gosdk/model_hyperflex_snapshot_status.go +++ b/intersight_gosdk/model_hyperflex_snapshot_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_software_distribution_component.go b/intersight_gosdk/model_hyperflex_software_distribution_component.go index bc40fc7525..185e391caa 100644 --- a/intersight_gosdk/model_hyperflex_software_distribution_component.go +++ b/intersight_gosdk/model_hyperflex_software_distribution_component.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_software_distribution_component_list.go b/intersight_gosdk/model_hyperflex_software_distribution_component_list.go index 726145d1dd..f2df037a2e 100644 --- a/intersight_gosdk/model_hyperflex_software_distribution_component_list.go +++ b/intersight_gosdk/model_hyperflex_software_distribution_component_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_software_distribution_component_relationship.go b/intersight_gosdk/model_hyperflex_software_distribution_component_relationship.go index 8dfc3f353f..4169c0fa5a 100644 --- a/intersight_gosdk/model_hyperflex_software_distribution_component_relationship.go +++ b/intersight_gosdk/model_hyperflex_software_distribution_component_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_software_distribution_component_response.go b/intersight_gosdk/model_hyperflex_software_distribution_component_response.go index fbbce34c72..0ba9dca311 100644 --- a/intersight_gosdk/model_hyperflex_software_distribution_component_response.go +++ b/intersight_gosdk/model_hyperflex_software_distribution_component_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_software_distribution_entry.go b/intersight_gosdk/model_hyperflex_software_distribution_entry.go index fdf4135b36..6d2df56b2f 100644 --- a/intersight_gosdk/model_hyperflex_software_distribution_entry.go +++ b/intersight_gosdk/model_hyperflex_software_distribution_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_software_distribution_entry_list.go b/intersight_gosdk/model_hyperflex_software_distribution_entry_list.go index 479b1b12e4..fb1ffcd3bd 100644 --- a/intersight_gosdk/model_hyperflex_software_distribution_entry_list.go +++ b/intersight_gosdk/model_hyperflex_software_distribution_entry_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_software_distribution_entry_relationship.go b/intersight_gosdk/model_hyperflex_software_distribution_entry_relationship.go index fba762725f..93264fba15 100644 --- a/intersight_gosdk/model_hyperflex_software_distribution_entry_relationship.go +++ b/intersight_gosdk/model_hyperflex_software_distribution_entry_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_software_distribution_entry_response.go b/intersight_gosdk/model_hyperflex_software_distribution_entry_response.go index ea92e0a679..3b5d6d1dd4 100644 --- a/intersight_gosdk/model_hyperflex_software_distribution_entry_response.go +++ b/intersight_gosdk/model_hyperflex_software_distribution_entry_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_software_distribution_version.go b/intersight_gosdk/model_hyperflex_software_distribution_version.go index 53cd7f983c..1f90d51cc2 100644 --- a/intersight_gosdk/model_hyperflex_software_distribution_version.go +++ b/intersight_gosdk/model_hyperflex_software_distribution_version.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_software_distribution_version_list.go b/intersight_gosdk/model_hyperflex_software_distribution_version_list.go index e347332196..3b7c69c32d 100644 --- a/intersight_gosdk/model_hyperflex_software_distribution_version_list.go +++ b/intersight_gosdk/model_hyperflex_software_distribution_version_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_software_distribution_version_relationship.go b/intersight_gosdk/model_hyperflex_software_distribution_version_relationship.go index d993cfa8b3..ef89482064 100644 --- a/intersight_gosdk/model_hyperflex_software_distribution_version_relationship.go +++ b/intersight_gosdk/model_hyperflex_software_distribution_version_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_software_distribution_version_response.go b/intersight_gosdk/model_hyperflex_software_distribution_version_response.go index c93c69bf29..a80f4c54e9 100644 --- a/intersight_gosdk/model_hyperflex_software_distribution_version_response.go +++ b/intersight_gosdk/model_hyperflex_software_distribution_version_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_software_version_policy.go b/intersight_gosdk/model_hyperflex_software_version_policy.go index c04bcdc77f..31215e20c5 100644 --- a/intersight_gosdk/model_hyperflex_software_version_policy.go +++ b/intersight_gosdk/model_hyperflex_software_version_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type HyperflexSoftwareVersionPolicy struct { // Desired hypervisor version to apply for all the nodes on the HyperFlex cluster. HypervisorVersion *string `json:"HypervisorVersion,omitempty"` // Desired server firmware version to apply on the HyperFlex Cluster. - ServerFirmwareVersion *string `json:"ServerFirmwareVersion,omitempty"` + ServerFirmwareVersion *string `json:"ServerFirmwareVersion,omitempty" validate:"regexp=^$|(^3\\\\.[0-9]\\\\([1-9][a-z]\\\\)$|^[4-9]\\\\.[1-9]\\\\([1-9][a-z]\\\\)$|^4\\\\.0\\\\([1-3][a-z]\\\\)$|^4\\\\.0\\\\(4[d-z]\\\\)$|4\\\\.0\\\\([5-9][a-z]\\\\)$|^[4-9]\\\\.[0-9]\\\\([0-9](\\\\.[0-9]+|[a-z]).*\\\\)$)"` ServerFirmwareVersions []HyperflexServerFirmwareVersionInfo `json:"ServerFirmwareVersions,omitempty"` UpgradeTypes []string `json:"UpgradeTypes,omitempty"` // An array of relationships to hyperflexClusterProfile resources. @@ -611,7 +611,7 @@ func (o *HyperflexSoftwareVersionPolicy) UnmarshalJSON(data []byte) (err error) // Desired hypervisor version to apply for all the nodes on the HyperFlex cluster. HypervisorVersion *string `json:"HypervisorVersion,omitempty"` // Desired server firmware version to apply on the HyperFlex Cluster. - ServerFirmwareVersion *string `json:"ServerFirmwareVersion,omitempty"` + ServerFirmwareVersion *string `json:"ServerFirmwareVersion,omitempty" validate:"regexp=^$|(^3\\\\.[0-9]\\\\([1-9][a-z]\\\\)$|^[4-9]\\\\.[1-9]\\\\([1-9][a-z]\\\\)$|^4\\\\.0\\\\([1-3][a-z]\\\\)$|^4\\\\.0\\\\(4[d-z]\\\\)$|4\\\\.0\\\\([5-9][a-z]\\\\)$|^[4-9]\\\\.[0-9]\\\\([0-9](\\\\.[0-9]+|[a-z]).*\\\\)$)"` ServerFirmwareVersions []HyperflexServerFirmwareVersionInfo `json:"ServerFirmwareVersions,omitempty"` UpgradeTypes []string `json:"UpgradeTypes,omitempty"` // An array of relationships to hyperflexClusterProfile resources. diff --git a/intersight_gosdk/model_hyperflex_software_version_policy_list.go b/intersight_gosdk/model_hyperflex_software_version_policy_list.go index b5aabcd5a1..dafb21be4d 100644 --- a/intersight_gosdk/model_hyperflex_software_version_policy_list.go +++ b/intersight_gosdk/model_hyperflex_software_version_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_software_version_policy_relationship.go b/intersight_gosdk/model_hyperflex_software_version_policy_relationship.go index db1ecfc298..56559a897b 100644 --- a/intersight_gosdk/model_hyperflex_software_version_policy_relationship.go +++ b/intersight_gosdk/model_hyperflex_software_version_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_software_version_policy_response.go b/intersight_gosdk/model_hyperflex_software_version_policy_response.go index 1c2781fe78..73cb62602f 100644 --- a/intersight_gosdk/model_hyperflex_software_version_policy_response.go +++ b/intersight_gosdk/model_hyperflex_software_version_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_st_platform_cluster_healing_info.go b/intersight_gosdk/model_hyperflex_st_platform_cluster_healing_info.go index 4603e35b86..6de2fb269b 100644 --- a/intersight_gosdk/model_hyperflex_st_platform_cluster_healing_info.go +++ b/intersight_gosdk/model_hyperflex_st_platform_cluster_healing_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_st_platform_cluster_resiliency_info.go b/intersight_gosdk/model_hyperflex_st_platform_cluster_resiliency_info.go index e24b38c115..b2f9edc179 100644 --- a/intersight_gosdk/model_hyperflex_st_platform_cluster_resiliency_info.go +++ b/intersight_gosdk/model_hyperflex_st_platform_cluster_resiliency_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_start_reduce_re_sync.go b/intersight_gosdk/model_hyperflex_start_reduce_re_sync.go index 37a29266ea..762e08ac10 100644 --- a/intersight_gosdk/model_hyperflex_start_reduce_re_sync.go +++ b/intersight_gosdk/model_hyperflex_start_reduce_re_sync.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_start_reduce_re_sync_list.go b/intersight_gosdk/model_hyperflex_start_reduce_re_sync_list.go index ec84606b22..62218d80d0 100644 --- a/intersight_gosdk/model_hyperflex_start_reduce_re_sync_list.go +++ b/intersight_gosdk/model_hyperflex_start_reduce_re_sync_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_start_reduce_re_sync_response.go b/intersight_gosdk/model_hyperflex_start_reduce_re_sync_response.go index 96ce87a186..4ff19673c7 100644 --- a/intersight_gosdk/model_hyperflex_start_reduce_re_sync_response.go +++ b/intersight_gosdk/model_hyperflex_start_reduce_re_sync_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_storage_container.go b/intersight_gosdk/model_hyperflex_storage_container.go index c9d15f2b2e..e2735fd03a 100644 --- a/intersight_gosdk/model_hyperflex_storage_container.go +++ b/intersight_gosdk/model_hyperflex_storage_container.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_storage_container_list.go b/intersight_gosdk/model_hyperflex_storage_container_list.go index c248da7f67..abf1b3a129 100644 --- a/intersight_gosdk/model_hyperflex_storage_container_list.go +++ b/intersight_gosdk/model_hyperflex_storage_container_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_storage_container_relationship.go b/intersight_gosdk/model_hyperflex_storage_container_relationship.go index c833b54771..a8e34bdffc 100644 --- a/intersight_gosdk/model_hyperflex_storage_container_relationship.go +++ b/intersight_gosdk/model_hyperflex_storage_container_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_storage_container_response.go b/intersight_gosdk/model_hyperflex_storage_container_response.go index 48e3a75a2c..d335b1e615 100644 --- a/intersight_gosdk/model_hyperflex_storage_container_response.go +++ b/intersight_gosdk/model_hyperflex_storage_container_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_summary.go b/intersight_gosdk/model_hyperflex_summary.go index 705e68cdb4..1efbb3db72 100644 --- a/intersight_gosdk/model_hyperflex_summary.go +++ b/intersight_gosdk/model_hyperflex_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_sys_config_policy.go b/intersight_gosdk/model_hyperflex_sys_config_policy.go index 4959726b49..84946881b1 100644 --- a/intersight_gosdk/model_hyperflex_sys_config_policy.go +++ b/intersight_gosdk/model_hyperflex_sys_config_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type HyperflexSysConfigPolicy struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The DNS Search Domain Name. This setting applies to HyperFlex Data Platform 3.0 or later only. - DnsDomainName *string `json:"DnsDomainName,omitempty"` + DnsDomainName *string `json:"DnsDomainName,omitempty" validate:"regexp=^$|^([a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\\\\.)*[a-zA-Z]{2,63}$"` DnsServers []string `json:"DnsServers,omitempty"` NtpServers []string `json:"NtpServers,omitempty"` // The timezone of the HyperFlex cluster's system clock. * `Pacific/Niue` - * `Africa/Abidjan` - * `Africa/Accra` - * `Africa/Addis_Ababa` - * `Africa/Algiers` - * `Africa/Asmara` - * `Africa/Bamako` - * `Africa/Bangui` - * `Africa/Banjul` - * `Africa/Bissau` - * `Africa/Blantyre` - * `Africa/Brazzaville` - * `Africa/Bujumbura` - * `Africa/Cairo` - * `Africa/Casablanca` - * `Africa/Ceuta` - * `Africa/Conakry` - * `Africa/Dakar` - * `Africa/Dar_es_Salaam` - * `Africa/Djibouti` - * `Africa/Douala` - * `Africa/El_Aaiun` - * `Africa/Freetown` - * `Africa/Gaborone` - * `Africa/Harare` - * `Africa/Johannesburg` - * `Africa/Juba` - * `Africa/Kampala` - * `Africa/Khartoum` - * `Africa/Kigali` - * `Africa/Kinshasa` - * `Africa/Lagos` - * `Africa/Libreville` - * `Africa/Lome` - * `Africa/Luanda` - * `Africa/Lubumbashi` - * `Africa/Lusaka` - * `Africa/Malabo` - * `Africa/Maputo` - * `Africa/Maseru` - * `Africa/Mbabane` - * `Africa/Mogadishu` - * `Africa/Monrovia` - * `Africa/Nairobi` - * `Africa/Ndjamena` - * `Africa/Niamey` - * `Africa/Nouakchott` - * `Africa/Ouagadougou` - * `Africa/Porto-Novo` - * `Africa/Sao_Tome` - * `Africa/Tripoli` - * `Africa/Tunis` - * `Africa/Windhoek` - * `America/Adak` - * `America/Anchorage` - * `America/Anguilla` - * `America/Antigua` - * `America/Araguaina` - * `America/Argentina/Buenos_Aires` - * `America/Argentina/Catamarca` - * `America/Argentina/Cordoba` - * `America/Argentina/Jujuy` - * `America/Argentina/La_Rioja` - * `America/Argentina/Mendoza` - * `America/Argentina/Rio_Gallegos` - * `America/Argentina/Salta` - * `America/Argentina/San_Juan` - * `America/Argentina/San_Luis` - * `America/Argentina/Tucuman` - * `America/Argentina/Ushuaia` - * `America/Aruba` - * `America/Asuncion` - * `America/Atikokan` - * `America/Bahia` - * `America/Bahia_Banderas` - * `America/Barbados` - * `America/Belem` - * `America/Belize` - * `America/Blanc-Sablon` - * `America/Boa_Vista` - * `America/Bogota` - * `America/Boise` - * `America/Cambridge_Bay` - * `America/Campo_Grande` - * `America/Cancun` - * `America/Caracas` - * `America/Cayenne` - * `America/Cayman` - * `America/Chicago` - * `America/Chihuahua` - * `America/Costa_Rica` - * `America/Creston` - * `America/Cuiaba` - * `America/Curacao` - * `America/Danmarkshavn` - * `America/Dawson` - * `America/Dawson_Creek` - * `America/Denver` - * `America/Detroit` - * `America/Dominica` - * `America/Edmonton` - * `America/Eirunepe` - * `America/El_Salvador` - * `America/Fortaleza` - * `America/Glace_Bay` - * `America/Godthab` - * `America/Goose_Bay` - * `America/Grand_Turk` - * `America/Grenada` - * `America/Guadeloupe` - * `America/Guatemala` - * `America/Guayaquil` - * `America/Guyana` - * `America/Halifax` - * `America/Havana` - * `America/Hermosillo` - * `America/Indiana/Indianapolis` - * `America/Indiana/Knox` - * `America/Indiana/Marengo` - * `America/Indiana/Petersburg` - * `America/Indiana/Tell_City` - * `America/Indiana/Vevay` - * `America/Indiana/Vincennes` - * `America/Indiana/Winamac` - * `America/Inuvik` - * `America/Iqaluit` - * `America/Jamaica` - * `America/Juneau` - * `America/Kentucky/Louisville` - * `America/Kentucky/Monticello` - * `America/Kralendijk` - * `America/La_Paz` - * `America/Lima` - * `America/Los_Angeles` - * `America/Lower_Princes` - * `America/Maceio` - * `America/Managua` - * `America/Manaus` - * `America/Marigot` - * `America/Martinique` - * `America/Matamoros` - * `America/Mazatlan` - * `America/Menominee` - * `America/Merida` - * `America/Metlakatla` - * `America/Mexico_City` - * `America/Miquelon` - * `America/Moncton` - * `America/Monterrey` - * `America/Montevideo` - * `America/Montreal` - * `America/Montserrat` - * `America/Nassau` - * `America/New_York` - * `America/Nipigon` - * `America/Nome` - * `America/Noronha` - * `America/North_Dakota/Beulah` - * `America/North_Dakota/Center` - * `America/North_Dakota/New_Salem` - * `America/Ojinaga` - * `America/Panama` - * `America/Pangnirtung` - * `America/Paramaribo` - * `America/Phoenix` - * `America/Port-au-Prince` - * `America/Port_of_Spain` - * `America/Porto_Velho` - * `America/Puerto_Rico` - * `America/Rainy_River` - * `America/Rankin_Inlet` - * `America/Recife` - * `America/Regina` - * `America/Resolute` - * `America/Rio_Branco` - * `America/Santa_Isabel` - * `America/Santarem` - * `America/Santiago` - * `America/Santo_Domingo` - * `America/Sao_Paulo` - * `America/Scoresbysund` - * `America/Shiprock` - * `America/Sitka` - * `America/St_Barthelemy` - * `America/St_Johns` - * `America/St_Kitts` - * `America/St_Lucia` - * `America/St_Thomas` - * `America/St_Vincent` - * `America/Swift_Current` - * `America/Tegucigalpa` - * `America/Thule` - * `America/Thunder_Bay` - * `America/Tijuana` - * `America/Toronto` - * `America/Tortola` - * `America/Vancouver` - * `America/Whitehorse` - * `America/Winnipeg` - * `America/Yakutat` - * `America/Yellowknife` - * `Antarctica/Casey` - * `Antarctica/Davis` - * `Antarctica/DumontDUrville` - * `Antarctica/Macquarie` - * `Antarctica/Mawson` - * `Antarctica/McMurdo` - * `Antarctica/Palmer` - * `Antarctica/Rothera` - * `Antarctica/South_Pole` - * `Antarctica/Syowa` - * `Antarctica/Troll` - * `Antarctica/Vostok` - * `Arctic/Longyearbyen` - * `Asia/Aden` - * `Asia/Almaty` - * `Asia/Amman` - * `Asia/Anadyr` - * `Asia/Aqtau` - * `Asia/Aqtobe` - * `Asia/Ashgabat` - * `Asia/Baghdad` - * `Asia/Bahrain` - * `Asia/Baku` - * `Asia/Bangkok` - * `Asia/Beirut` - * `Asia/Bishkek` - * `Asia/Brunei` - * `Asia/Calcutta` - * `Asia/Choibalsan` - * `Asia/Chongqing` - * `Asia/Colombo` - * `Asia/Damascus` - * `Asia/Dhaka` - * `Asia/Dili` - * `Asia/Dubai` - * `Asia/Dushanbe` - * `Asia/Gaza` - * `Asia/Harbin` - * `Asia/Hebron` - * `Asia/Ho_Chi_Minh` - * `Asia/Hong_Kong` - * `Asia/Hovd` - * `Asia/Irkutsk` - * `Asia/Jakarta` - * `Asia/Jayapura` - * `Asia/Jerusalem` - * `Asia/Kabul` - * `Asia/Kamchatka` - * `Asia/Karachi` - * `Asia/Kashgar` - * `Asia/Kathmandu` - * `Asia/Katmandu` - * `Asia/Khandyga` - * `Asia/Kolkata` - * `Asia/Krasnoyarsk` - * `Asia/Kuala_Lumpur` - * `Asia/Kuching` - * `Asia/Kuwait` - * `Asia/Macau` - * `Asia/Magadan` - * `Asia/Makassar` - * `Asia/Manila` - * `Asia/Muscat` - * `Asia/Nicosia` - * `Asia/Novokuznetsk` - * `Asia/Novosibirsk` - * `Asia/Omsk` - * `Asia/Oral` - * `Asia/Phnom_Penh` - * `Asia/Pontianak` - * `Asia/Pyongyang` - * `Asia/Qatar` - * `Asia/Qyzylorda` - * `Asia/Rangoon` - * `Asia/Riyadh` - * `Asia/Saigon` - * `Asia/Sakhalin` - * `Asia/Samarkand` - * `Asia/Seoul` - * `Asia/Shanghai` - * `Asia/Singapore` - * `Asia/Taipei` - * `Asia/Tashkent` - * `Asia/Tbilisi` - * `Asia/Tehran` - * `Asia/Thimphu` - * `Asia/Tokyo` - * `Asia/Ulaanbaatar` - * `Asia/Urumqi` - * `Asia/Ust-Nera` - * `Asia/Vientiane` - * `Asia/Vladivostok` - * `Asia/Yakutsk` - * `Asia/Yekaterinburg` - * `Asia/Yerevan` - * `Atlantic/Azores` - * `Atlantic/Bermuda` - * `Atlantic/Canary` - * `Atlantic/Cape_Verde` - * `Atlantic/Faroe` - * `Atlantic/Madeira` - * `Atlantic/Reykjavik` - * `Atlantic/South_Georgia` - * `Atlantic/St_Helena` - * `Atlantic/Stanley` - * `Australia/Adelaide` - * `Australia/Brisbane` - * `Australia/Broken_Hill` - * `Australia/Currie` - * `Australia/Darwin` - * `Australia/Eucla` - * `Australia/Hobart` - * `Australia/Lindeman` - * `Australia/Lord_Howe` - * `Australia/Melbourne` - * `Australia/Perth` - * `Australia/Sydney` - * `Etc/GMT` - * `Europe/Amsterdam` - * `Europe/Andorra` - * `Europe/Athens` - * `Europe/Belgrade` - * `Europe/Berlin` - * `Europe/Bratislava` - * `Europe/Brussels` - * `Europe/Bucharest` - * `Europe/Budapest` - * `Europe/Busingen` - * `Europe/Chisinau` - * `Europe/Copenhagen` - * `Europe/Dublin` - * `Europe/Gibraltar` - * `Europe/Guernsey` - * `Europe/Helsinki` - * `Europe/Isle_of_Man` - * `Europe/Istanbul` - * `Europe/Jersey` - * `Europe/Kaliningrad` - * `Europe/Kiev` - * `Europe/Lisbon` - * `Europe/Ljubljana` - * `Europe/London` - * `Europe/Luxembourg` - * `Europe/Madrid` - * `Europe/Malta` - * `Europe/Mariehamn` - * `Europe/Minsk` - * `Europe/Monaco` - * `Europe/Moscow` - * `Europe/Oslo` - * `Europe/Paris` - * `Europe/Podgorica` - * `Europe/Prague` - * `Europe/Riga` - * `Europe/Rome` - * `Europe/Samara` - * `Europe/San_Marino` - * `Europe/Sarajevo` - * `Europe/Simferopol` - * `Europe/Skopje` - * `Europe/Sofia` - * `Europe/Stockholm` - * `Europe/Tallinn` - * `Europe/Tirane` - * `Europe/Uzhgorod` - * `Europe/Vaduz` - * `Europe/Vatican` - * `Europe/Vienna` - * `Europe/Vilnius` - * `Europe/Volgograd` - * `Europe/Warsaw` - * `Europe/Zagreb` - * `Europe/Zaporozhye` - * `Europe/Zurich` - * `Indian/Antananarivo` - * `Indian/Chagos` - * `Indian/Christmas` - * `Indian/Cocos` - * `Indian/Comoro` - * `Indian/Kerguelen` - * `Indian/Mahe` - * `Indian/Maldives` - * `Indian/Mauritius` - * `Indian/Mayotte` - * `Indian/Reunion` - * `Pacific/Apia` - * `Pacific/Auckland` - * `Pacific/Chatham` - * `Pacific/Chuuk` - * `Pacific/Easter` - * `Pacific/Efate` - * `Pacific/Enderbury` - * `Pacific/Fakaofo` - * `Pacific/Fiji` - * `Pacific/Funafuti` - * `Pacific/Galapagos` - * `Pacific/Gambier` - * `Pacific/Guadalcanal` - * `Pacific/Guam` - * `Pacific/Honolulu` - * `Pacific/Johnston` - * `Pacific/Kiritimati` - * `Pacific/Kosrae` - * `Pacific/Kwajalein` - * `Pacific/Majuro` - * `Pacific/Marquesas` - * `Pacific/Midway` - * `Pacific/Nauru` - * `Pacific/Norfolk` - * `Pacific/Noumea` - * `Pacific/Pago_Pago` - * `Pacific/Palau` - * `Pacific/Pitcairn` - * `Pacific/Pohnpei` - * `Pacific/Port_Moresby` - * `Pacific/Rarotonga` - * `Pacific/Saipan` - * `Pacific/Tahiti` - * `Pacific/Tarawa` - * `Pacific/Tongatapu` - * `Pacific/Wake` - * `Pacific/Wallis` - * `UTC` - @@ -433,7 +433,7 @@ func (o *HyperflexSysConfigPolicy) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The DNS Search Domain Name. This setting applies to HyperFlex Data Platform 3.0 or later only. - DnsDomainName *string `json:"DnsDomainName,omitempty"` + DnsDomainName *string `json:"DnsDomainName,omitempty" validate:"regexp=^$|^([a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\\\\.)*[a-zA-Z]{2,63}$"` DnsServers []string `json:"DnsServers,omitempty"` NtpServers []string `json:"NtpServers,omitempty"` // The timezone of the HyperFlex cluster's system clock. * `Pacific/Niue` - * `Africa/Abidjan` - * `Africa/Accra` - * `Africa/Addis_Ababa` - * `Africa/Algiers` - * `Africa/Asmara` - * `Africa/Bamako` - * `Africa/Bangui` - * `Africa/Banjul` - * `Africa/Bissau` - * `Africa/Blantyre` - * `Africa/Brazzaville` - * `Africa/Bujumbura` - * `Africa/Cairo` - * `Africa/Casablanca` - * `Africa/Ceuta` - * `Africa/Conakry` - * `Africa/Dakar` - * `Africa/Dar_es_Salaam` - * `Africa/Djibouti` - * `Africa/Douala` - * `Africa/El_Aaiun` - * `Africa/Freetown` - * `Africa/Gaborone` - * `Africa/Harare` - * `Africa/Johannesburg` - * `Africa/Juba` - * `Africa/Kampala` - * `Africa/Khartoum` - * `Africa/Kigali` - * `Africa/Kinshasa` - * `Africa/Lagos` - * `Africa/Libreville` - * `Africa/Lome` - * `Africa/Luanda` - * `Africa/Lubumbashi` - * `Africa/Lusaka` - * `Africa/Malabo` - * `Africa/Maputo` - * `Africa/Maseru` - * `Africa/Mbabane` - * `Africa/Mogadishu` - * `Africa/Monrovia` - * `Africa/Nairobi` - * `Africa/Ndjamena` - * `Africa/Niamey` - * `Africa/Nouakchott` - * `Africa/Ouagadougou` - * `Africa/Porto-Novo` - * `Africa/Sao_Tome` - * `Africa/Tripoli` - * `Africa/Tunis` - * `Africa/Windhoek` - * `America/Adak` - * `America/Anchorage` - * `America/Anguilla` - * `America/Antigua` - * `America/Araguaina` - * `America/Argentina/Buenos_Aires` - * `America/Argentina/Catamarca` - * `America/Argentina/Cordoba` - * `America/Argentina/Jujuy` - * `America/Argentina/La_Rioja` - * `America/Argentina/Mendoza` - * `America/Argentina/Rio_Gallegos` - * `America/Argentina/Salta` - * `America/Argentina/San_Juan` - * `America/Argentina/San_Luis` - * `America/Argentina/Tucuman` - * `America/Argentina/Ushuaia` - * `America/Aruba` - * `America/Asuncion` - * `America/Atikokan` - * `America/Bahia` - * `America/Bahia_Banderas` - * `America/Barbados` - * `America/Belem` - * `America/Belize` - * `America/Blanc-Sablon` - * `America/Boa_Vista` - * `America/Bogota` - * `America/Boise` - * `America/Cambridge_Bay` - * `America/Campo_Grande` - * `America/Cancun` - * `America/Caracas` - * `America/Cayenne` - * `America/Cayman` - * `America/Chicago` - * `America/Chihuahua` - * `America/Costa_Rica` - * `America/Creston` - * `America/Cuiaba` - * `America/Curacao` - * `America/Danmarkshavn` - * `America/Dawson` - * `America/Dawson_Creek` - * `America/Denver` - * `America/Detroit` - * `America/Dominica` - * `America/Edmonton` - * `America/Eirunepe` - * `America/El_Salvador` - * `America/Fortaleza` - * `America/Glace_Bay` - * `America/Godthab` - * `America/Goose_Bay` - * `America/Grand_Turk` - * `America/Grenada` - * `America/Guadeloupe` - * `America/Guatemala` - * `America/Guayaquil` - * `America/Guyana` - * `America/Halifax` - * `America/Havana` - * `America/Hermosillo` - * `America/Indiana/Indianapolis` - * `America/Indiana/Knox` - * `America/Indiana/Marengo` - * `America/Indiana/Petersburg` - * `America/Indiana/Tell_City` - * `America/Indiana/Vevay` - * `America/Indiana/Vincennes` - * `America/Indiana/Winamac` - * `America/Inuvik` - * `America/Iqaluit` - * `America/Jamaica` - * `America/Juneau` - * `America/Kentucky/Louisville` - * `America/Kentucky/Monticello` - * `America/Kralendijk` - * `America/La_Paz` - * `America/Lima` - * `America/Los_Angeles` - * `America/Lower_Princes` - * `America/Maceio` - * `America/Managua` - * `America/Manaus` - * `America/Marigot` - * `America/Martinique` - * `America/Matamoros` - * `America/Mazatlan` - * `America/Menominee` - * `America/Merida` - * `America/Metlakatla` - * `America/Mexico_City` - * `America/Miquelon` - * `America/Moncton` - * `America/Monterrey` - * `America/Montevideo` - * `America/Montreal` - * `America/Montserrat` - * `America/Nassau` - * `America/New_York` - * `America/Nipigon` - * `America/Nome` - * `America/Noronha` - * `America/North_Dakota/Beulah` - * `America/North_Dakota/Center` - * `America/North_Dakota/New_Salem` - * `America/Ojinaga` - * `America/Panama` - * `America/Pangnirtung` - * `America/Paramaribo` - * `America/Phoenix` - * `America/Port-au-Prince` - * `America/Port_of_Spain` - * `America/Porto_Velho` - * `America/Puerto_Rico` - * `America/Rainy_River` - * `America/Rankin_Inlet` - * `America/Recife` - * `America/Regina` - * `America/Resolute` - * `America/Rio_Branco` - * `America/Santa_Isabel` - * `America/Santarem` - * `America/Santiago` - * `America/Santo_Domingo` - * `America/Sao_Paulo` - * `America/Scoresbysund` - * `America/Shiprock` - * `America/Sitka` - * `America/St_Barthelemy` - * `America/St_Johns` - * `America/St_Kitts` - * `America/St_Lucia` - * `America/St_Thomas` - * `America/St_Vincent` - * `America/Swift_Current` - * `America/Tegucigalpa` - * `America/Thule` - * `America/Thunder_Bay` - * `America/Tijuana` - * `America/Toronto` - * `America/Tortola` - * `America/Vancouver` - * `America/Whitehorse` - * `America/Winnipeg` - * `America/Yakutat` - * `America/Yellowknife` - * `Antarctica/Casey` - * `Antarctica/Davis` - * `Antarctica/DumontDUrville` - * `Antarctica/Macquarie` - * `Antarctica/Mawson` - * `Antarctica/McMurdo` - * `Antarctica/Palmer` - * `Antarctica/Rothera` - * `Antarctica/South_Pole` - * `Antarctica/Syowa` - * `Antarctica/Troll` - * `Antarctica/Vostok` - * `Arctic/Longyearbyen` - * `Asia/Aden` - * `Asia/Almaty` - * `Asia/Amman` - * `Asia/Anadyr` - * `Asia/Aqtau` - * `Asia/Aqtobe` - * `Asia/Ashgabat` - * `Asia/Baghdad` - * `Asia/Bahrain` - * `Asia/Baku` - * `Asia/Bangkok` - * `Asia/Beirut` - * `Asia/Bishkek` - * `Asia/Brunei` - * `Asia/Calcutta` - * `Asia/Choibalsan` - * `Asia/Chongqing` - * `Asia/Colombo` - * `Asia/Damascus` - * `Asia/Dhaka` - * `Asia/Dili` - * `Asia/Dubai` - * `Asia/Dushanbe` - * `Asia/Gaza` - * `Asia/Harbin` - * `Asia/Hebron` - * `Asia/Ho_Chi_Minh` - * `Asia/Hong_Kong` - * `Asia/Hovd` - * `Asia/Irkutsk` - * `Asia/Jakarta` - * `Asia/Jayapura` - * `Asia/Jerusalem` - * `Asia/Kabul` - * `Asia/Kamchatka` - * `Asia/Karachi` - * `Asia/Kashgar` - * `Asia/Kathmandu` - * `Asia/Katmandu` - * `Asia/Khandyga` - * `Asia/Kolkata` - * `Asia/Krasnoyarsk` - * `Asia/Kuala_Lumpur` - * `Asia/Kuching` - * `Asia/Kuwait` - * `Asia/Macau` - * `Asia/Magadan` - * `Asia/Makassar` - * `Asia/Manila` - * `Asia/Muscat` - * `Asia/Nicosia` - * `Asia/Novokuznetsk` - * `Asia/Novosibirsk` - * `Asia/Omsk` - * `Asia/Oral` - * `Asia/Phnom_Penh` - * `Asia/Pontianak` - * `Asia/Pyongyang` - * `Asia/Qatar` - * `Asia/Qyzylorda` - * `Asia/Rangoon` - * `Asia/Riyadh` - * `Asia/Saigon` - * `Asia/Sakhalin` - * `Asia/Samarkand` - * `Asia/Seoul` - * `Asia/Shanghai` - * `Asia/Singapore` - * `Asia/Taipei` - * `Asia/Tashkent` - * `Asia/Tbilisi` - * `Asia/Tehran` - * `Asia/Thimphu` - * `Asia/Tokyo` - * `Asia/Ulaanbaatar` - * `Asia/Urumqi` - * `Asia/Ust-Nera` - * `Asia/Vientiane` - * `Asia/Vladivostok` - * `Asia/Yakutsk` - * `Asia/Yekaterinburg` - * `Asia/Yerevan` - * `Atlantic/Azores` - * `Atlantic/Bermuda` - * `Atlantic/Canary` - * `Atlantic/Cape_Verde` - * `Atlantic/Faroe` - * `Atlantic/Madeira` - * `Atlantic/Reykjavik` - * `Atlantic/South_Georgia` - * `Atlantic/St_Helena` - * `Atlantic/Stanley` - * `Australia/Adelaide` - * `Australia/Brisbane` - * `Australia/Broken_Hill` - * `Australia/Currie` - * `Australia/Darwin` - * `Australia/Eucla` - * `Australia/Hobart` - * `Australia/Lindeman` - * `Australia/Lord_Howe` - * `Australia/Melbourne` - * `Australia/Perth` - * `Australia/Sydney` - * `Etc/GMT` - * `Europe/Amsterdam` - * `Europe/Andorra` - * `Europe/Athens` - * `Europe/Belgrade` - * `Europe/Berlin` - * `Europe/Bratislava` - * `Europe/Brussels` - * `Europe/Bucharest` - * `Europe/Budapest` - * `Europe/Busingen` - * `Europe/Chisinau` - * `Europe/Copenhagen` - * `Europe/Dublin` - * `Europe/Gibraltar` - * `Europe/Guernsey` - * `Europe/Helsinki` - * `Europe/Isle_of_Man` - * `Europe/Istanbul` - * `Europe/Jersey` - * `Europe/Kaliningrad` - * `Europe/Kiev` - * `Europe/Lisbon` - * `Europe/Ljubljana` - * `Europe/London` - * `Europe/Luxembourg` - * `Europe/Madrid` - * `Europe/Malta` - * `Europe/Mariehamn` - * `Europe/Minsk` - * `Europe/Monaco` - * `Europe/Moscow` - * `Europe/Oslo` - * `Europe/Paris` - * `Europe/Podgorica` - * `Europe/Prague` - * `Europe/Riga` - * `Europe/Rome` - * `Europe/Samara` - * `Europe/San_Marino` - * `Europe/Sarajevo` - * `Europe/Simferopol` - * `Europe/Skopje` - * `Europe/Sofia` - * `Europe/Stockholm` - * `Europe/Tallinn` - * `Europe/Tirane` - * `Europe/Uzhgorod` - * `Europe/Vaduz` - * `Europe/Vatican` - * `Europe/Vienna` - * `Europe/Vilnius` - * `Europe/Volgograd` - * `Europe/Warsaw` - * `Europe/Zagreb` - * `Europe/Zaporozhye` - * `Europe/Zurich` - * `Indian/Antananarivo` - * `Indian/Chagos` - * `Indian/Christmas` - * `Indian/Cocos` - * `Indian/Comoro` - * `Indian/Kerguelen` - * `Indian/Mahe` - * `Indian/Maldives` - * `Indian/Mauritius` - * `Indian/Mayotte` - * `Indian/Reunion` - * `Pacific/Apia` - * `Pacific/Auckland` - * `Pacific/Chatham` - * `Pacific/Chuuk` - * `Pacific/Easter` - * `Pacific/Efate` - * `Pacific/Enderbury` - * `Pacific/Fakaofo` - * `Pacific/Fiji` - * `Pacific/Funafuti` - * `Pacific/Galapagos` - * `Pacific/Gambier` - * `Pacific/Guadalcanal` - * `Pacific/Guam` - * `Pacific/Honolulu` - * `Pacific/Johnston` - * `Pacific/Kiritimati` - * `Pacific/Kosrae` - * `Pacific/Kwajalein` - * `Pacific/Majuro` - * `Pacific/Marquesas` - * `Pacific/Midway` - * `Pacific/Nauru` - * `Pacific/Norfolk` - * `Pacific/Noumea` - * `Pacific/Pago_Pago` - * `Pacific/Palau` - * `Pacific/Pitcairn` - * `Pacific/Pohnpei` - * `Pacific/Port_Moresby` - * `Pacific/Rarotonga` - * `Pacific/Saipan` - * `Pacific/Tahiti` - * `Pacific/Tarawa` - * `Pacific/Tongatapu` - * `Pacific/Wake` - * `Pacific/Wallis` - * `UTC` - diff --git a/intersight_gosdk/model_hyperflex_sys_config_policy_list.go b/intersight_gosdk/model_hyperflex_sys_config_policy_list.go index 1badb24e20..89719a558a 100644 --- a/intersight_gosdk/model_hyperflex_sys_config_policy_list.go +++ b/intersight_gosdk/model_hyperflex_sys_config_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_sys_config_policy_relationship.go b/intersight_gosdk/model_hyperflex_sys_config_policy_relationship.go index cdb3280226..33bf77f3e3 100644 --- a/intersight_gosdk/model_hyperflex_sys_config_policy_relationship.go +++ b/intersight_gosdk/model_hyperflex_sys_config_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_sys_config_policy_response.go b/intersight_gosdk/model_hyperflex_sys_config_policy_response.go index 96f98120f8..8d1808f9f8 100644 --- a/intersight_gosdk/model_hyperflex_sys_config_policy_response.go +++ b/intersight_gosdk/model_hyperflex_sys_config_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_target.go b/intersight_gosdk/model_hyperflex_target.go index 6f904d387a..3a81ab2dce 100644 --- a/intersight_gosdk/model_hyperflex_target.go +++ b/intersight_gosdk/model_hyperflex_target.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_target_list.go b/intersight_gosdk/model_hyperflex_target_list.go index 4f8a12ee15..16e2531219 100644 --- a/intersight_gosdk/model_hyperflex_target_list.go +++ b/intersight_gosdk/model_hyperflex_target_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_target_relationship.go b/intersight_gosdk/model_hyperflex_target_relationship.go index 1e48e899d4..dc0e5a9e30 100644 --- a/intersight_gosdk/model_hyperflex_target_relationship.go +++ b/intersight_gosdk/model_hyperflex_target_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_target_response.go b/intersight_gosdk/model_hyperflex_target_response.go index 7a22806d7c..bb7cb70d94 100644 --- a/intersight_gosdk/model_hyperflex_target_response.go +++ b/intersight_gosdk/model_hyperflex_target_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_tracked_disk.go b/intersight_gosdk/model_hyperflex_tracked_disk.go index bcfa8c0d8b..4bd390f8c1 100644 --- a/intersight_gosdk/model_hyperflex_tracked_disk.go +++ b/intersight_gosdk/model_hyperflex_tracked_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_tracked_file.go b/intersight_gosdk/model_hyperflex_tracked_file.go index a718b061a2..f367856210 100644 --- a/intersight_gosdk/model_hyperflex_tracked_file.go +++ b/intersight_gosdk/model_hyperflex_tracked_file.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_ucsm_config_policy.go b/intersight_gosdk/model_hyperflex_ucsm_config_policy.go index 840cbc50fb..172a7d8a4c 100644 --- a/intersight_gosdk/model_hyperflex_ucsm_config_policy.go +++ b/intersight_gosdk/model_hyperflex_ucsm_config_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type HyperflexUcsmConfigPolicy struct { KvmIpRange NullableHyperflexIpAddrRange `json:"KvmIpRange,omitempty"` MacPrefixRange NullableHyperflexMacAddrPrefixRange `json:"MacPrefixRange,omitempty"` // The server firmware bundle version used for server components such as CIMC, adapters, BIOS, etc. - ServerFirmwareVersion *string `json:"ServerFirmwareVersion,omitempty"` + ServerFirmwareVersion *string `json:"ServerFirmwareVersion,omitempty" validate:"regexp=(^3\\\\.[1-9]\\\\([1-9][a-z]\\\\)$|^[4-9]\\\\.[0-9]\\\\([1-9][a-z]\\\\)$)"` // An array of relationships to hyperflexClusterProfile resources. ClusterProfiles []HyperflexClusterProfileRelationship `json:"ClusterProfiles,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` @@ -414,7 +414,7 @@ func (o *HyperflexUcsmConfigPolicy) UnmarshalJSON(data []byte) (err error) { KvmIpRange NullableHyperflexIpAddrRange `json:"KvmIpRange,omitempty"` MacPrefixRange NullableHyperflexMacAddrPrefixRange `json:"MacPrefixRange,omitempty"` // The server firmware bundle version used for server components such as CIMC, adapters, BIOS, etc. - ServerFirmwareVersion *string `json:"ServerFirmwareVersion,omitempty"` + ServerFirmwareVersion *string `json:"ServerFirmwareVersion,omitempty" validate:"regexp=(^3\\\\.[1-9]\\\\([1-9][a-z]\\\\)$|^[4-9]\\\\.[0-9]\\\\([1-9][a-z]\\\\)$)"` // An array of relationships to hyperflexClusterProfile resources. ClusterProfiles []HyperflexClusterProfileRelationship `json:"ClusterProfiles,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` diff --git a/intersight_gosdk/model_hyperflex_ucsm_config_policy_list.go b/intersight_gosdk/model_hyperflex_ucsm_config_policy_list.go index 9600a50286..2d764581f6 100644 --- a/intersight_gosdk/model_hyperflex_ucsm_config_policy_list.go +++ b/intersight_gosdk/model_hyperflex_ucsm_config_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_ucsm_config_policy_relationship.go b/intersight_gosdk/model_hyperflex_ucsm_config_policy_relationship.go index 9033e80faf..d8c55a0f09 100644 --- a/intersight_gosdk/model_hyperflex_ucsm_config_policy_relationship.go +++ b/intersight_gosdk/model_hyperflex_ucsm_config_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_ucsm_config_policy_response.go b/intersight_gosdk/model_hyperflex_ucsm_config_policy_response.go index 0fdeeadbcd..5aceec9d98 100644 --- a/intersight_gosdk/model_hyperflex_ucsm_config_policy_response.go +++ b/intersight_gosdk/model_hyperflex_ucsm_config_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_vcenter_config_policy.go b/intersight_gosdk/model_hyperflex_vcenter_config_policy.go index 8ee51c49c3..4532e1a848 100644 --- a/intersight_gosdk/model_hyperflex_vcenter_config_policy.go +++ b/intersight_gosdk/model_hyperflex_vcenter_config_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type HyperflexVcenterConfigPolicy struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The vCenter datacenter name. - DataCenter *string `json:"DataCenter,omitempty"` + DataCenter *string `json:"DataCenter,omitempty" validate:"regexp=^[a-zA-Z0-9~!@#$%&*()-_][a-zA-Z0-9~!@#$%&* ()-_]{0,79}$"` // The vCenter server FQDN or IP. - Hostname *string `json:"Hostname,omitempty"` + Hostname *string `json:"Hostname,omitempty" validate:"regexp=^[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?$|^[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?(\\\\.[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?)*(\\\\.[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?)$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password for authenticating with vCenter. Follow the corresponding password policy governed by vCenter. @@ -39,7 +39,7 @@ type HyperflexVcenterConfigPolicy struct { // Overrides the default vCenter Single Sign-On URL. Do not specify unless instructed by Cisco TAC. SsoUrl *string `json:"SsoUrl,omitempty"` // The vCenter username (e.g. administrator@vsphere.local). - Username *string `json:"Username,omitempty"` + Username *string `json:"Username,omitempty" validate:"regexp=^$|^([a-zA-Z0-9._-]+)@([a-zA-Z0-9._-]+)$"` // An array of relationships to hyperflexClusterProfile resources. ClusterProfiles []HyperflexClusterProfileRelationship `json:"ClusterProfiles,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` @@ -503,9 +503,9 @@ func (o *HyperflexVcenterConfigPolicy) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The vCenter datacenter name. - DataCenter *string `json:"DataCenter,omitempty"` + DataCenter *string `json:"DataCenter,omitempty" validate:"regexp=^[a-zA-Z0-9~!@#$%&*()-_][a-zA-Z0-9~!@#$%&* ()-_]{0,79}$"` // The vCenter server FQDN or IP. - Hostname *string `json:"Hostname,omitempty"` + Hostname *string `json:"Hostname,omitempty" validate:"regexp=^[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?$|^[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?(\\\\.[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?)*(\\\\.[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?)$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password for authenticating with vCenter. Follow the corresponding password policy governed by vCenter. @@ -513,7 +513,7 @@ func (o *HyperflexVcenterConfigPolicy) UnmarshalJSON(data []byte) (err error) { // Overrides the default vCenter Single Sign-On URL. Do not specify unless instructed by Cisco TAC. SsoUrl *string `json:"SsoUrl,omitempty"` // The vCenter username (e.g. administrator@vsphere.local). - Username *string `json:"Username,omitempty"` + Username *string `json:"Username,omitempty" validate:"regexp=^$|^([a-zA-Z0-9._-]+)@([a-zA-Z0-9._-]+)$"` // An array of relationships to hyperflexClusterProfile resources. ClusterProfiles []HyperflexClusterProfileRelationship `json:"ClusterProfiles,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` diff --git a/intersight_gosdk/model_hyperflex_vcenter_config_policy_list.go b/intersight_gosdk/model_hyperflex_vcenter_config_policy_list.go index 79ea491323..c13a35c3ee 100644 --- a/intersight_gosdk/model_hyperflex_vcenter_config_policy_list.go +++ b/intersight_gosdk/model_hyperflex_vcenter_config_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_vcenter_config_policy_relationship.go b/intersight_gosdk/model_hyperflex_vcenter_config_policy_relationship.go index 843402df42..46f5e207c2 100644 --- a/intersight_gosdk/model_hyperflex_vcenter_config_policy_relationship.go +++ b/intersight_gosdk/model_hyperflex_vcenter_config_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_vcenter_config_policy_response.go b/intersight_gosdk/model_hyperflex_vcenter_config_policy_response.go index 3d75f55c91..c2ef5effc7 100644 --- a/intersight_gosdk/model_hyperflex_vcenter_config_policy_response.go +++ b/intersight_gosdk/model_hyperflex_vcenter_config_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_vcenter_configuration.go b/intersight_gosdk/model_hyperflex_vcenter_configuration.go index bec8266e21..eefabf2b1c 100644 --- a/intersight_gosdk/model_hyperflex_vcenter_configuration.go +++ b/intersight_gosdk/model_hyperflex_vcenter_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_virtual_machine.go b/intersight_gosdk/model_hyperflex_virtual_machine.go index 190316d9ed..c305fe6d66 100644 --- a/intersight_gosdk/model_hyperflex_virtual_machine.go +++ b/intersight_gosdk/model_hyperflex_virtual_machine.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_virtual_machine_runtime_info.go b/intersight_gosdk/model_hyperflex_virtual_machine_runtime_info.go index 9a7bc65dfc..a522f94d96 100644 --- a/intersight_gosdk/model_hyperflex_virtual_machine_runtime_info.go +++ b/intersight_gosdk/model_hyperflex_virtual_machine_runtime_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_vm_backup_info.go b/intersight_gosdk/model_hyperflex_vm_backup_info.go index a24f43f124..f9947e7427 100644 --- a/intersight_gosdk/model_hyperflex_vm_backup_info.go +++ b/intersight_gosdk/model_hyperflex_vm_backup_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_vm_backup_info_list.go b/intersight_gosdk/model_hyperflex_vm_backup_info_list.go index 9ec831ac4c..1d548c0cfd 100644 --- a/intersight_gosdk/model_hyperflex_vm_backup_info_list.go +++ b/intersight_gosdk/model_hyperflex_vm_backup_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_vm_backup_info_relationship.go b/intersight_gosdk/model_hyperflex_vm_backup_info_relationship.go index c7abbdf565..6950b990eb 100644 --- a/intersight_gosdk/model_hyperflex_vm_backup_info_relationship.go +++ b/intersight_gosdk/model_hyperflex_vm_backup_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_vm_backup_info_response.go b/intersight_gosdk/model_hyperflex_vm_backup_info_response.go index 9420779109..0bf5f36fe0 100644 --- a/intersight_gosdk/model_hyperflex_vm_backup_info_response.go +++ b/intersight_gosdk/model_hyperflex_vm_backup_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_vm_import_operation.go b/intersight_gosdk/model_hyperflex_vm_import_operation.go index ca277543d7..04c17dc71a 100644 --- a/intersight_gosdk/model_hyperflex_vm_import_operation.go +++ b/intersight_gosdk/model_hyperflex_vm_import_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_vm_import_operation_list.go b/intersight_gosdk/model_hyperflex_vm_import_operation_list.go index 5ddc8922a7..d5a1747968 100644 --- a/intersight_gosdk/model_hyperflex_vm_import_operation_list.go +++ b/intersight_gosdk/model_hyperflex_vm_import_operation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_vm_import_operation_response.go b/intersight_gosdk/model_hyperflex_vm_import_operation_response.go index 5d1ecc1437..63fe977ce6 100644 --- a/intersight_gosdk/model_hyperflex_vm_import_operation_response.go +++ b/intersight_gosdk/model_hyperflex_vm_import_operation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_vm_protection_space_usage.go b/intersight_gosdk/model_hyperflex_vm_protection_space_usage.go index 0944224ce9..beb07fa726 100644 --- a/intersight_gosdk/model_hyperflex_vm_protection_space_usage.go +++ b/intersight_gosdk/model_hyperflex_vm_protection_space_usage.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_vm_restore_operation.go b/intersight_gosdk/model_hyperflex_vm_restore_operation.go index b8e111b5a6..28372e1d28 100644 --- a/intersight_gosdk/model_hyperflex_vm_restore_operation.go +++ b/intersight_gosdk/model_hyperflex_vm_restore_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_vm_restore_operation_list.go b/intersight_gosdk/model_hyperflex_vm_restore_operation_list.go index 68b53fce45..f2a37aa893 100644 --- a/intersight_gosdk/model_hyperflex_vm_restore_operation_list.go +++ b/intersight_gosdk/model_hyperflex_vm_restore_operation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_vm_restore_operation_response.go b/intersight_gosdk/model_hyperflex_vm_restore_operation_response.go index 32680e4d49..16af12df2a 100644 --- a/intersight_gosdk/model_hyperflex_vm_restore_operation_response.go +++ b/intersight_gosdk/model_hyperflex_vm_restore_operation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_vm_snapshot_info.go b/intersight_gosdk/model_hyperflex_vm_snapshot_info.go index 23fdf3e347..7f53a49c98 100644 --- a/intersight_gosdk/model_hyperflex_vm_snapshot_info.go +++ b/intersight_gosdk/model_hyperflex_vm_snapshot_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_vm_snapshot_info_list.go b/intersight_gosdk/model_hyperflex_vm_snapshot_info_list.go index eea7902862..449b115495 100644 --- a/intersight_gosdk/model_hyperflex_vm_snapshot_info_list.go +++ b/intersight_gosdk/model_hyperflex_vm_snapshot_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_vm_snapshot_info_relationship.go b/intersight_gosdk/model_hyperflex_vm_snapshot_info_relationship.go index df438b0d99..dbdc1cdfb8 100644 --- a/intersight_gosdk/model_hyperflex_vm_snapshot_info_relationship.go +++ b/intersight_gosdk/model_hyperflex_vm_snapshot_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_vm_snapshot_info_response.go b/intersight_gosdk/model_hyperflex_vm_snapshot_info_response.go index 8f0e10139f..22b8df8452 100644 --- a/intersight_gosdk/model_hyperflex_vm_snapshot_info_response.go +++ b/intersight_gosdk/model_hyperflex_vm_snapshot_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_volume.go b/intersight_gosdk/model_hyperflex_volume.go index 3fa74592a3..d680c1b6fc 100644 --- a/intersight_gosdk/model_hyperflex_volume.go +++ b/intersight_gosdk/model_hyperflex_volume.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_volume_list.go b/intersight_gosdk/model_hyperflex_volume_list.go index cedf746b7b..799901f1e7 100644 --- a/intersight_gosdk/model_hyperflex_volume_list.go +++ b/intersight_gosdk/model_hyperflex_volume_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_volume_relationship.go b/intersight_gosdk/model_hyperflex_volume_relationship.go index 132325434b..96209afea2 100644 --- a/intersight_gosdk/model_hyperflex_volume_relationship.go +++ b/intersight_gosdk/model_hyperflex_volume_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_volume_response.go b/intersight_gosdk/model_hyperflex_volume_response.go index 092c3f74ef..407915d5a5 100644 --- a/intersight_gosdk/model_hyperflex_volume_response.go +++ b/intersight_gosdk/model_hyperflex_volume_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_witness_configuration.go b/intersight_gosdk/model_hyperflex_witness_configuration.go index 8b1950a4f1..df032b8d45 100644 --- a/intersight_gosdk/model_hyperflex_witness_configuration.go +++ b/intersight_gosdk/model_hyperflex_witness_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_witness_configuration_list.go b/intersight_gosdk/model_hyperflex_witness_configuration_list.go index 03ced8767a..46a8da8d8d 100644 --- a/intersight_gosdk/model_hyperflex_witness_configuration_list.go +++ b/intersight_gosdk/model_hyperflex_witness_configuration_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_witness_configuration_response.go b/intersight_gosdk/model_hyperflex_witness_configuration_response.go index ba9fc78f75..2c4012579a 100644 --- a/intersight_gosdk/model_hyperflex_witness_configuration_response.go +++ b/intersight_gosdk/model_hyperflex_witness_configuration_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_wwxn_prefix_range.go b/intersight_gosdk/model_hyperflex_wwxn_prefix_range.go index 42fbf7edf6..a520164756 100644 --- a/intersight_gosdk/model_hyperflex_wwxn_prefix_range.go +++ b/intersight_gosdk/model_hyperflex_wwxn_prefix_range.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type HyperflexWwxnPrefixRange struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The end WWxN prefix of a WWPN/WWNN range in the form of 20:00:00:25:B5:XX. - EndAddr *string `json:"EndAddr,omitempty"` + EndAddr *string `json:"EndAddr,omitempty" validate:"regexp=^$|^20:00:00:25:B5:[0-9a-fA-F]{2}$"` // The start WWxN prefix of a WWPN/WWNN range in the form of 20:00:00:25:B5:XX. - StartAddr *string `json:"StartAddr,omitempty"` + StartAddr *string `json:"StartAddr,omitempty" validate:"regexp=^$|^20:00:00:25:B5:[0-9a-fA-F]{2}$"` AdditionalProperties map[string]interface{} } @@ -270,9 +270,9 @@ func (o *HyperflexWwxnPrefixRange) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The end WWxN prefix of a WWPN/WWNN range in the form of 20:00:00:25:B5:XX. - EndAddr *string `json:"EndAddr,omitempty"` + EndAddr *string `json:"EndAddr,omitempty" validate:"regexp=^$|^20:00:00:25:B5:[0-9a-fA-F]{2}$"` // The start WWxN prefix of a WWPN/WWNN range in the form of 20:00:00:25:B5:XX. - StartAddr *string `json:"StartAddr,omitempty"` + StartAddr *string `json:"StartAddr,omitempty" validate:"regexp=^$|^20:00:00:25:B5:[0-9a-fA-F]{2}$"` } varHyperflexWwxnPrefixRangeWithoutEmbeddedStruct := HyperflexWwxnPrefixRangeWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_i18n_message.go b/intersight_gosdk/model_i18n_message.go index b7d1063601..41aa71962b 100644 --- a/intersight_gosdk/model_i18n_message.go +++ b/intersight_gosdk/model_i18n_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_i18n_message_param.go b/intersight_gosdk/model_i18n_message_param.go index ab8432d1f7..1b8f4bcf75 100644 --- a/intersight_gosdk/model_i18n_message_param.go +++ b/intersight_gosdk/model_i18n_message_param.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_connector_pack.go b/intersight_gosdk/model_iaas_connector_pack.go index 61f62090a0..c59a7d8b7f 100644 --- a/intersight_gosdk/model_iaas_connector_pack.go +++ b/intersight_gosdk/model_iaas_connector_pack.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_connector_pack_list.go b/intersight_gosdk/model_iaas_connector_pack_list.go index df0e74374d..94ffa9efff 100644 --- a/intersight_gosdk/model_iaas_connector_pack_list.go +++ b/intersight_gosdk/model_iaas_connector_pack_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_connector_pack_relationship.go b/intersight_gosdk/model_iaas_connector_pack_relationship.go index e65489127b..fb55372edf 100644 --- a/intersight_gosdk/model_iaas_connector_pack_relationship.go +++ b/intersight_gosdk/model_iaas_connector_pack_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_connector_pack_response.go b/intersight_gosdk/model_iaas_connector_pack_response.go index cbacfca34b..9369ddc3bb 100644 --- a/intersight_gosdk/model_iaas_connector_pack_response.go +++ b/intersight_gosdk/model_iaas_connector_pack_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_custom_task_info.go b/intersight_gosdk/model_iaas_custom_task_info.go index 11359c3bef..e1a6d2706c 100644 --- a/intersight_gosdk/model_iaas_custom_task_info.go +++ b/intersight_gosdk/model_iaas_custom_task_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_custom_task_info_list.go b/intersight_gosdk/model_iaas_custom_task_info_list.go index 5d423edcd2..b14a6c894e 100644 --- a/intersight_gosdk/model_iaas_custom_task_info_list.go +++ b/intersight_gosdk/model_iaas_custom_task_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_custom_task_info_relationship.go b/intersight_gosdk/model_iaas_custom_task_info_relationship.go index 93c6797e8f..6f412d76e8 100644 --- a/intersight_gosdk/model_iaas_custom_task_info_relationship.go +++ b/intersight_gosdk/model_iaas_custom_task_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_custom_task_info_response.go b/intersight_gosdk/model_iaas_custom_task_info_response.go index 1e24b61f2f..4c3a77e7d2 100644 --- a/intersight_gosdk/model_iaas_custom_task_info_response.go +++ b/intersight_gosdk/model_iaas_custom_task_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_device_status.go b/intersight_gosdk/model_iaas_device_status.go index 72a58ccabb..b404b28401 100644 --- a/intersight_gosdk/model_iaas_device_status.go +++ b/intersight_gosdk/model_iaas_device_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_device_status_list.go b/intersight_gosdk/model_iaas_device_status_list.go index 6ad3bce1df..fb856d0fc4 100644 --- a/intersight_gosdk/model_iaas_device_status_list.go +++ b/intersight_gosdk/model_iaas_device_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_device_status_relationship.go b/intersight_gosdk/model_iaas_device_status_relationship.go index b72372214d..b726d065c0 100644 --- a/intersight_gosdk/model_iaas_device_status_relationship.go +++ b/intersight_gosdk/model_iaas_device_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_device_status_response.go b/intersight_gosdk/model_iaas_device_status_response.go index 40cd63a772..85aca30015 100644 --- a/intersight_gosdk/model_iaas_device_status_response.go +++ b/intersight_gosdk/model_iaas_device_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_diagnostic_messages.go b/intersight_gosdk/model_iaas_diagnostic_messages.go index a46821e9de..d19dd0f237 100644 --- a/intersight_gosdk/model_iaas_diagnostic_messages.go +++ b/intersight_gosdk/model_iaas_diagnostic_messages.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_diagnostic_messages_list.go b/intersight_gosdk/model_iaas_diagnostic_messages_list.go index c0c90e3696..6acbb8dd0b 100644 --- a/intersight_gosdk/model_iaas_diagnostic_messages_list.go +++ b/intersight_gosdk/model_iaas_diagnostic_messages_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_diagnostic_messages_response.go b/intersight_gosdk/model_iaas_diagnostic_messages_response.go index f2e83556bc..89c3d34c19 100644 --- a/intersight_gosdk/model_iaas_diagnostic_messages_response.go +++ b/intersight_gosdk/model_iaas_diagnostic_messages_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_license_info.go b/intersight_gosdk/model_iaas_license_info.go index 328792200f..cea2b6431b 100644 --- a/intersight_gosdk/model_iaas_license_info.go +++ b/intersight_gosdk/model_iaas_license_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_license_info_list.go b/intersight_gosdk/model_iaas_license_info_list.go index 09c5ba4695..708a5f7d5c 100644 --- a/intersight_gosdk/model_iaas_license_info_list.go +++ b/intersight_gosdk/model_iaas_license_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_license_info_relationship.go b/intersight_gosdk/model_iaas_license_info_relationship.go index 61ecd25faa..a63ae62939 100644 --- a/intersight_gosdk/model_iaas_license_info_relationship.go +++ b/intersight_gosdk/model_iaas_license_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_license_info_response.go b/intersight_gosdk/model_iaas_license_info_response.go index 06e339f259..138caec4db 100644 --- a/intersight_gosdk/model_iaas_license_info_response.go +++ b/intersight_gosdk/model_iaas_license_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_license_keys_info.go b/intersight_gosdk/model_iaas_license_keys_info.go index f6a7fb65a4..67aecd43cc 100644 --- a/intersight_gosdk/model_iaas_license_keys_info.go +++ b/intersight_gosdk/model_iaas_license_keys_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_license_utilization_info.go b/intersight_gosdk/model_iaas_license_utilization_info.go index ed927ea56f..22b06fa3a2 100644 --- a/intersight_gosdk/model_iaas_license_utilization_info.go +++ b/intersight_gosdk/model_iaas_license_utilization_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_most_run_tasks.go b/intersight_gosdk/model_iaas_most_run_tasks.go index 7b439abef7..bd0b88271d 100644 --- a/intersight_gosdk/model_iaas_most_run_tasks.go +++ b/intersight_gosdk/model_iaas_most_run_tasks.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_most_run_tasks_list.go b/intersight_gosdk/model_iaas_most_run_tasks_list.go index 13cf05f9f1..067ea3cbe7 100644 --- a/intersight_gosdk/model_iaas_most_run_tasks_list.go +++ b/intersight_gosdk/model_iaas_most_run_tasks_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_most_run_tasks_relationship.go b/intersight_gosdk/model_iaas_most_run_tasks_relationship.go index 5bb26de5f3..919cd7c343 100644 --- a/intersight_gosdk/model_iaas_most_run_tasks_relationship.go +++ b/intersight_gosdk/model_iaas_most_run_tasks_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_most_run_tasks_response.go b/intersight_gosdk/model_iaas_most_run_tasks_response.go index 00365b0962..7b7f90237c 100644 --- a/intersight_gosdk/model_iaas_most_run_tasks_response.go +++ b/intersight_gosdk/model_iaas_most_run_tasks_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_service_request.go b/intersight_gosdk/model_iaas_service_request.go index 0ef193cc2e..568c03f2b8 100644 --- a/intersight_gosdk/model_iaas_service_request.go +++ b/intersight_gosdk/model_iaas_service_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_service_request_list.go b/intersight_gosdk/model_iaas_service_request_list.go index 22e9f198d1..4a863d0f0e 100644 --- a/intersight_gosdk/model_iaas_service_request_list.go +++ b/intersight_gosdk/model_iaas_service_request_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_service_request_response.go b/intersight_gosdk/model_iaas_service_request_response.go index c8cc34d855..4808c80f50 100644 --- a/intersight_gosdk/model_iaas_service_request_response.go +++ b/intersight_gosdk/model_iaas_service_request_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_system_task_info.go b/intersight_gosdk/model_iaas_system_task_info.go index 7a4ff7d3d0..bf6dc71566 100644 --- a/intersight_gosdk/model_iaas_system_task_info.go +++ b/intersight_gosdk/model_iaas_system_task_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_system_task_info_list.go b/intersight_gosdk/model_iaas_system_task_info_list.go index 5a00d336a5..24cfeb5964 100644 --- a/intersight_gosdk/model_iaas_system_task_info_list.go +++ b/intersight_gosdk/model_iaas_system_task_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_system_task_info_relationship.go b/intersight_gosdk/model_iaas_system_task_info_relationship.go index aaad8f0e9c..7168c8c086 100644 --- a/intersight_gosdk/model_iaas_system_task_info_relationship.go +++ b/intersight_gosdk/model_iaas_system_task_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_system_task_info_response.go b/intersight_gosdk/model_iaas_system_task_info_response.go index 15923bbffd..48e25a9f1c 100644 --- a/intersight_gosdk/model_iaas_system_task_info_response.go +++ b/intersight_gosdk/model_iaas_system_task_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_ucsd_info.go b/intersight_gosdk/model_iaas_ucsd_info.go index 53bff758dd..b419b736d2 100644 --- a/intersight_gosdk/model_iaas_ucsd_info.go +++ b/intersight_gosdk/model_iaas_ucsd_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_ucsd_info_list.go b/intersight_gosdk/model_iaas_ucsd_info_list.go index 9187da2ec8..165cde3bfd 100644 --- a/intersight_gosdk/model_iaas_ucsd_info_list.go +++ b/intersight_gosdk/model_iaas_ucsd_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_ucsd_info_relationship.go b/intersight_gosdk/model_iaas_ucsd_info_relationship.go index bbdeafa26b..7d8278e2db 100644 --- a/intersight_gosdk/model_iaas_ucsd_info_relationship.go +++ b/intersight_gosdk/model_iaas_ucsd_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_ucsd_info_response.go b/intersight_gosdk/model_iaas_ucsd_info_response.go index 7bee2253fd..aa3e220b3d 100644 --- a/intersight_gosdk/model_iaas_ucsd_info_response.go +++ b/intersight_gosdk/model_iaas_ucsd_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_ucsd_managed_infra.go b/intersight_gosdk/model_iaas_ucsd_managed_infra.go index 6e936f2a49..096dcb36f3 100644 --- a/intersight_gosdk/model_iaas_ucsd_managed_infra.go +++ b/intersight_gosdk/model_iaas_ucsd_managed_infra.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_ucsd_managed_infra_list.go b/intersight_gosdk/model_iaas_ucsd_managed_infra_list.go index 57243d590b..2a3204df39 100644 --- a/intersight_gosdk/model_iaas_ucsd_managed_infra_list.go +++ b/intersight_gosdk/model_iaas_ucsd_managed_infra_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_ucsd_managed_infra_relationship.go b/intersight_gosdk/model_iaas_ucsd_managed_infra_relationship.go index d42155aab2..678afc0059 100644 --- a/intersight_gosdk/model_iaas_ucsd_managed_infra_relationship.go +++ b/intersight_gosdk/model_iaas_ucsd_managed_infra_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_ucsd_managed_infra_response.go b/intersight_gosdk/model_iaas_ucsd_managed_infra_response.go index 594f7ba52b..7e8e28f198 100644 --- a/intersight_gosdk/model_iaas_ucsd_managed_infra_response.go +++ b/intersight_gosdk/model_iaas_ucsd_managed_infra_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_ucsd_messages.go b/intersight_gosdk/model_iaas_ucsd_messages.go index 470621f4d4..d91024d362 100644 --- a/intersight_gosdk/model_iaas_ucsd_messages.go +++ b/intersight_gosdk/model_iaas_ucsd_messages.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_ucsd_messages_list.go b/intersight_gosdk/model_iaas_ucsd_messages_list.go index 4e471e9a19..677aeec0fa 100644 --- a/intersight_gosdk/model_iaas_ucsd_messages_list.go +++ b/intersight_gosdk/model_iaas_ucsd_messages_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_ucsd_messages_response.go b/intersight_gosdk/model_iaas_ucsd_messages_response.go index 6fb389ceee..4d83a5a346 100644 --- a/intersight_gosdk/model_iaas_ucsd_messages_response.go +++ b/intersight_gosdk/model_iaas_ucsd_messages_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_workflow_steps.go b/intersight_gosdk/model_iaas_workflow_steps.go index daa52dec60..2eff4a4d2d 100644 --- a/intersight_gosdk/model_iaas_workflow_steps.go +++ b/intersight_gosdk/model_iaas_workflow_steps.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_account.go b/intersight_gosdk/model_iam_account.go index cd1257ba9e..c66a629165 100644 --- a/intersight_gosdk/model_iam_account.go +++ b/intersight_gosdk/model_iam_account.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type IamAccount struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of the Intersight account. By default, name is same as the MoID of the account. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9\\\\-]{0,61}[a-zA-Z0-9]$"` Regions []string `json:"Regions,omitempty"` // Indicates if the account is prone to lockout as it has only a single Account Administrator. An account is prone to lockout if it has only one configured Account Administrator and no user groups configured that can grant Account Administrator role to dynamic users. SingleAdminLockout *bool `json:"SingleAdminLockout,omitempty"` @@ -827,7 +827,7 @@ func (o *IamAccount) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of the Intersight account. By default, name is same as the MoID of the account. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9\\\\-]{0,61}[a-zA-Z0-9]$"` Regions []string `json:"Regions,omitempty"` // Indicates if the account is prone to lockout as it has only a single Account Administrator. An account is prone to lockout if it has only one configured Account Administrator and no user groups configured that can grant Account Administrator role to dynamic users. SingleAdminLockout *bool `json:"SingleAdminLockout,omitempty"` diff --git a/intersight_gosdk/model_iam_account_experience.go b/intersight_gosdk/model_iam_account_experience.go index 1f068d1d8b..8bfd05cc42 100644 --- a/intersight_gosdk/model_iam_account_experience.go +++ b/intersight_gosdk/model_iam_account_experience.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_account_experience_list.go b/intersight_gosdk/model_iam_account_experience_list.go index b3e99a6285..0a99002a8b 100644 --- a/intersight_gosdk/model_iam_account_experience_list.go +++ b/intersight_gosdk/model_iam_account_experience_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_account_experience_response.go b/intersight_gosdk/model_iam_account_experience_response.go index 34a42afe27..2668f7e324 100644 --- a/intersight_gosdk/model_iam_account_experience_response.go +++ b/intersight_gosdk/model_iam_account_experience_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_account_list.go b/intersight_gosdk/model_iam_account_list.go index 91c0c7e0f4..8a18263918 100644 --- a/intersight_gosdk/model_iam_account_list.go +++ b/intersight_gosdk/model_iam_account_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_account_permissions.go b/intersight_gosdk/model_iam_account_permissions.go index 35883cc248..d1c87b904b 100644 --- a/intersight_gosdk/model_iam_account_permissions.go +++ b/intersight_gosdk/model_iam_account_permissions.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_account_relationship.go b/intersight_gosdk/model_iam_account_relationship.go index d1fab71ba8..e5a86edd49 100644 --- a/intersight_gosdk/model_iam_account_relationship.go +++ b/intersight_gosdk/model_iam_account_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_account_response.go b/intersight_gosdk/model_iam_account_response.go index 88a8650350..c1d49548aa 100644 --- a/intersight_gosdk/model_iam_account_response.go +++ b/intersight_gosdk/model_iam_account_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_account_tags.go b/intersight_gosdk/model_iam_account_tags.go index af3bbb68ad..570f898ea7 100644 --- a/intersight_gosdk/model_iam_account_tags.go +++ b/intersight_gosdk/model_iam_account_tags.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_api_key.go b/intersight_gosdk/model_iam_api_key.go index f7a8991150..13195c42fc 100644 --- a/intersight_gosdk/model_iam_api_key.go +++ b/intersight_gosdk/model_iam_api_key.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_api_key_list.go b/intersight_gosdk/model_iam_api_key_list.go index 2362596137..72ce7804cc 100644 --- a/intersight_gosdk/model_iam_api_key_list.go +++ b/intersight_gosdk/model_iam_api_key_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_api_key_relationship.go b/intersight_gosdk/model_iam_api_key_relationship.go index 9ab432ec24..68fe9fa0d3 100644 --- a/intersight_gosdk/model_iam_api_key_relationship.go +++ b/intersight_gosdk/model_iam_api_key_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_api_key_response.go b/intersight_gosdk/model_iam_api_key_response.go index dc61c28c2a..4ac76d4d0f 100644 --- a/intersight_gosdk/model_iam_api_key_response.go +++ b/intersight_gosdk/model_iam_api_key_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_app_registration.go b/intersight_gosdk/model_iam_app_registration.go index 6f67a15112..f4547b50ef 100644 --- a/intersight_gosdk/model_iam_app_registration.go +++ b/intersight_gosdk/model_iam_app_registration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_app_registration_list.go b/intersight_gosdk/model_iam_app_registration_list.go index 85e4798db0..9a6a202c69 100644 --- a/intersight_gosdk/model_iam_app_registration_list.go +++ b/intersight_gosdk/model_iam_app_registration_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_app_registration_relationship.go b/intersight_gosdk/model_iam_app_registration_relationship.go index 1f28450d6c..1e9a15680f 100644 --- a/intersight_gosdk/model_iam_app_registration_relationship.go +++ b/intersight_gosdk/model_iam_app_registration_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_app_registration_response.go b/intersight_gosdk/model_iam_app_registration_response.go index 20139a57d6..6ae5ed2ec7 100644 --- a/intersight_gosdk/model_iam_app_registration_response.go +++ b/intersight_gosdk/model_iam_app_registration_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_banner_message.go b/intersight_gosdk/model_iam_banner_message.go index e477665ad3..570e0ee745 100644 --- a/intersight_gosdk/model_iam_banner_message.go +++ b/intersight_gosdk/model_iam_banner_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_banner_message_list.go b/intersight_gosdk/model_iam_banner_message_list.go index 7fe55a0d84..01c0be12a4 100644 --- a/intersight_gosdk/model_iam_banner_message_list.go +++ b/intersight_gosdk/model_iam_banner_message_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_banner_message_response.go b/intersight_gosdk/model_iam_banner_message_response.go index b00a6620b1..9400ac0cc6 100644 --- a/intersight_gosdk/model_iam_banner_message_response.go +++ b/intersight_gosdk/model_iam_banner_message_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_certificate.go b/intersight_gosdk/model_iam_certificate.go index 874141433d..25c216a915 100644 --- a/intersight_gosdk/model_iam_certificate.go +++ b/intersight_gosdk/model_iam_certificate.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_certificate_list.go b/intersight_gosdk/model_iam_certificate_list.go index ff836318f5..87eec60b90 100644 --- a/intersight_gosdk/model_iam_certificate_list.go +++ b/intersight_gosdk/model_iam_certificate_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_certificate_relationship.go b/intersight_gosdk/model_iam_certificate_relationship.go index d9d62a74b6..2cf1d99e54 100644 --- a/intersight_gosdk/model_iam_certificate_relationship.go +++ b/intersight_gosdk/model_iam_certificate_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_certificate_request.go b/intersight_gosdk/model_iam_certificate_request.go index ce48f3ee41..7a2ab45d2b 100644 --- a/intersight_gosdk/model_iam_certificate_request.go +++ b/intersight_gosdk/model_iam_certificate_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_certificate_request_list.go b/intersight_gosdk/model_iam_certificate_request_list.go index 2b22230d6b..3604d9e434 100644 --- a/intersight_gosdk/model_iam_certificate_request_list.go +++ b/intersight_gosdk/model_iam_certificate_request_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_certificate_request_relationship.go b/intersight_gosdk/model_iam_certificate_request_relationship.go index aedfd8c25a..6ac1b0c900 100644 --- a/intersight_gosdk/model_iam_certificate_request_relationship.go +++ b/intersight_gosdk/model_iam_certificate_request_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_certificate_request_response.go b/intersight_gosdk/model_iam_certificate_request_response.go index 37c0da81ef..d9964f5837 100644 --- a/intersight_gosdk/model_iam_certificate_request_response.go +++ b/intersight_gosdk/model_iam_certificate_request_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_certificate_response.go b/intersight_gosdk/model_iam_certificate_response.go index 6a2b28d833..7af80b0ab4 100644 --- a/intersight_gosdk/model_iam_certificate_response.go +++ b/intersight_gosdk/model_iam_certificate_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_client_meta.go b/intersight_gosdk/model_iam_client_meta.go index fd0b6aabbb..fe3a6e8450 100644 --- a/intersight_gosdk/model_iam_client_meta.go +++ b/intersight_gosdk/model_iam_client_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_domain_group.go b/intersight_gosdk/model_iam_domain_group.go index 0cdab95894..8da70cae47 100644 --- a/intersight_gosdk/model_iam_domain_group.go +++ b/intersight_gosdk/model_iam_domain_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_domain_group_list.go b/intersight_gosdk/model_iam_domain_group_list.go index d22be3f07c..9f890ca08b 100644 --- a/intersight_gosdk/model_iam_domain_group_list.go +++ b/intersight_gosdk/model_iam_domain_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_domain_group_relationship.go b/intersight_gosdk/model_iam_domain_group_relationship.go index 3a58a519d2..726834a3c3 100644 --- a/intersight_gosdk/model_iam_domain_group_relationship.go +++ b/intersight_gosdk/model_iam_domain_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_domain_group_response.go b/intersight_gosdk/model_iam_domain_group_response.go index c04416ba8b..dcf8b90a26 100644 --- a/intersight_gosdk/model_iam_domain_group_response.go +++ b/intersight_gosdk/model_iam_domain_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_domain_name_info.go b/intersight_gosdk/model_iam_domain_name_info.go index e3ee52bd8b..2deec93a8e 100644 --- a/intersight_gosdk/model_iam_domain_name_info.go +++ b/intersight_gosdk/model_iam_domain_name_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -32,7 +32,7 @@ type IamDomainNameInfo struct { // Regenerate TXT record and validate TXT record. * `generate` - Generate TXT record for domain name ownership validation. * `verify` - Verify TXT record for domain name ownership validation. Action *string `json:"Action,omitempty"` // Email domain name. When a user enters an email during login in the Intersight home page, the IdP is picked by matching this domain name with the email domain name for authentication. - DomainName *string `json:"DomainName,omitempty"` + DomainName *string `json:"DomainName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$"` FailureDetails NullableIamFailureDetails `json:"FailureDetails,omitempty"` // Expiration time of TXT Record. RecordExpiryTime *time.Time `json:"RecordExpiryTime,omitempty"` @@ -482,7 +482,7 @@ func (o *IamDomainNameInfo) UnmarshalJSON(data []byte) (err error) { // Regenerate TXT record and validate TXT record. * `generate` - Generate TXT record for domain name ownership validation. * `verify` - Verify TXT record for domain name ownership validation. Action *string `json:"Action,omitempty"` // Email domain name. When a user enters an email during login in the Intersight home page, the IdP is picked by matching this domain name with the email domain name for authentication. - DomainName *string `json:"DomainName,omitempty"` + DomainName *string `json:"DomainName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$"` FailureDetails NullableIamFailureDetails `json:"FailureDetails,omitempty"` // Expiration time of TXT Record. RecordExpiryTime *time.Time `json:"RecordExpiryTime,omitempty"` diff --git a/intersight_gosdk/model_iam_domain_name_info_list.go b/intersight_gosdk/model_iam_domain_name_info_list.go index 43d18837a8..20e69122f4 100644 --- a/intersight_gosdk/model_iam_domain_name_info_list.go +++ b/intersight_gosdk/model_iam_domain_name_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_domain_name_info_response.go b/intersight_gosdk/model_iam_domain_name_info_response.go index 463153617b..45a677c3bb 100644 --- a/intersight_gosdk/model_iam_domain_name_info_response.go +++ b/intersight_gosdk/model_iam_domain_name_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_password_properties.go b/intersight_gosdk/model_iam_end_point_password_properties.go index 5574e3e896..fae32a60a7 100644 --- a/intersight_gosdk/model_iam_end_point_password_properties.go +++ b/intersight_gosdk/model_iam_end_point_password_properties.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_privilege.go b/intersight_gosdk/model_iam_end_point_privilege.go index cda649e84d..7b3df3c528 100644 --- a/intersight_gosdk/model_iam_end_point_privilege.go +++ b/intersight_gosdk/model_iam_end_point_privilege.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_privilege_list.go b/intersight_gosdk/model_iam_end_point_privilege_list.go index 87d41fa002..6c1af9d0fc 100644 --- a/intersight_gosdk/model_iam_end_point_privilege_list.go +++ b/intersight_gosdk/model_iam_end_point_privilege_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_privilege_relationship.go b/intersight_gosdk/model_iam_end_point_privilege_relationship.go index a5bf48954f..669adb36be 100644 --- a/intersight_gosdk/model_iam_end_point_privilege_relationship.go +++ b/intersight_gosdk/model_iam_end_point_privilege_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_privilege_response.go b/intersight_gosdk/model_iam_end_point_privilege_response.go index 1db0600e94..32c9480621 100644 --- a/intersight_gosdk/model_iam_end_point_privilege_response.go +++ b/intersight_gosdk/model_iam_end_point_privilege_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_role.go b/intersight_gosdk/model_iam_end_point_role.go index 1489b5831f..59342a9ee1 100644 --- a/intersight_gosdk/model_iam_end_point_role.go +++ b/intersight_gosdk/model_iam_end_point_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_role_list.go b/intersight_gosdk/model_iam_end_point_role_list.go index 0bd48d6a9c..5d6826d919 100644 --- a/intersight_gosdk/model_iam_end_point_role_list.go +++ b/intersight_gosdk/model_iam_end_point_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_role_relationship.go b/intersight_gosdk/model_iam_end_point_role_relationship.go index 6318b0f614..1a31e7ae98 100644 --- a/intersight_gosdk/model_iam_end_point_role_relationship.go +++ b/intersight_gosdk/model_iam_end_point_role_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_role_response.go b/intersight_gosdk/model_iam_end_point_role_response.go index 7dbc40f095..30f44f5539 100644 --- a/intersight_gosdk/model_iam_end_point_role_response.go +++ b/intersight_gosdk/model_iam_end_point_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_user.go b/intersight_gosdk/model_iam_end_point_user.go index 35afc1f525..ac12e43616 100644 --- a/intersight_gosdk/model_iam_end_point_user.go +++ b/intersight_gosdk/model_iam_end_point_user.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type IamEndPointUser struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of the user to be created on the endpoint. It can be any string that adheres to the following constraints. It can have alphanumeric characters, dots, underscores and hyphen. It cannot be more than 16 characters. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\._\\\\-]+$"` // An array of relationships to iamEndPointUserRole resources. EndPointUserRole []IamEndPointUserRoleRelationship `json:"EndPointUserRole,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` @@ -318,7 +318,7 @@ func (o *IamEndPointUser) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of the user to be created on the endpoint. It can be any string that adheres to the following constraints. It can have alphanumeric characters, dots, underscores and hyphen. It cannot be more than 16 characters. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\._\\\\-]+$"` // An array of relationships to iamEndPointUserRole resources. EndPointUserRole []IamEndPointUserRoleRelationship `json:"EndPointUserRole,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` diff --git a/intersight_gosdk/model_iam_end_point_user_inventory.go b/intersight_gosdk/model_iam_end_point_user_inventory.go index 66cb9a951b..c94b856b74 100644 --- a/intersight_gosdk/model_iam_end_point_user_inventory.go +++ b/intersight_gosdk/model_iam_end_point_user_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type IamEndPointUserInventory struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of the user to be created on the endpoint. It can be any string that adheres to the following constraints. It can have alphanumeric characters, dots, underscores and hyphen. It cannot be more than 16 characters. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\._\\\\-]+$"` // UserId for the end point user. UserId *string `json:"UserId,omitempty"` // An array of relationships to iamEndPointUserRoleInventory resources. @@ -355,7 +355,7 @@ func (o *IamEndPointUserInventory) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of the user to be created on the endpoint. It can be any string that adheres to the following constraints. It can have alphanumeric characters, dots, underscores and hyphen. It cannot be more than 16 characters. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\._\\\\-]+$"` // UserId for the end point user. UserId *string `json:"UserId,omitempty"` // An array of relationships to iamEndPointUserRoleInventory resources. diff --git a/intersight_gosdk/model_iam_end_point_user_inventory_list.go b/intersight_gosdk/model_iam_end_point_user_inventory_list.go index 186477d142..c8ba5efe3d 100644 --- a/intersight_gosdk/model_iam_end_point_user_inventory_list.go +++ b/intersight_gosdk/model_iam_end_point_user_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_user_inventory_relationship.go b/intersight_gosdk/model_iam_end_point_user_inventory_relationship.go index 975570b70c..bad2bff219 100644 --- a/intersight_gosdk/model_iam_end_point_user_inventory_relationship.go +++ b/intersight_gosdk/model_iam_end_point_user_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_user_inventory_response.go b/intersight_gosdk/model_iam_end_point_user_inventory_response.go index 3d3e374bec..4b2f166614 100644 --- a/intersight_gosdk/model_iam_end_point_user_inventory_response.go +++ b/intersight_gosdk/model_iam_end_point_user_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_user_list.go b/intersight_gosdk/model_iam_end_point_user_list.go index 6f5904be13..2aeb144c09 100644 --- a/intersight_gosdk/model_iam_end_point_user_list.go +++ b/intersight_gosdk/model_iam_end_point_user_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_user_policy.go b/intersight_gosdk/model_iam_end_point_user_policy.go index 5f8f739aba..8a4e615584 100644 --- a/intersight_gosdk/model_iam_end_point_user_policy.go +++ b/intersight_gosdk/model_iam_end_point_user_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_user_policy_inventory.go b/intersight_gosdk/model_iam_end_point_user_policy_inventory.go index 12a57d8be5..37c90cde32 100644 --- a/intersight_gosdk/model_iam_end_point_user_policy_inventory.go +++ b/intersight_gosdk/model_iam_end_point_user_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_user_policy_inventory_list.go b/intersight_gosdk/model_iam_end_point_user_policy_inventory_list.go index 44c9f9075b..61d880a657 100644 --- a/intersight_gosdk/model_iam_end_point_user_policy_inventory_list.go +++ b/intersight_gosdk/model_iam_end_point_user_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_user_policy_inventory_relationship.go b/intersight_gosdk/model_iam_end_point_user_policy_inventory_relationship.go index 062c59b48c..940d19450f 100644 --- a/intersight_gosdk/model_iam_end_point_user_policy_inventory_relationship.go +++ b/intersight_gosdk/model_iam_end_point_user_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_user_policy_inventory_response.go b/intersight_gosdk/model_iam_end_point_user_policy_inventory_response.go index 59c07deb16..581a54d3db 100644 --- a/intersight_gosdk/model_iam_end_point_user_policy_inventory_response.go +++ b/intersight_gosdk/model_iam_end_point_user_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_user_policy_list.go b/intersight_gosdk/model_iam_end_point_user_policy_list.go index 3143c287cb..2e811c692a 100644 --- a/intersight_gosdk/model_iam_end_point_user_policy_list.go +++ b/intersight_gosdk/model_iam_end_point_user_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_user_policy_relationship.go b/intersight_gosdk/model_iam_end_point_user_policy_relationship.go index 2741e1a027..c8ce904660 100644 --- a/intersight_gosdk/model_iam_end_point_user_policy_relationship.go +++ b/intersight_gosdk/model_iam_end_point_user_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_user_policy_response.go b/intersight_gosdk/model_iam_end_point_user_policy_response.go index 4b390dca2d..220865c70a 100644 --- a/intersight_gosdk/model_iam_end_point_user_policy_response.go +++ b/intersight_gosdk/model_iam_end_point_user_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_user_relationship.go b/intersight_gosdk/model_iam_end_point_user_relationship.go index 147535938b..f4df3a2885 100644 --- a/intersight_gosdk/model_iam_end_point_user_relationship.go +++ b/intersight_gosdk/model_iam_end_point_user_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_user_response.go b/intersight_gosdk/model_iam_end_point_user_response.go index 01b0e18924..0acd1528ee 100644 --- a/intersight_gosdk/model_iam_end_point_user_response.go +++ b/intersight_gosdk/model_iam_end_point_user_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_user_role.go b/intersight_gosdk/model_iam_end_point_user_role.go index cba4d89723..b1e2b74ca9 100644 --- a/intersight_gosdk/model_iam_end_point_user_role.go +++ b/intersight_gosdk/model_iam_end_point_user_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type IamEndPointUserRole struct { // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password must have a minimum of 8 and a maximum of 127 characters. For servers with IPMI user role enabled, the maximum length is limited to 20 characters. When strong password is enabled, must satisfy below requirements: A. The password must not contain the User's Name. B. The password must contain characters from three of the following four categories. 1) English uppercase characters (A through Z). 2) English lowercase characters (a through z). 3) Base 10 digits (0 through 9). 4) Non-alphabetic characters (! , @, #, $, %, ^, &, *, -, _, +, =). - Password *string `json:"Password,omitempty"` + Password *string `json:"Password,omitempty" validate:"regexp=^[a-zA-Z0-9!@#$%^&\\\\*+-_=]+$"` // An array of relationships to iamEndPointRole resources. EndPointRole []IamEndPointRoleRelationship `json:"EndPointRole,omitempty"` EndPointUser NullableIamEndPointUserRelationship `json:"EndPointUser,omitempty"` @@ -482,7 +482,7 @@ func (o *IamEndPointUserRole) UnmarshalJSON(data []byte) (err error) { // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password must have a minimum of 8 and a maximum of 127 characters. For servers with IPMI user role enabled, the maximum length is limited to 20 characters. When strong password is enabled, must satisfy below requirements: A. The password must not contain the User's Name. B. The password must contain characters from three of the following four categories. 1) English uppercase characters (A through Z). 2) English lowercase characters (a through z). 3) Base 10 digits (0 through 9). 4) Non-alphabetic characters (! , @, #, $, %, ^, &, *, -, _, +, =). - Password *string `json:"Password,omitempty"` + Password *string `json:"Password,omitempty" validate:"regexp=^[a-zA-Z0-9!@#$%^&\\\\*+-_=]+$"` // An array of relationships to iamEndPointRole resources. EndPointRole []IamEndPointRoleRelationship `json:"EndPointRole,omitempty"` EndPointUser NullableIamEndPointUserRelationship `json:"EndPointUser,omitempty"` diff --git a/intersight_gosdk/model_iam_end_point_user_role_inventory.go b/intersight_gosdk/model_iam_end_point_user_role_inventory.go index b6fcefd49f..5255f023e6 100644 --- a/intersight_gosdk/model_iam_end_point_user_role_inventory.go +++ b/intersight_gosdk/model_iam_end_point_user_role_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type IamEndPointUserRoleInventory struct { // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password must have a minimum of 8 and a maximum of 127 characters. For servers with IPMI user role enabled, the maximum length is limited to 20 characters. When strong password is enabled, must satisfy below requirements: A. The password must not contain the User's Name. B. The password must contain characters from three of the following four categories. 1) English uppercase characters (A through Z). 2) English lowercase characters (a through z). 3) Base 10 digits (0 through 9). 4) Non-alphabetic characters (! , @, #, $, %, ^, &, *, -, _, +, =). - Password *string `json:"Password,omitempty"` + Password *string `json:"Password,omitempty" validate:"regexp=^[a-zA-Z0-9!@#$%^&\\\\*+-_=]+$"` // An array of relationships to iamEndPointRole resources. EndPointRole []IamEndPointRoleRelationship `json:"EndPointRole,omitempty"` EndPointUser NullableIamEndPointUserInventoryRelationship `json:"EndPointUser,omitempty"` @@ -482,7 +482,7 @@ func (o *IamEndPointUserRoleInventory) UnmarshalJSON(data []byte) (err error) { // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password must have a minimum of 8 and a maximum of 127 characters. For servers with IPMI user role enabled, the maximum length is limited to 20 characters. When strong password is enabled, must satisfy below requirements: A. The password must not contain the User's Name. B. The password must contain characters from three of the following four categories. 1) English uppercase characters (A through Z). 2) English lowercase characters (a through z). 3) Base 10 digits (0 through 9). 4) Non-alphabetic characters (! , @, #, $, %, ^, &, *, -, _, +, =). - Password *string `json:"Password,omitempty"` + Password *string `json:"Password,omitempty" validate:"regexp=^[a-zA-Z0-9!@#$%^&\\\\*+-_=]+$"` // An array of relationships to iamEndPointRole resources. EndPointRole []IamEndPointRoleRelationship `json:"EndPointRole,omitempty"` EndPointUser NullableIamEndPointUserInventoryRelationship `json:"EndPointUser,omitempty"` diff --git a/intersight_gosdk/model_iam_end_point_user_role_inventory_list.go b/intersight_gosdk/model_iam_end_point_user_role_inventory_list.go index 936ebbcce8..5270a2f5b9 100644 --- a/intersight_gosdk/model_iam_end_point_user_role_inventory_list.go +++ b/intersight_gosdk/model_iam_end_point_user_role_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_user_role_inventory_relationship.go b/intersight_gosdk/model_iam_end_point_user_role_inventory_relationship.go index 84f5dc5344..3c3dda4256 100644 --- a/intersight_gosdk/model_iam_end_point_user_role_inventory_relationship.go +++ b/intersight_gosdk/model_iam_end_point_user_role_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_user_role_inventory_response.go b/intersight_gosdk/model_iam_end_point_user_role_inventory_response.go index 0ff7e49e83..9297547aa7 100644 --- a/intersight_gosdk/model_iam_end_point_user_role_inventory_response.go +++ b/intersight_gosdk/model_iam_end_point_user_role_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_user_role_list.go b/intersight_gosdk/model_iam_end_point_user_role_list.go index 286164c5ee..12991793a4 100644 --- a/intersight_gosdk/model_iam_end_point_user_role_list.go +++ b/intersight_gosdk/model_iam_end_point_user_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_user_role_relationship.go b/intersight_gosdk/model_iam_end_point_user_role_relationship.go index 65faf45004..14281fd873 100644 --- a/intersight_gosdk/model_iam_end_point_user_role_relationship.go +++ b/intersight_gosdk/model_iam_end_point_user_role_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_user_role_response.go b/intersight_gosdk/model_iam_end_point_user_role_response.go index e1b4cb1d0a..b0f8aef927 100644 --- a/intersight_gosdk/model_iam_end_point_user_role_response.go +++ b/intersight_gosdk/model_iam_end_point_user_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_failure_details.go b/intersight_gosdk/model_iam_failure_details.go index e3760b39b3..463b559aa8 100644 --- a/intersight_gosdk/model_iam_failure_details.go +++ b/intersight_gosdk/model_iam_failure_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_feature_definition.go b/intersight_gosdk/model_iam_feature_definition.go index 77ee339f71..b6d6372df5 100644 --- a/intersight_gosdk/model_iam_feature_definition.go +++ b/intersight_gosdk/model_iam_feature_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_group_permission_to_roles.go b/intersight_gosdk/model_iam_group_permission_to_roles.go index 515fa48eb9..64dad2f328 100644 --- a/intersight_gosdk/model_iam_group_permission_to_roles.go +++ b/intersight_gosdk/model_iam_group_permission_to_roles.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_idp.go b/intersight_gosdk/model_iam_idp.go index 2b8f520070..b54e445f19 100644 --- a/intersight_gosdk/model_iam_idp.go +++ b/intersight_gosdk/model_iam_idp.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,7 +30,7 @@ type IamIdp struct { ObjectType string `json:"ObjectType"` // Email domain name of the user for this IdP. When a user enters an email during login in the Intersight home page, the IdP is picked by matching this domain name with the email domain name for authentication. // Deprecated - DomainName *string `json:"DomainName,omitempty"` + DomainName *string `json:"DomainName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$"` DomainNames []string `json:"DomainNames,omitempty"` // Setting that indicates whether 'Single Logout (SLO)' has been enabled for this IdP. EnableSingleLogout *bool `json:"EnableSingleLogout,omitempty"` @@ -794,7 +794,7 @@ func (o *IamIdp) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` // Email domain name of the user for this IdP. When a user enters an email during login in the Intersight home page, the IdP is picked by matching this domain name with the email domain name for authentication. // Deprecated - DomainName *string `json:"DomainName,omitempty"` + DomainName *string `json:"DomainName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$"` DomainNames []string `json:"DomainNames,omitempty"` // Setting that indicates whether 'Single Logout (SLO)' has been enabled for this IdP. EnableSingleLogout *bool `json:"EnableSingleLogout,omitempty"` diff --git a/intersight_gosdk/model_iam_idp_list.go b/intersight_gosdk/model_iam_idp_list.go index f85cbdbd0e..f2fcb5d577 100644 --- a/intersight_gosdk/model_iam_idp_list.go +++ b/intersight_gosdk/model_iam_idp_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_idp_reference.go b/intersight_gosdk/model_iam_idp_reference.go index c4f36aa489..b560922797 100644 --- a/intersight_gosdk/model_iam_idp_reference.go +++ b/intersight_gosdk/model_iam_idp_reference.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_idp_reference_list.go b/intersight_gosdk/model_iam_idp_reference_list.go index d697b16954..375382113e 100644 --- a/intersight_gosdk/model_iam_idp_reference_list.go +++ b/intersight_gosdk/model_iam_idp_reference_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_idp_reference_relationship.go b/intersight_gosdk/model_iam_idp_reference_relationship.go index b7e1caa2d4..3db3ec0250 100644 --- a/intersight_gosdk/model_iam_idp_reference_relationship.go +++ b/intersight_gosdk/model_iam_idp_reference_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_idp_reference_response.go b/intersight_gosdk/model_iam_idp_reference_response.go index 6e3544c6d3..b259e0de26 100644 --- a/intersight_gosdk/model_iam_idp_reference_response.go +++ b/intersight_gosdk/model_iam_idp_reference_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_idp_relationship.go b/intersight_gosdk/model_iam_idp_relationship.go index bdad639100..33c59daac2 100644 --- a/intersight_gosdk/model_iam_idp_relationship.go +++ b/intersight_gosdk/model_iam_idp_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_idp_response.go b/intersight_gosdk/model_iam_idp_response.go index 1ddcbc3d11..3082959e0a 100644 --- a/intersight_gosdk/model_iam_idp_response.go +++ b/intersight_gosdk/model_iam_idp_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ip_access_management.go b/intersight_gosdk/model_iam_ip_access_management.go index 2235d9e36e..45309b78eb 100644 --- a/intersight_gosdk/model_iam_ip_access_management.go +++ b/intersight_gosdk/model_iam_ip_access_management.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ip_access_management_list.go b/intersight_gosdk/model_iam_ip_access_management_list.go index 6a8de2eada..0a5e98de72 100644 --- a/intersight_gosdk/model_iam_ip_access_management_list.go +++ b/intersight_gosdk/model_iam_ip_access_management_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ip_access_management_relationship.go b/intersight_gosdk/model_iam_ip_access_management_relationship.go index bbe8f40098..80eda239b0 100644 --- a/intersight_gosdk/model_iam_ip_access_management_relationship.go +++ b/intersight_gosdk/model_iam_ip_access_management_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ip_access_management_response.go b/intersight_gosdk/model_iam_ip_access_management_response.go index dd9b43e7bf..9acb8f3e14 100644 --- a/intersight_gosdk/model_iam_ip_access_management_response.go +++ b/intersight_gosdk/model_iam_ip_access_management_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ip_address.go b/intersight_gosdk/model_iam_ip_address.go index 8b0411fb5b..4670c5c52c 100644 --- a/intersight_gosdk/model_iam_ip_address.go +++ b/intersight_gosdk/model_iam_ip_address.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ip_address_list.go b/intersight_gosdk/model_iam_ip_address_list.go index 0a4a80b7ee..cdf42e74c2 100644 --- a/intersight_gosdk/model_iam_ip_address_list.go +++ b/intersight_gosdk/model_iam_ip_address_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ip_address_relationship.go b/intersight_gosdk/model_iam_ip_address_relationship.go index 13032d0fdb..7bee8f69fd 100644 --- a/intersight_gosdk/model_iam_ip_address_relationship.go +++ b/intersight_gosdk/model_iam_ip_address_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ip_address_response.go b/intersight_gosdk/model_iam_ip_address_response.go index 800f496ee5..736c0c9a36 100644 --- a/intersight_gosdk/model_iam_ip_address_response.go +++ b/intersight_gosdk/model_iam_ip_address_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ldap_base_properties.go b/intersight_gosdk/model_iam_ldap_base_properties.go index d3f2cb26cf..4ed18522e8 100644 --- a/intersight_gosdk/model_iam_ldap_base_properties.go +++ b/intersight_gosdk/model_iam_ldap_base_properties.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type IamLdapBaseProperties struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Role and locale information of the user. - Attribute *string `json:"Attribute,omitempty"` + Attribute *string `json:"Attribute,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9\\\\-\\\\.]*[a-zA-Z0-9\\\\-]$"` // Base Distinguished Name (DN). Starting point from where server will search for users and groups. BaseDn *string `json:"BaseDn,omitempty"` // Distinguished Name (DN) of the user, that is used to authenticate against LDAP servers. @@ -37,7 +37,7 @@ type IamLdapBaseProperties struct { // Authentication method to access LDAP servers. * `LoginCredentials` - Requires the user credentials. If the bind process fails, then user is denied access. * `Anonymous` - Requires no username and password. If this option is selected and the LDAP server is configured for Anonymous logins, then the user gains access. * `ConfiguredCredentials` - Requires a known set of credentials to be specified for the initial bind process. If the initial bind process succeeds, then the distinguished name (DN) of the user name is queried and re-used for the re-binding process. If the re-binding process fails, then the user is denied access. BindMethod *string `json:"BindMethod,omitempty"` // The IPv4 domain that all users must be in. - Domain *string `json:"Domain,omitempty"` + Domain *string `json:"Domain,omitempty" validate:"regexp=^$|^(([a-zA-Z0-9])|([a-zA-Z0-9][a-zA-Z0-9\\\\.\\\\-]*[a-zA-Z0-9]))$"` // If enabled, the endpoint encrypts all information it sends to the LDAP server. EnableEncryption *bool `json:"EnableEncryption,omitempty"` // If enabled, user authorization is also done at the group level for LDAP users not in the local user database. @@ -45,15 +45,15 @@ type IamLdapBaseProperties struct { // If enabled, an extended search walks the chain of ancestry all the way to the root and returns all the groups and subgroups, each of those groups belong to recursively. EnableNestedGroupSearch *bool `json:"EnableNestedGroupSearch,omitempty"` // Criteria to identify entries in search requests. - Filter *string `json:"Filter,omitempty"` + Filter *string `json:"Filter,omitempty" validate:"regexp=^$|^[a-zA-Z0-9(][a-zA-Z0-9_#@$%&\\\\-\\\\^|()*=:!,.]*[a-zA-Z0-9\\\\-)]$"` // Groups to which an LDAP entry belongs. - GroupAttribute *string `json:"GroupAttribute,omitempty"` + GroupAttribute *string `json:"GroupAttribute,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9_#@$%&\\\\-\\\\^]*[a-zA-Z0-9\\\\-]$"` // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // Search depth to look for a nested LDAP group in an LDAP group map. NestedGroupSearchDepth *int64 `json:"NestedGroupSearchDepth,omitempty"` // The password of the user for initial bind process. It can be any string that adheres to the following constraints. It can have character except spaces, tabs, line breaks. It cannot be more than 254 characters. - Password *string `json:"Password,omitempty"` + Password *string `json:"Password,omitempty" validate:"regexp=^[\\\\S+]{0,254}$"` // LDAP authentication timeout duration, in seconds. Timeout *int64 `json:"Timeout,omitempty"` AdditionalProperties map[string]interface{} @@ -730,7 +730,7 @@ func (o *IamLdapBaseProperties) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Role and locale information of the user. - Attribute *string `json:"Attribute,omitempty"` + Attribute *string `json:"Attribute,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9\\\\-\\\\.]*[a-zA-Z0-9\\\\-]$"` // Base Distinguished Name (DN). Starting point from where server will search for users and groups. BaseDn *string `json:"BaseDn,omitempty"` // Distinguished Name (DN) of the user, that is used to authenticate against LDAP servers. @@ -738,7 +738,7 @@ func (o *IamLdapBaseProperties) UnmarshalJSON(data []byte) (err error) { // Authentication method to access LDAP servers. * `LoginCredentials` - Requires the user credentials. If the bind process fails, then user is denied access. * `Anonymous` - Requires no username and password. If this option is selected and the LDAP server is configured for Anonymous logins, then the user gains access. * `ConfiguredCredentials` - Requires a known set of credentials to be specified for the initial bind process. If the initial bind process succeeds, then the distinguished name (DN) of the user name is queried and re-used for the re-binding process. If the re-binding process fails, then the user is denied access. BindMethod *string `json:"BindMethod,omitempty"` // The IPv4 domain that all users must be in. - Domain *string `json:"Domain,omitempty"` + Domain *string `json:"Domain,omitempty" validate:"regexp=^$|^(([a-zA-Z0-9])|([a-zA-Z0-9][a-zA-Z0-9\\\\.\\\\-]*[a-zA-Z0-9]))$"` // If enabled, the endpoint encrypts all information it sends to the LDAP server. EnableEncryption *bool `json:"EnableEncryption,omitempty"` // If enabled, user authorization is also done at the group level for LDAP users not in the local user database. @@ -746,15 +746,15 @@ func (o *IamLdapBaseProperties) UnmarshalJSON(data []byte) (err error) { // If enabled, an extended search walks the chain of ancestry all the way to the root and returns all the groups and subgroups, each of those groups belong to recursively. EnableNestedGroupSearch *bool `json:"EnableNestedGroupSearch,omitempty"` // Criteria to identify entries in search requests. - Filter *string `json:"Filter,omitempty"` + Filter *string `json:"Filter,omitempty" validate:"regexp=^$|^[a-zA-Z0-9(][a-zA-Z0-9_#@$%&\\\\-\\\\^|()*=:!,.]*[a-zA-Z0-9\\\\-)]$"` // Groups to which an LDAP entry belongs. - GroupAttribute *string `json:"GroupAttribute,omitempty"` + GroupAttribute *string `json:"GroupAttribute,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9_#@$%&\\\\-\\\\^]*[a-zA-Z0-9\\\\-]$"` // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // Search depth to look for a nested LDAP group in an LDAP group map. NestedGroupSearchDepth *int64 `json:"NestedGroupSearchDepth,omitempty"` // The password of the user for initial bind process. It can be any string that adheres to the following constraints. It can have character except spaces, tabs, line breaks. It cannot be more than 254 characters. - Password *string `json:"Password,omitempty"` + Password *string `json:"Password,omitempty" validate:"regexp=^[\\\\S+]{0,254}$"` // LDAP authentication timeout duration, in seconds. Timeout *int64 `json:"Timeout,omitempty"` } diff --git a/intersight_gosdk/model_iam_ldap_config_params.go b/intersight_gosdk/model_iam_ldap_config_params.go index 5776a3734e..e8969c44bc 100644 --- a/intersight_gosdk/model_iam_ldap_config_params.go +++ b/intersight_gosdk/model_iam_ldap_config_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ldap_config_params_list.go b/intersight_gosdk/model_iam_ldap_config_params_list.go index 85871c0208..3afb74dc21 100644 --- a/intersight_gosdk/model_iam_ldap_config_params_list.go +++ b/intersight_gosdk/model_iam_ldap_config_params_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ldap_config_params_response.go b/intersight_gosdk/model_iam_ldap_config_params_response.go index 5b552bea04..0f2e49c522 100644 --- a/intersight_gosdk/model_iam_ldap_config_params_response.go +++ b/intersight_gosdk/model_iam_ldap_config_params_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ldap_dns_parameters.go b/intersight_gosdk/model_iam_ldap_dns_parameters.go index 4996c028b6..9ddd204f30 100644 --- a/intersight_gosdk/model_iam_ldap_dns_parameters.go +++ b/intersight_gosdk/model_iam_ldap_dns_parameters.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type IamLdapDnsParameters struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Domain name that acts as a source for a DNS query. - SearchDomain *string `json:"SearchDomain,omitempty"` + SearchDomain *string `json:"SearchDomain,omitempty" validate:"regexp=^$|^(([a-zA-Z0-9])|([a-zA-Z0-9][a-zA-Z0-9\\\\.\\\\-]*[a-zA-Z0-9]))$"` // Forest name that acts as a source for a DNS query. - SearchForest *string `json:"SearchForest,omitempty"` + SearchForest *string `json:"SearchForest,omitempty" validate:"regexp=^$|^(([a-zA-Z0-9])|([a-zA-Z0-9][a-zA-Z0-9\\\\.\\\\-]*[a-zA-Z0-9]))$"` // Source of the domain name used for the DNS SRV request. * `Extracted` - The domain name extracted-domain from the login ID. * `Configured` - The configured-search domain. * `ConfiguredExtracted` - The domain name extracted from the login ID than the configured-search domain. Source *string `json:"Source,omitempty"` AdditionalProperties map[string]interface{} @@ -311,9 +311,9 @@ func (o *IamLdapDnsParameters) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Domain name that acts as a source for a DNS query. - SearchDomain *string `json:"SearchDomain,omitempty"` + SearchDomain *string `json:"SearchDomain,omitempty" validate:"regexp=^$|^(([a-zA-Z0-9])|([a-zA-Z0-9][a-zA-Z0-9\\\\.\\\\-]*[a-zA-Z0-9]))$"` // Forest name that acts as a source for a DNS query. - SearchForest *string `json:"SearchForest,omitempty"` + SearchForest *string `json:"SearchForest,omitempty" validate:"regexp=^$|^(([a-zA-Z0-9])|([a-zA-Z0-9][a-zA-Z0-9\\\\.\\\\-]*[a-zA-Z0-9]))$"` // Source of the domain name used for the DNS SRV request. * `Extracted` - The domain name extracted-domain from the login ID. * `Configured` - The configured-search domain. * `ConfiguredExtracted` - The domain name extracted from the login ID than the configured-search domain. Source *string `json:"Source,omitempty"` } diff --git a/intersight_gosdk/model_iam_ldap_group.go b/intersight_gosdk/model_iam_ldap_group.go index c62b97a3b8..28a996a324 100644 --- a/intersight_gosdk/model_iam_ldap_group.go +++ b/intersight_gosdk/model_iam_ldap_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type IamLdapGroup struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // LDAP server domain the Group resides in. - Domain *string `json:"Domain,omitempty"` + Domain *string `json:"Domain,omitempty" validate:"regexp=^[a-zA-Z0-9-]+(.[a-zA-Z0-9-]+)*$"` // LDAP Group name in the LDAP server database. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^([^+\\\\-][a-zA-Z0-9=!#$%()*+,-.:;@ _{|}~?&]*)$"` // An array of relationships to iamEndPointRole resources. EndPointRole []IamEndPointRoleRelationship `json:"EndPointRole,omitempty"` LdapPolicy NullableIamLdapPolicyRelationship `json:"LdapPolicy,omitempty"` @@ -355,9 +355,9 @@ func (o *IamLdapGroup) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // LDAP server domain the Group resides in. - Domain *string `json:"Domain,omitempty"` + Domain *string `json:"Domain,omitempty" validate:"regexp=^[a-zA-Z0-9-]+(.[a-zA-Z0-9-]+)*$"` // LDAP Group name in the LDAP server database. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^([^+\\\\-][a-zA-Z0-9=!#$%()*+,-.:;@ _{|}~?&]*)$"` // An array of relationships to iamEndPointRole resources. EndPointRole []IamEndPointRoleRelationship `json:"EndPointRole,omitempty"` LdapPolicy NullableIamLdapPolicyRelationship `json:"LdapPolicy,omitempty"` diff --git a/intersight_gosdk/model_iam_ldap_group_list.go b/intersight_gosdk/model_iam_ldap_group_list.go index b616e225c6..c6651667c5 100644 --- a/intersight_gosdk/model_iam_ldap_group_list.go +++ b/intersight_gosdk/model_iam_ldap_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ldap_group_relationship.go b/intersight_gosdk/model_iam_ldap_group_relationship.go index 7b5fe830d5..7b57605267 100644 --- a/intersight_gosdk/model_iam_ldap_group_relationship.go +++ b/intersight_gosdk/model_iam_ldap_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ldap_group_response.go b/intersight_gosdk/model_iam_ldap_group_response.go index 526874727e..82f8086ab8 100644 --- a/intersight_gosdk/model_iam_ldap_group_response.go +++ b/intersight_gosdk/model_iam_ldap_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ldap_policy.go b/intersight_gosdk/model_iam_ldap_policy.go index 585da946f0..345aa938a3 100644 --- a/intersight_gosdk/model_iam_ldap_policy.go +++ b/intersight_gosdk/model_iam_ldap_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ldap_policy_list.go b/intersight_gosdk/model_iam_ldap_policy_list.go index bbe5731ee4..ba7d7397a8 100644 --- a/intersight_gosdk/model_iam_ldap_policy_list.go +++ b/intersight_gosdk/model_iam_ldap_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ldap_policy_relationship.go b/intersight_gosdk/model_iam_ldap_policy_relationship.go index bb02ebb55f..a6c73a8577 100644 --- a/intersight_gosdk/model_iam_ldap_policy_relationship.go +++ b/intersight_gosdk/model_iam_ldap_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ldap_policy_response.go b/intersight_gosdk/model_iam_ldap_policy_response.go index b89fa6d2de..52f4d7808b 100644 --- a/intersight_gosdk/model_iam_ldap_policy_response.go +++ b/intersight_gosdk/model_iam_ldap_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ldap_provider.go b/intersight_gosdk/model_iam_ldap_provider.go index 86ecdb3e7f..e308ed5ca3 100644 --- a/intersight_gosdk/model_iam_ldap_provider.go +++ b/intersight_gosdk/model_iam_ldap_provider.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ldap_provider_list.go b/intersight_gosdk/model_iam_ldap_provider_list.go index 6171a0528a..26fced23ad 100644 --- a/intersight_gosdk/model_iam_ldap_provider_list.go +++ b/intersight_gosdk/model_iam_ldap_provider_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ldap_provider_relationship.go b/intersight_gosdk/model_iam_ldap_provider_relationship.go index f95ed8b6a7..2bc036eef6 100644 --- a/intersight_gosdk/model_iam_ldap_provider_relationship.go +++ b/intersight_gosdk/model_iam_ldap_provider_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ldap_provider_response.go b/intersight_gosdk/model_iam_ldap_provider_response.go index 475111b06e..eb0106e27e 100644 --- a/intersight_gosdk/model_iam_ldap_provider_response.go +++ b/intersight_gosdk/model_iam_ldap_provider_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_local_user_password.go b/intersight_gosdk/model_iam_local_user_password.go index fb25cf77f4..0fc29dd8c4 100644 --- a/intersight_gosdk/model_iam_local_user_password.go +++ b/intersight_gosdk/model_iam_local_user_password.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_local_user_password_list.go b/intersight_gosdk/model_iam_local_user_password_list.go index d3cdabe57a..b0f5f10471 100644 --- a/intersight_gosdk/model_iam_local_user_password_list.go +++ b/intersight_gosdk/model_iam_local_user_password_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_local_user_password_policy.go b/intersight_gosdk/model_iam_local_user_password_policy.go index 2e08d02c7d..2dee6c8e11 100644 --- a/intersight_gosdk/model_iam_local_user_password_policy.go +++ b/intersight_gosdk/model_iam_local_user_password_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_local_user_password_policy_list.go b/intersight_gosdk/model_iam_local_user_password_policy_list.go index 86647402fc..70e0c7e8ce 100644 --- a/intersight_gosdk/model_iam_local_user_password_policy_list.go +++ b/intersight_gosdk/model_iam_local_user_password_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_local_user_password_policy_response.go b/intersight_gosdk/model_iam_local_user_password_policy_response.go index 729b3d883b..cf51e921da 100644 --- a/intersight_gosdk/model_iam_local_user_password_policy_response.go +++ b/intersight_gosdk/model_iam_local_user_password_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_local_user_password_relationship.go b/intersight_gosdk/model_iam_local_user_password_relationship.go index 39e5b58b91..94fd79573e 100644 --- a/intersight_gosdk/model_iam_local_user_password_relationship.go +++ b/intersight_gosdk/model_iam_local_user_password_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_local_user_password_response.go b/intersight_gosdk/model_iam_local_user_password_response.go index 1dba9a7ac9..20004e3db2 100644 --- a/intersight_gosdk/model_iam_local_user_password_response.go +++ b/intersight_gosdk/model_iam_local_user_password_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_o_auth_token.go b/intersight_gosdk/model_iam_o_auth_token.go index b9cdb0db0b..448618f86b 100644 --- a/intersight_gosdk/model_iam_o_auth_token.go +++ b/intersight_gosdk/model_iam_o_auth_token.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_o_auth_token_list.go b/intersight_gosdk/model_iam_o_auth_token_list.go index 03cbfdf452..23708f9113 100644 --- a/intersight_gosdk/model_iam_o_auth_token_list.go +++ b/intersight_gosdk/model_iam_o_auth_token_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_o_auth_token_relationship.go b/intersight_gosdk/model_iam_o_auth_token_relationship.go index 3e0dc379f8..7941a7fe3c 100644 --- a/intersight_gosdk/model_iam_o_auth_token_relationship.go +++ b/intersight_gosdk/model_iam_o_auth_token_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_o_auth_token_response.go b/intersight_gosdk/model_iam_o_auth_token_response.go index ea16145d2f..9b568a3f36 100644 --- a/intersight_gosdk/model_iam_o_auth_token_response.go +++ b/intersight_gosdk/model_iam_o_auth_token_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_permission.go b/intersight_gosdk/model_iam_permission.go index 86d88e02b0..831e3d8676 100644 --- a/intersight_gosdk/model_iam_permission.go +++ b/intersight_gosdk/model_iam_permission.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type IamPermission struct { // The informative description about each permission. Description *string `json:"Description,omitempty"` // The name of the permission which has to be granted to user. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_ .:-]{1,64}$"` Account NullableIamAccountRelationship `json:"Account,omitempty"` // An array of relationships to iamEndPointRole resources. EndPointRoles []IamEndPointRoleRelationship `json:"EndPointRoles,omitempty"` @@ -594,7 +594,7 @@ func (o *IamPermission) UnmarshalJSON(data []byte) (err error) { // The informative description about each permission. Description *string `json:"Description,omitempty"` // The name of the permission which has to be granted to user. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_ .:-]{1,64}$"` Account NullableIamAccountRelationship `json:"Account,omitempty"` // An array of relationships to iamEndPointRole resources. EndPointRoles []IamEndPointRoleRelationship `json:"EndPointRoles,omitempty"` diff --git a/intersight_gosdk/model_iam_permission_list.go b/intersight_gosdk/model_iam_permission_list.go index 6cd2a22b15..6ac91ac0e0 100644 --- a/intersight_gosdk/model_iam_permission_list.go +++ b/intersight_gosdk/model_iam_permission_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_permission_reference.go b/intersight_gosdk/model_iam_permission_reference.go index 1d94811e85..74154e3014 100644 --- a/intersight_gosdk/model_iam_permission_reference.go +++ b/intersight_gosdk/model_iam_permission_reference.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_permission_relationship.go b/intersight_gosdk/model_iam_permission_relationship.go index 304f969a1a..191b5478aa 100644 --- a/intersight_gosdk/model_iam_permission_relationship.go +++ b/intersight_gosdk/model_iam_permission_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_permission_response.go b/intersight_gosdk/model_iam_permission_response.go index 0214f105cc..0f6e57a9d6 100644 --- a/intersight_gosdk/model_iam_permission_response.go +++ b/intersight_gosdk/model_iam_permission_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_permission_to_roles.go b/intersight_gosdk/model_iam_permission_to_roles.go index 188318328a..7aea75fdd8 100644 --- a/intersight_gosdk/model_iam_permission_to_roles.go +++ b/intersight_gosdk/model_iam_permission_to_roles.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_private_key_spec.go b/intersight_gosdk/model_iam_private_key_spec.go index a2fd3d7298..d9aa55666d 100644 --- a/intersight_gosdk/model_iam_private_key_spec.go +++ b/intersight_gosdk/model_iam_private_key_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_private_key_spec_list.go b/intersight_gosdk/model_iam_private_key_spec_list.go index fc3b6918dc..d56e1a9b57 100644 --- a/intersight_gosdk/model_iam_private_key_spec_list.go +++ b/intersight_gosdk/model_iam_private_key_spec_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_private_key_spec_relationship.go b/intersight_gosdk/model_iam_private_key_spec_relationship.go index cb4d9e9ed9..ad838d2e1a 100644 --- a/intersight_gosdk/model_iam_private_key_spec_relationship.go +++ b/intersight_gosdk/model_iam_private_key_spec_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_private_key_spec_response.go b/intersight_gosdk/model_iam_private_key_spec_response.go index 6837317fa7..24d89fae5c 100644 --- a/intersight_gosdk/model_iam_private_key_spec_response.go +++ b/intersight_gosdk/model_iam_private_key_spec_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_privilege.go b/intersight_gosdk/model_iam_privilege.go index 258f19afb1..4cfc84a4e3 100644 --- a/intersight_gosdk/model_iam_privilege.go +++ b/intersight_gosdk/model_iam_privilege.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_privilege_list.go b/intersight_gosdk/model_iam_privilege_list.go index 04941207dd..16b4f66c8a 100644 --- a/intersight_gosdk/model_iam_privilege_list.go +++ b/intersight_gosdk/model_iam_privilege_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_privilege_relationship.go b/intersight_gosdk/model_iam_privilege_relationship.go index 8f5b99cccc..9c8d0ea1bc 100644 --- a/intersight_gosdk/model_iam_privilege_relationship.go +++ b/intersight_gosdk/model_iam_privilege_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_privilege_response.go b/intersight_gosdk/model_iam_privilege_response.go index 88a5bbf541..32bbbe73df 100644 --- a/intersight_gosdk/model_iam_privilege_response.go +++ b/intersight_gosdk/model_iam_privilege_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_privilege_set.go b/intersight_gosdk/model_iam_privilege_set.go index 232abc6690..b12ad4ce7a 100644 --- a/intersight_gosdk/model_iam_privilege_set.go +++ b/intersight_gosdk/model_iam_privilege_set.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type IamPrivilegeSet struct { // Description of the privilege set. Description *string `json:"Description,omitempty"` // Name of the privilege set. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_ .:-]{1,64}$"` PrivilegeNames []string `json:"PrivilegeNames,omitempty"` Account NullableIamAccountRelationship `json:"Account,omitempty"` // An array of relationships to iamPrivilegeSet resources. @@ -479,7 +479,7 @@ func (o *IamPrivilegeSet) UnmarshalJSON(data []byte) (err error) { // Description of the privilege set. Description *string `json:"Description,omitempty"` // Name of the privilege set. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_ .:-]{1,64}$"` PrivilegeNames []string `json:"PrivilegeNames,omitempty"` Account NullableIamAccountRelationship `json:"Account,omitempty"` // An array of relationships to iamPrivilegeSet resources. diff --git a/intersight_gosdk/model_iam_privilege_set_list.go b/intersight_gosdk/model_iam_privilege_set_list.go index 2eeeca34de..bd3beda914 100644 --- a/intersight_gosdk/model_iam_privilege_set_list.go +++ b/intersight_gosdk/model_iam_privilege_set_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_privilege_set_relationship.go b/intersight_gosdk/model_iam_privilege_set_relationship.go index aaceafdf2a..1c2e71ec6a 100644 --- a/intersight_gosdk/model_iam_privilege_set_relationship.go +++ b/intersight_gosdk/model_iam_privilege_set_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_privilege_set_response.go b/intersight_gosdk/model_iam_privilege_set_response.go index c911334301..fc7495c4bb 100644 --- a/intersight_gosdk/model_iam_privilege_set_response.go +++ b/intersight_gosdk/model_iam_privilege_set_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_qualifier.go b/intersight_gosdk/model_iam_qualifier.go index a5a1484142..80aa1bb94f 100644 --- a/intersight_gosdk/model_iam_qualifier.go +++ b/intersight_gosdk/model_iam_qualifier.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_qualifier_list.go b/intersight_gosdk/model_iam_qualifier_list.go index 6619c64bfb..a40a0af2af 100644 --- a/intersight_gosdk/model_iam_qualifier_list.go +++ b/intersight_gosdk/model_iam_qualifier_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_qualifier_relationship.go b/intersight_gosdk/model_iam_qualifier_relationship.go index c37cabe2d3..6aff6360ba 100644 --- a/intersight_gosdk/model_iam_qualifier_relationship.go +++ b/intersight_gosdk/model_iam_qualifier_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_qualifier_response.go b/intersight_gosdk/model_iam_qualifier_response.go index 06b8f3ad46..a768abe0de 100644 --- a/intersight_gosdk/model_iam_qualifier_response.go +++ b/intersight_gosdk/model_iam_qualifier_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_resource_limits.go b/intersight_gosdk/model_iam_resource_limits.go index 10aa70a557..94ace8037c 100644 --- a/intersight_gosdk/model_iam_resource_limits.go +++ b/intersight_gosdk/model_iam_resource_limits.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_resource_limits_list.go b/intersight_gosdk/model_iam_resource_limits_list.go index f2a3fea1d5..6c466852cb 100644 --- a/intersight_gosdk/model_iam_resource_limits_list.go +++ b/intersight_gosdk/model_iam_resource_limits_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_resource_limits_relationship.go b/intersight_gosdk/model_iam_resource_limits_relationship.go index 3326b7dfb5..5989efa6a2 100644 --- a/intersight_gosdk/model_iam_resource_limits_relationship.go +++ b/intersight_gosdk/model_iam_resource_limits_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_resource_limits_response.go b/intersight_gosdk/model_iam_resource_limits_response.go index fc8974d97c..d9815c408b 100644 --- a/intersight_gosdk/model_iam_resource_limits_response.go +++ b/intersight_gosdk/model_iam_resource_limits_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_resource_permission.go b/intersight_gosdk/model_iam_resource_permission.go index 02a6f446de..4b41fa2888 100644 --- a/intersight_gosdk/model_iam_resource_permission.go +++ b/intersight_gosdk/model_iam_resource_permission.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_resource_permission_list.go b/intersight_gosdk/model_iam_resource_permission_list.go index b1afc3136c..2f52b4d87c 100644 --- a/intersight_gosdk/model_iam_resource_permission_list.go +++ b/intersight_gosdk/model_iam_resource_permission_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_resource_permission_relationship.go b/intersight_gosdk/model_iam_resource_permission_relationship.go index 1b3e296972..997ed2feed 100644 --- a/intersight_gosdk/model_iam_resource_permission_relationship.go +++ b/intersight_gosdk/model_iam_resource_permission_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_resource_permission_response.go b/intersight_gosdk/model_iam_resource_permission_response.go index 6995ab8509..cf8e69ae6a 100644 --- a/intersight_gosdk/model_iam_resource_permission_response.go +++ b/intersight_gosdk/model_iam_resource_permission_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_resource_role.go b/intersight_gosdk/model_iam_resource_role.go index 7ec28ef87d..7086734401 100644 --- a/intersight_gosdk/model_iam_resource_role.go +++ b/intersight_gosdk/model_iam_resource_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_resource_roles.go b/intersight_gosdk/model_iam_resource_roles.go index 1bb9058c18..aeccbad03d 100644 --- a/intersight_gosdk/model_iam_resource_roles.go +++ b/intersight_gosdk/model_iam_resource_roles.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_resource_roles_list.go b/intersight_gosdk/model_iam_resource_roles_list.go index aaf07a0ce3..4fe3fddbe3 100644 --- a/intersight_gosdk/model_iam_resource_roles_list.go +++ b/intersight_gosdk/model_iam_resource_roles_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_resource_roles_relationship.go b/intersight_gosdk/model_iam_resource_roles_relationship.go index e0d9e51402..56a24b81d7 100644 --- a/intersight_gosdk/model_iam_resource_roles_relationship.go +++ b/intersight_gosdk/model_iam_resource_roles_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_resource_roles_response.go b/intersight_gosdk/model_iam_resource_roles_response.go index 619b2a6b08..b29edbf3ff 100644 --- a/intersight_gosdk/model_iam_resource_roles_response.go +++ b/intersight_gosdk/model_iam_resource_roles_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_role.go b/intersight_gosdk/model_iam_role.go index bab34625c4..9f2e7da496 100644 --- a/intersight_gosdk/model_iam_role.go +++ b/intersight_gosdk/model_iam_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type IamRole struct { // Informative description about each role. Description *string `json:"Description,omitempty"` // The name of the role which has to be granted to user. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_ .:-]{1,64}$"` PrivilegeNames []string `json:"PrivilegeNames,omitempty"` Account NullableIamAccountRelationship `json:"Account,omitempty"` // An array of relationships to iamPrivilegeSet resources. @@ -441,7 +441,7 @@ func (o *IamRole) UnmarshalJSON(data []byte) (err error) { // Informative description about each role. Description *string `json:"Description,omitempty"` // The name of the role which has to be granted to user. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_ .:-]{1,64}$"` PrivilegeNames []string `json:"PrivilegeNames,omitempty"` Account NullableIamAccountRelationship `json:"Account,omitempty"` // An array of relationships to iamPrivilegeSet resources. diff --git a/intersight_gosdk/model_iam_role_list.go b/intersight_gosdk/model_iam_role_list.go index 1b2f59eba4..60ba9c4aec 100644 --- a/intersight_gosdk/model_iam_role_list.go +++ b/intersight_gosdk/model_iam_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_role_relationship.go b/intersight_gosdk/model_iam_role_relationship.go index 63a88ff785..ffcf6edc57 100644 --- a/intersight_gosdk/model_iam_role_relationship.go +++ b/intersight_gosdk/model_iam_role_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_role_response.go b/intersight_gosdk/model_iam_role_response.go index edfb09a09a..7146e0aa8f 100644 --- a/intersight_gosdk/model_iam_role_response.go +++ b/intersight_gosdk/model_iam_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_rule.go b/intersight_gosdk/model_iam_rule.go index 8258209e25..af64c1454f 100644 --- a/intersight_gosdk/model_iam_rule.go +++ b/intersight_gosdk/model_iam_rule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_saml_sp_connection.go b/intersight_gosdk/model_iam_saml_sp_connection.go index ceb2c9a26d..3983396b08 100644 --- a/intersight_gosdk/model_iam_saml_sp_connection.go +++ b/intersight_gosdk/model_iam_saml_sp_connection.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_security_context.go b/intersight_gosdk/model_iam_security_context.go index 7852eb34fc..84a17c1d08 100644 --- a/intersight_gosdk/model_iam_security_context.go +++ b/intersight_gosdk/model_iam_security_context.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_security_holder.go b/intersight_gosdk/model_iam_security_holder.go index 498435b0f3..aeef52a4c0 100644 --- a/intersight_gosdk/model_iam_security_holder.go +++ b/intersight_gosdk/model_iam_security_holder.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_security_holder_list.go b/intersight_gosdk/model_iam_security_holder_list.go index 501e697c49..4be74f3357 100644 --- a/intersight_gosdk/model_iam_security_holder_list.go +++ b/intersight_gosdk/model_iam_security_holder_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_security_holder_relationship.go b/intersight_gosdk/model_iam_security_holder_relationship.go index cd9ea1452e..05d7859bea 100644 --- a/intersight_gosdk/model_iam_security_holder_relationship.go +++ b/intersight_gosdk/model_iam_security_holder_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_security_holder_response.go b/intersight_gosdk/model_iam_security_holder_response.go index 78b9470f01..21aecab8bf 100644 --- a/intersight_gosdk/model_iam_security_holder_response.go +++ b/intersight_gosdk/model_iam_security_holder_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_service_provider.go b/intersight_gosdk/model_iam_service_provider.go index 9b26084d88..aa3811bfb8 100644 --- a/intersight_gosdk/model_iam_service_provider.go +++ b/intersight_gosdk/model_iam_service_provider.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_service_provider_list.go b/intersight_gosdk/model_iam_service_provider_list.go index 1ee9d1100e..e41c976c2a 100644 --- a/intersight_gosdk/model_iam_service_provider_list.go +++ b/intersight_gosdk/model_iam_service_provider_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_service_provider_relationship.go b/intersight_gosdk/model_iam_service_provider_relationship.go index 4d8f0f9f94..739fdd9158 100644 --- a/intersight_gosdk/model_iam_service_provider_relationship.go +++ b/intersight_gosdk/model_iam_service_provider_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_service_provider_response.go b/intersight_gosdk/model_iam_service_provider_response.go index 811a4bf506..1c325e66b7 100644 --- a/intersight_gosdk/model_iam_service_provider_response.go +++ b/intersight_gosdk/model_iam_service_provider_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_session.go b/intersight_gosdk/model_iam_session.go index ad7b8f3060..280723e81f 100644 --- a/intersight_gosdk/model_iam_session.go +++ b/intersight_gosdk/model_iam_session.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_session_limits.go b/intersight_gosdk/model_iam_session_limits.go index 0eb53325c8..55afb16d14 100644 --- a/intersight_gosdk/model_iam_session_limits.go +++ b/intersight_gosdk/model_iam_session_limits.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_session_limits_list.go b/intersight_gosdk/model_iam_session_limits_list.go index 394cbab161..fcff470705 100644 --- a/intersight_gosdk/model_iam_session_limits_list.go +++ b/intersight_gosdk/model_iam_session_limits_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_session_limits_relationship.go b/intersight_gosdk/model_iam_session_limits_relationship.go index 01e25a4446..fc00dcd2a6 100644 --- a/intersight_gosdk/model_iam_session_limits_relationship.go +++ b/intersight_gosdk/model_iam_session_limits_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_session_limits_response.go b/intersight_gosdk/model_iam_session_limits_response.go index 6050550c7f..beba028a0c 100644 --- a/intersight_gosdk/model_iam_session_limits_response.go +++ b/intersight_gosdk/model_iam_session_limits_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_session_list.go b/intersight_gosdk/model_iam_session_list.go index 6267f87d1f..0fce3df9c4 100644 --- a/intersight_gosdk/model_iam_session_list.go +++ b/intersight_gosdk/model_iam_session_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_session_relationship.go b/intersight_gosdk/model_iam_session_relationship.go index 8b2ec716e4..95d31f01d0 100644 --- a/intersight_gosdk/model_iam_session_relationship.go +++ b/intersight_gosdk/model_iam_session_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_session_response.go b/intersight_gosdk/model_iam_session_response.go index 62cc177ae1..3d5a3f19f9 100644 --- a/intersight_gosdk/model_iam_session_response.go +++ b/intersight_gosdk/model_iam_session_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_sharing_rule.go b/intersight_gosdk/model_iam_sharing_rule.go index 11e5dcc89f..cfb478f3ce 100644 --- a/intersight_gosdk/model_iam_sharing_rule.go +++ b/intersight_gosdk/model_iam_sharing_rule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_sharing_rule_list.go b/intersight_gosdk/model_iam_sharing_rule_list.go index 4eb25da6f9..c053d366a3 100644 --- a/intersight_gosdk/model_iam_sharing_rule_list.go +++ b/intersight_gosdk/model_iam_sharing_rule_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_sharing_rule_relationship.go b/intersight_gosdk/model_iam_sharing_rule_relationship.go index 3b0d1adcb5..acd84e90b1 100644 --- a/intersight_gosdk/model_iam_sharing_rule_relationship.go +++ b/intersight_gosdk/model_iam_sharing_rule_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_sharing_rule_response.go b/intersight_gosdk/model_iam_sharing_rule_response.go index 8c58d9ea8e..9a4cdcd720 100644 --- a/intersight_gosdk/model_iam_sharing_rule_response.go +++ b/intersight_gosdk/model_iam_sharing_rule_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_sso_session_attributes.go b/intersight_gosdk/model_iam_sso_session_attributes.go index 2691bbe5bc..e481befeaf 100644 --- a/intersight_gosdk/model_iam_sso_session_attributes.go +++ b/intersight_gosdk/model_iam_sso_session_attributes.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_system.go b/intersight_gosdk/model_iam_system.go index a70c655c6e..a69fa28e1e 100644 --- a/intersight_gosdk/model_iam_system.go +++ b/intersight_gosdk/model_iam_system.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_system_list.go b/intersight_gosdk/model_iam_system_list.go index 00f54dc01b..4a61174586 100644 --- a/intersight_gosdk/model_iam_system_list.go +++ b/intersight_gosdk/model_iam_system_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_system_relationship.go b/intersight_gosdk/model_iam_system_relationship.go index fdc16c6db9..6bcc60c239 100644 --- a/intersight_gosdk/model_iam_system_relationship.go +++ b/intersight_gosdk/model_iam_system_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_system_response.go b/intersight_gosdk/model_iam_system_response.go index 4377005daf..92514ab9cd 100644 --- a/intersight_gosdk/model_iam_system_response.go +++ b/intersight_gosdk/model_iam_system_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_trust_point.go b/intersight_gosdk/model_iam_trust_point.go index 1f976bbc6e..bda4fb5b82 100644 --- a/intersight_gosdk/model_iam_trust_point.go +++ b/intersight_gosdk/model_iam_trust_point.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_trust_point_list.go b/intersight_gosdk/model_iam_trust_point_list.go index 0d75ac3468..ad1c7633d6 100644 --- a/intersight_gosdk/model_iam_trust_point_list.go +++ b/intersight_gosdk/model_iam_trust_point_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_trust_point_relationship.go b/intersight_gosdk/model_iam_trust_point_relationship.go index 91213c966c..6c07cd499f 100644 --- a/intersight_gosdk/model_iam_trust_point_relationship.go +++ b/intersight_gosdk/model_iam_trust_point_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_trust_point_response.go b/intersight_gosdk/model_iam_trust_point_response.go index 833eb569ab..d4e0708306 100644 --- a/intersight_gosdk/model_iam_trust_point_response.go +++ b/intersight_gosdk/model_iam_trust_point_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_user.go b/intersight_gosdk/model_iam_user.go index 35dcd3f83f..f70cbc13c1 100644 --- a/intersight_gosdk/model_iam_user.go +++ b/intersight_gosdk/model_iam_user.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -32,7 +32,7 @@ type IamUser struct { // IP address from which the user last logged in to Intersight. ClientIpAddress *string `json:"ClientIpAddress,omitempty"` // Email of the user. Remote users are added to Intersight using the email configured in the IdP. - Email *string `json:"Email,omitempty"` + Email *string "json:\"Email,omitempty\" validate:\"regexp=^$|^[a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$\"" // First name of the user. For remote users, this field is populated from the IdP attributes received after authentication. FirstName *string `json:"FirstName,omitempty"` // Last successful login time for user. @@ -937,7 +937,7 @@ func (o *IamUser) UnmarshalJSON(data []byte) (err error) { // IP address from which the user last logged in to Intersight. ClientIpAddress *string `json:"ClientIpAddress,omitempty"` // Email of the user. Remote users are added to Intersight using the email configured in the IdP. - Email *string `json:"Email,omitempty"` + Email *string "json:\"Email,omitempty\" validate:\"regexp=^$|^[a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$\"" // First name of the user. For remote users, this field is populated from the IdP attributes received after authentication. FirstName *string `json:"FirstName,omitempty"` // Last successful login time for user. diff --git a/intersight_gosdk/model_iam_user_group.go b/intersight_gosdk/model_iam_user_group.go index 9fd8f97d74..2a40e6a976 100644 --- a/intersight_gosdk/model_iam_user_group.go +++ b/intersight_gosdk/model_iam_user_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_user_group_list.go b/intersight_gosdk/model_iam_user_group_list.go index a1848876d7..0ea5493db6 100644 --- a/intersight_gosdk/model_iam_user_group_list.go +++ b/intersight_gosdk/model_iam_user_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_user_group_relationship.go b/intersight_gosdk/model_iam_user_group_relationship.go index ecbb21b2dd..de1420fd3e 100644 --- a/intersight_gosdk/model_iam_user_group_relationship.go +++ b/intersight_gosdk/model_iam_user_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_user_group_response.go b/intersight_gosdk/model_iam_user_group_response.go index 75409e5509..1c2ba48b65 100644 --- a/intersight_gosdk/model_iam_user_group_response.go +++ b/intersight_gosdk/model_iam_user_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_user_list.go b/intersight_gosdk/model_iam_user_list.go index 1c330dd618..1dcd688dfa 100644 --- a/intersight_gosdk/model_iam_user_list.go +++ b/intersight_gosdk/model_iam_user_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_user_preference.go b/intersight_gosdk/model_iam_user_preference.go index 52bb029b3c..aa1782b8c0 100644 --- a/intersight_gosdk/model_iam_user_preference.go +++ b/intersight_gosdk/model_iam_user_preference.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_user_preference_list.go b/intersight_gosdk/model_iam_user_preference_list.go index 1db2fd95ca..77ccea2980 100644 --- a/intersight_gosdk/model_iam_user_preference_list.go +++ b/intersight_gosdk/model_iam_user_preference_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_user_preference_relationship.go b/intersight_gosdk/model_iam_user_preference_relationship.go index c1b84fd3f7..7bf5df8649 100644 --- a/intersight_gosdk/model_iam_user_preference_relationship.go +++ b/intersight_gosdk/model_iam_user_preference_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_user_preference_response.go b/intersight_gosdk/model_iam_user_preference_response.go index fc7f10e9e2..3c840af167 100644 --- a/intersight_gosdk/model_iam_user_preference_response.go +++ b/intersight_gosdk/model_iam_user_preference_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_user_relationship.go b/intersight_gosdk/model_iam_user_relationship.go index fb0180da1c..e5e909e37b 100644 --- a/intersight_gosdk/model_iam_user_relationship.go +++ b/intersight_gosdk/model_iam_user_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_user_response.go b/intersight_gosdk/model_iam_user_response.go index e5a3c9e503..48a9806543 100644 --- a/intersight_gosdk/model_iam_user_response.go +++ b/intersight_gosdk/model_iam_user_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_user_setting.go b/intersight_gosdk/model_iam_user_setting.go index b312ba5dd5..4064777c65 100644 --- a/intersight_gosdk/model_iam_user_setting.go +++ b/intersight_gosdk/model_iam_user_setting.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_user_setting_list.go b/intersight_gosdk/model_iam_user_setting_list.go index aea6873a10..c778b20d0c 100644 --- a/intersight_gosdk/model_iam_user_setting_list.go +++ b/intersight_gosdk/model_iam_user_setting_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_user_setting_relationship.go b/intersight_gosdk/model_iam_user_setting_relationship.go index 62a1f9d55b..c03defa23d 100644 --- a/intersight_gosdk/model_iam_user_setting_relationship.go +++ b/intersight_gosdk/model_iam_user_setting_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_user_setting_response.go b/intersight_gosdk/model_iam_user_setting_response.go index 0dcd6b716a..bc10cc2106 100644 --- a/intersight_gosdk/model_iam_user_setting_response.go +++ b/intersight_gosdk/model_iam_user_setting_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_imcconnector_web_ui_message.go b/intersight_gosdk/model_imcconnector_web_ui_message.go index f37656f956..bff7f17c86 100644 --- a/intersight_gosdk/model_imcconnector_web_ui_message.go +++ b/intersight_gosdk/model_imcconnector_web_ui_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_infra_base_cluster.go b/intersight_gosdk/model_infra_base_cluster.go index 3611aca440..0849bf2eb8 100644 --- a/intersight_gosdk/model_infra_base_cluster.go +++ b/intersight_gosdk/model_infra_base_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type InfraBaseCluster struct { // 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. ObjectType string `json:"ObjectType"` // The user-provided name for this cluster to facilitate identification. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_-]{1,32}$"` // Cluster health status as reported by the hypervisor platform. * `Unknown` - Entity status is unknown. * `Degraded` - State is degraded, and might impact normal operation of the entity. * `Critical` - Entity is in a critical state, impacting operations. * `Ok` - Entity status is in a stable state, operating normally. Status *string `json:"Status,omitempty"` AdditionalProperties map[string]interface{} @@ -247,7 +247,7 @@ func (o *InfraBaseCluster) UnmarshalJSON(data []byte) (err error) { // 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. ObjectType string `json:"ObjectType"` // The user-provided name for this cluster to facilitate identification. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_-]{1,32}$"` // Cluster health status as reported by the hypervisor platform. * `Unknown` - Entity status is unknown. * `Degraded` - State is degraded, and might impact normal operation of the entity. * `Critical` - Entity is in a critical state, impacting operations. * `Ok` - Entity status is in a stable state, operating normally. Status *string `json:"Status,omitempty"` } diff --git a/intersight_gosdk/model_infra_base_cluster_relationship.go b/intersight_gosdk/model_infra_base_cluster_relationship.go index 92c3c9c581..c6362d069b 100644 --- a/intersight_gosdk/model_infra_base_cluster_relationship.go +++ b/intersight_gosdk/model_infra_base_cluster_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_infra_base_gpu_configuration.go b/intersight_gosdk/model_infra_base_gpu_configuration.go index 2b6d07893e..823e02fa81 100644 --- a/intersight_gosdk/model_infra_base_gpu_configuration.go +++ b/intersight_gosdk/model_infra_base_gpu_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_infra_base_pci_configuration.go b/intersight_gosdk/model_infra_base_pci_configuration.go index 1af26489c8..cbb9fbb732 100644 --- a/intersight_gosdk/model_infra_base_pci_configuration.go +++ b/intersight_gosdk/model_infra_base_pci_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_infra_gpu_configuration.go b/intersight_gosdk/model_infra_gpu_configuration.go index 3b5bf691cf..853cc8f961 100644 --- a/intersight_gosdk/model_infra_gpu_configuration.go +++ b/intersight_gosdk/model_infra_gpu_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_infra_hardware_info.go b/intersight_gosdk/model_infra_hardware_info.go index 2d1a17bf9d..40fad16e1e 100644 --- a/intersight_gosdk/model_infra_hardware_info.go +++ b/intersight_gosdk/model_infra_hardware_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_infra_meta_data.go b/intersight_gosdk/model_infra_meta_data.go index df9e3ad1da..c678677521 100644 --- a/intersight_gosdk/model_infra_meta_data.go +++ b/intersight_gosdk/model_infra_meta_data.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_infra_mig_gpu_configuration.go b/intersight_gosdk/model_infra_mig_gpu_configuration.go index 39e8cdc76c..0312d8069f 100644 --- a/intersight_gosdk/model_infra_mig_gpu_configuration.go +++ b/intersight_gosdk/model_infra_mig_gpu_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_base.go b/intersight_gosdk/model_inventory_base.go index a2ad6aad92..f31e3c919b 100644 --- a/intersight_gosdk/model_inventory_base.go +++ b/intersight_gosdk/model_inventory_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_base_relationship.go b/intersight_gosdk/model_inventory_base_relationship.go index fb2a942e54..5136e4c90b 100644 --- a/intersight_gosdk/model_inventory_base_relationship.go +++ b/intersight_gosdk/model_inventory_base_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_device_info.go b/intersight_gosdk/model_inventory_device_info.go index cb15a90932..d61cb2f00d 100644 --- a/intersight_gosdk/model_inventory_device_info.go +++ b/intersight_gosdk/model_inventory_device_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_device_info_list.go b/intersight_gosdk/model_inventory_device_info_list.go index 7c01d24819..037b23f67c 100644 --- a/intersight_gosdk/model_inventory_device_info_list.go +++ b/intersight_gosdk/model_inventory_device_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_device_info_relationship.go b/intersight_gosdk/model_inventory_device_info_relationship.go index 2442c41d75..fae51d022d 100644 --- a/intersight_gosdk/model_inventory_device_info_relationship.go +++ b/intersight_gosdk/model_inventory_device_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_device_info_response.go b/intersight_gosdk/model_inventory_device_info_response.go index bfa4214c8a..d7af25cb7c 100644 --- a/intersight_gosdk/model_inventory_device_info_response.go +++ b/intersight_gosdk/model_inventory_device_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_dn_mo_binding.go b/intersight_gosdk/model_inventory_dn_mo_binding.go index 3a39e76002..31802285ca 100644 --- a/intersight_gosdk/model_inventory_dn_mo_binding.go +++ b/intersight_gosdk/model_inventory_dn_mo_binding.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_dn_mo_binding_list.go b/intersight_gosdk/model_inventory_dn_mo_binding_list.go index 449d694df5..6b3fd28697 100644 --- a/intersight_gosdk/model_inventory_dn_mo_binding_list.go +++ b/intersight_gosdk/model_inventory_dn_mo_binding_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_dn_mo_binding_response.go b/intersight_gosdk/model_inventory_dn_mo_binding_response.go index e4cb12cb71..6c75aeb269 100644 --- a/intersight_gosdk/model_inventory_dn_mo_binding_response.go +++ b/intersight_gosdk/model_inventory_dn_mo_binding_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_generic_inventory.go b/intersight_gosdk/model_inventory_generic_inventory.go index 5c4fa1f168..cf447ac9df 100644 --- a/intersight_gosdk/model_inventory_generic_inventory.go +++ b/intersight_gosdk/model_inventory_generic_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_generic_inventory_holder.go b/intersight_gosdk/model_inventory_generic_inventory_holder.go index 4c32824a58..5ebc611187 100644 --- a/intersight_gosdk/model_inventory_generic_inventory_holder.go +++ b/intersight_gosdk/model_inventory_generic_inventory_holder.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_generic_inventory_holder_list.go b/intersight_gosdk/model_inventory_generic_inventory_holder_list.go index 029604ab13..42146f1145 100644 --- a/intersight_gosdk/model_inventory_generic_inventory_holder_list.go +++ b/intersight_gosdk/model_inventory_generic_inventory_holder_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_generic_inventory_holder_relationship.go b/intersight_gosdk/model_inventory_generic_inventory_holder_relationship.go index 6e3a150a09..bbce626175 100644 --- a/intersight_gosdk/model_inventory_generic_inventory_holder_relationship.go +++ b/intersight_gosdk/model_inventory_generic_inventory_holder_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_generic_inventory_holder_response.go b/intersight_gosdk/model_inventory_generic_inventory_holder_response.go index e8ad246f85..be5d3cbebb 100644 --- a/intersight_gosdk/model_inventory_generic_inventory_holder_response.go +++ b/intersight_gosdk/model_inventory_generic_inventory_holder_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_generic_inventory_list.go b/intersight_gosdk/model_inventory_generic_inventory_list.go index 46087fe930..3ec3e61ea1 100644 --- a/intersight_gosdk/model_inventory_generic_inventory_list.go +++ b/intersight_gosdk/model_inventory_generic_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_generic_inventory_relationship.go b/intersight_gosdk/model_inventory_generic_inventory_relationship.go index b1ddc4577e..e684aed341 100644 --- a/intersight_gosdk/model_inventory_generic_inventory_relationship.go +++ b/intersight_gosdk/model_inventory_generic_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_generic_inventory_response.go b/intersight_gosdk/model_inventory_generic_inventory_response.go index d399852000..cc4d6a3112 100644 --- a/intersight_gosdk/model_inventory_generic_inventory_response.go +++ b/intersight_gosdk/model_inventory_generic_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_interface.go b/intersight_gosdk/model_inventory_interface.go index a3617e46cb..ced475f178 100644 --- a/intersight_gosdk/model_inventory_interface.go +++ b/intersight_gosdk/model_inventory_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_interface_relationship.go b/intersight_gosdk/model_inventory_interface_relationship.go index 9ea42fd315..095ac6f0be 100644 --- a/intersight_gosdk/model_inventory_interface_relationship.go +++ b/intersight_gosdk/model_inventory_interface_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_inventory_mo.go b/intersight_gosdk/model_inventory_inventory_mo.go index 723e5a9031..6b3e1fd724 100644 --- a/intersight_gosdk/model_inventory_inventory_mo.go +++ b/intersight_gosdk/model_inventory_inventory_mo.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_request.go b/intersight_gosdk/model_inventory_request.go index afc3aa751c..5a988cf931 100644 --- a/intersight_gosdk/model_inventory_request.go +++ b/intersight_gosdk/model_inventory_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_uem_info.go b/intersight_gosdk/model_inventory_uem_info.go index 58807b2f8a..bbac9efa3b 100644 --- a/intersight_gosdk/model_inventory_uem_info.go +++ b/intersight_gosdk/model_inventory_uem_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ipmioverlan_policy.go b/intersight_gosdk/model_ipmioverlan_policy.go index dd8d918f0f..16e7889346 100644 --- a/intersight_gosdk/model_ipmioverlan_policy.go +++ b/intersight_gosdk/model_ipmioverlan_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type IpmioverlanPolicy struct { // State of the IPMI Over LAN service on the endpoint. Enabled *bool `json:"Enabled,omitempty"` // The encryption key to use for IPMI communication. It should have an even number of hexadecimal characters and not exceed 40 characters. Use “00” to disable encryption key use. This configuration is supported by all standalone rack servers. FI-attached rack servers with firmware at minimum of 4.2.3a support this configuration. FI-attached blade servers with firmware at minimum of 5.1.0.x support this configuration. IPMI commands using this key should append zeroes to the key to achieve a length of 40 characters. - EncryptionKey *string `json:"EncryptionKey,omitempty"` + EncryptionKey *string `json:"EncryptionKey,omitempty" validate:"regexp=^[a-fA-F0-9]*$"` // Indicates whether the value of the 'encryptionKey' property has been set. IsEncryptionKeySet *bool `json:"IsEncryptionKeySet,omitempty"` // The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all standalone rack servers. FI-attached rack servers with firmware at minimum of 4.2.3a support this configuration. FI-attached blade servers do not support privilege level. Privilege level will be ignored for unsupported servers. * `admin` - Privilege to perform all actions available through IPMI. * `user` - Privilege to perform some functions through IPMI but restriction on performing administrative tasks. * `read-only` - Privilege to view information throught IPMI but restriction on making any changes. @@ -439,7 +439,7 @@ func (o *IpmioverlanPolicy) UnmarshalJSON(data []byte) (err error) { // State of the IPMI Over LAN service on the endpoint. Enabled *bool `json:"Enabled,omitempty"` // The encryption key to use for IPMI communication. It should have an even number of hexadecimal characters and not exceed 40 characters. Use “00” to disable encryption key use. This configuration is supported by all standalone rack servers. FI-attached rack servers with firmware at minimum of 4.2.3a support this configuration. FI-attached blade servers with firmware at minimum of 5.1.0.x support this configuration. IPMI commands using this key should append zeroes to the key to achieve a length of 40 characters. - EncryptionKey *string `json:"EncryptionKey,omitempty"` + EncryptionKey *string `json:"EncryptionKey,omitempty" validate:"regexp=^[a-fA-F0-9]*$"` // Indicates whether the value of the 'encryptionKey' property has been set. IsEncryptionKeySet *bool `json:"IsEncryptionKeySet,omitempty"` // The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all standalone rack servers. FI-attached rack servers with firmware at minimum of 4.2.3a support this configuration. FI-attached blade servers do not support privilege level. Privilege level will be ignored for unsupported servers. * `admin` - Privilege to perform all actions available through IPMI. * `user` - Privilege to perform some functions through IPMI but restriction on performing administrative tasks. * `read-only` - Privilege to view information throught IPMI but restriction on making any changes. diff --git a/intersight_gosdk/model_ipmioverlan_policy_inventory.go b/intersight_gosdk/model_ipmioverlan_policy_inventory.go index 11066b0d21..0c6e5d209b 100644 --- a/intersight_gosdk/model_ipmioverlan_policy_inventory.go +++ b/intersight_gosdk/model_ipmioverlan_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type IpmioverlanPolicyInventory struct { // State of the IPMI Over LAN service on the endpoint. Enabled *bool `json:"Enabled,omitempty"` // The encryption key to use for IPMI communication. It should have an even number of hexadecimal characters and not exceed 40 characters. Use “00” to disable encryption key use. This configuration is supported by all standalone rack servers. FI-attached rack servers with firmware at minimum of 4.2.3a support this configuration. FI-attached blade servers with firmware at minimum of 5.1.0.x support this configuration. IPMI commands using this key should append zeroes to the key to achieve a length of 40 characters. - EncryptionKey *string `json:"EncryptionKey,omitempty"` + EncryptionKey *string `json:"EncryptionKey,omitempty" validate:"regexp=^[a-fA-F0-9]*$"` // Indicates whether the value of the 'encryptionKey' property has been set. IsEncryptionKeySet *bool `json:"IsEncryptionKeySet,omitempty"` // The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all standalone rack servers. FI-attached rack servers with firmware at minimum of 4.2.3a support this configuration. FI-attached blade servers do not support privilege level. Privilege level will be ignored for unsupported servers. * `admin` - Privilege to perform all actions available through IPMI. * `user` - Privilege to perform some functions through IPMI but restriction on performing administrative tasks. * `read-only` - Privilege to view information throught IPMI but restriction on making any changes. @@ -393,7 +393,7 @@ func (o *IpmioverlanPolicyInventory) UnmarshalJSON(data []byte) (err error) { // State of the IPMI Over LAN service on the endpoint. Enabled *bool `json:"Enabled,omitempty"` // The encryption key to use for IPMI communication. It should have an even number of hexadecimal characters and not exceed 40 characters. Use “00” to disable encryption key use. This configuration is supported by all standalone rack servers. FI-attached rack servers with firmware at minimum of 4.2.3a support this configuration. FI-attached blade servers with firmware at minimum of 5.1.0.x support this configuration. IPMI commands using this key should append zeroes to the key to achieve a length of 40 characters. - EncryptionKey *string `json:"EncryptionKey,omitempty"` + EncryptionKey *string `json:"EncryptionKey,omitempty" validate:"regexp=^[a-fA-F0-9]*$"` // Indicates whether the value of the 'encryptionKey' property has been set. IsEncryptionKeySet *bool `json:"IsEncryptionKeySet,omitempty"` // The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all standalone rack servers. FI-attached rack servers with firmware at minimum of 4.2.3a support this configuration. FI-attached blade servers do not support privilege level. Privilege level will be ignored for unsupported servers. * `admin` - Privilege to perform all actions available through IPMI. * `user` - Privilege to perform some functions through IPMI but restriction on performing administrative tasks. * `read-only` - Privilege to view information throught IPMI but restriction on making any changes. diff --git a/intersight_gosdk/model_ipmioverlan_policy_inventory_list.go b/intersight_gosdk/model_ipmioverlan_policy_inventory_list.go index d621cec88a..fd826372e2 100644 --- a/intersight_gosdk/model_ipmioverlan_policy_inventory_list.go +++ b/intersight_gosdk/model_ipmioverlan_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ipmioverlan_policy_inventory_response.go b/intersight_gosdk/model_ipmioverlan_policy_inventory_response.go index 683f984e30..141649a6dc 100644 --- a/intersight_gosdk/model_ipmioverlan_policy_inventory_response.go +++ b/intersight_gosdk/model_ipmioverlan_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ipmioverlan_policy_list.go b/intersight_gosdk/model_ipmioverlan_policy_list.go index 2dd0eaa297..8747f5fca6 100644 --- a/intersight_gosdk/model_ipmioverlan_policy_list.go +++ b/intersight_gosdk/model_ipmioverlan_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ipmioverlan_policy_response.go b/intersight_gosdk/model_ipmioverlan_policy_response.go index aa91b72b75..1c582a97ea 100644 --- a/intersight_gosdk/model_ipmioverlan_policy_response.go +++ b/intersight_gosdk/model_ipmioverlan_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_block_lease.go b/intersight_gosdk/model_ippool_block_lease.go index fb1a51ce6f..fd571df677 100644 --- a/intersight_gosdk/model_ippool_block_lease.go +++ b/intersight_gosdk/model_ippool_block_lease.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_block_lease_list.go b/intersight_gosdk/model_ippool_block_lease_list.go index 1d266a3ea1..5c94efc0a9 100644 --- a/intersight_gosdk/model_ippool_block_lease_list.go +++ b/intersight_gosdk/model_ippool_block_lease_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_block_lease_relationship.go b/intersight_gosdk/model_ippool_block_lease_relationship.go index 163e81bce4..69bb063293 100644 --- a/intersight_gosdk/model_ippool_block_lease_relationship.go +++ b/intersight_gosdk/model_ippool_block_lease_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_block_lease_response.go b/intersight_gosdk/model_ippool_block_lease_response.go index e2e42843f4..179618e12b 100644 --- a/intersight_gosdk/model_ippool_block_lease_response.go +++ b/intersight_gosdk/model_ippool_block_lease_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_ip_lease.go b/intersight_gosdk/model_ippool_ip_lease.go index c561d622a4..e294eb0ca3 100644 --- a/intersight_gosdk/model_ippool_ip_lease.go +++ b/intersight_gosdk/model_ippool_ip_lease.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,10 +31,10 @@ type IppoolIpLease struct { // Type of the IP address requested. * `IPv4` - IP V4 address type requested. * `IPv6` - IP V6 address type requested. IpType *string `json:"IpType,omitempty"` // IPv4 Address given as a lease to an external entity like server profiles. - IpV4Address *string `json:"IpV4Address,omitempty"` + IpV4Address *string `json:"IpV4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` IpV4Config NullableIppoolIpV4Config `json:"IpV4Config,omitempty"` // IPv6 Address given as a lease to an external entity like server profiles. - IpV6Address *string `json:"IpV6Address,omitempty"` + IpV6Address *string `json:"IpV6Address,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` IpV6Config NullableIppoolIpV6Config `json:"IpV6Config,omitempty"` Reservation *IppoolReservationReference `json:"Reservation,omitempty"` AssignedToEntity NullableMoBaseMoRelationship `json:"AssignedToEntity,omitempty"` @@ -729,10 +729,10 @@ func (o *IppoolIpLease) UnmarshalJSON(data []byte) (err error) { // Type of the IP address requested. * `IPv4` - IP V4 address type requested. * `IPv6` - IP V6 address type requested. IpType *string `json:"IpType,omitempty"` // IPv4 Address given as a lease to an external entity like server profiles. - IpV4Address *string `json:"IpV4Address,omitempty"` + IpV4Address *string `json:"IpV4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` IpV4Config NullableIppoolIpV4Config `json:"IpV4Config,omitempty"` // IPv6 Address given as a lease to an external entity like server profiles. - IpV6Address *string `json:"IpV6Address,omitempty"` + IpV6Address *string `json:"IpV6Address,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` IpV6Config NullableIppoolIpV6Config `json:"IpV6Config,omitempty"` Reservation *IppoolReservationReference `json:"Reservation,omitempty"` AssignedToEntity NullableMoBaseMoRelationship `json:"AssignedToEntity,omitempty"` diff --git a/intersight_gosdk/model_ippool_ip_lease_list.go b/intersight_gosdk/model_ippool_ip_lease_list.go index bbaac4c26d..7a1517a652 100644 --- a/intersight_gosdk/model_ippool_ip_lease_list.go +++ b/intersight_gosdk/model_ippool_ip_lease_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_ip_lease_relationship.go b/intersight_gosdk/model_ippool_ip_lease_relationship.go index 94170729e4..df8212cbb8 100644 --- a/intersight_gosdk/model_ippool_ip_lease_relationship.go +++ b/intersight_gosdk/model_ippool_ip_lease_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_ip_lease_response.go b/intersight_gosdk/model_ippool_ip_lease_response.go index 63e06a59a2..c9b560f1b4 100644 --- a/intersight_gosdk/model_ippool_ip_lease_response.go +++ b/intersight_gosdk/model_ippool_ip_lease_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_ip_v4_block.go b/intersight_gosdk/model_ippool_ip_v4_block.go index 732bb818c5..98856d78af 100644 --- a/intersight_gosdk/model_ippool_ip_v4_block.go +++ b/intersight_gosdk/model_ippool_ip_v4_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,10 +29,10 @@ type IppoolIpV4Block struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // First IPv4 address of the block. - From *string `json:"From,omitempty"` + From *string `json:"From,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` IpV4Config NullableIppoolIpV4Config `json:"IpV4Config,omitempty"` // Last IPv4 address of the block. - To *string `json:"To,omitempty"` + To *string `json:"To,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` AdditionalProperties map[string]interface{} } @@ -317,10 +317,10 @@ func (o *IppoolIpV4Block) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // First IPv4 address of the block. - From *string `json:"From,omitempty"` + From *string `json:"From,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` IpV4Config NullableIppoolIpV4Config `json:"IpV4Config,omitempty"` // Last IPv4 address of the block. - To *string `json:"To,omitempty"` + To *string `json:"To,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` } varIppoolIpV4BlockWithoutEmbeddedStruct := IppoolIpV4BlockWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_ippool_ip_v4_config.go b/intersight_gosdk/model_ippool_ip_v4_config.go index 8f97ddcb99..2f6ac8ce99 100644 --- a/intersight_gosdk/model_ippool_ip_v4_config.go +++ b/intersight_gosdk/model_ippool_ip_v4_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,13 +29,13 @@ type IppoolIpV4Config struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IP address of the default IPv4 gateway. - Gateway *string `json:"Gateway,omitempty"` + Gateway *string `json:"Gateway,omitempty" validate:"regexp=^$|^([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // A subnet mask is a 32-bit number that masks an IP address and divides the IP address into network address and host address. - Netmask *string `json:"Netmask,omitempty"` + Netmask *string `json:"Netmask,omitempty" validate:"regexp=^$|^(((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}))$"` // IP Address of the primary Domain Name System (DNS) server. - PrimaryDns *string `json:"PrimaryDns,omitempty"` + PrimaryDns *string `json:"PrimaryDns,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP Address of the secondary Domain Name System (DNS) server. - SecondaryDns *string `json:"SecondaryDns,omitempty"` + SecondaryDns *string `json:"SecondaryDns,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` AdditionalProperties map[string]interface{} } @@ -344,13 +344,13 @@ func (o *IppoolIpV4Config) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IP address of the default IPv4 gateway. - Gateway *string `json:"Gateway,omitempty"` + Gateway *string `json:"Gateway,omitempty" validate:"regexp=^$|^([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // A subnet mask is a 32-bit number that masks an IP address and divides the IP address into network address and host address. - Netmask *string `json:"Netmask,omitempty"` + Netmask *string `json:"Netmask,omitempty" validate:"regexp=^$|^(((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}))$"` // IP Address of the primary Domain Name System (DNS) server. - PrimaryDns *string `json:"PrimaryDns,omitempty"` + PrimaryDns *string `json:"PrimaryDns,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP Address of the secondary Domain Name System (DNS) server. - SecondaryDns *string `json:"SecondaryDns,omitempty"` + SecondaryDns *string `json:"SecondaryDns,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` } varIppoolIpV4ConfigWithoutEmbeddedStruct := IppoolIpV4ConfigWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_ippool_ip_v6_block.go b/intersight_gosdk/model_ippool_ip_v6_block.go index 05f7c91c61..97a20c3f28 100644 --- a/intersight_gosdk/model_ippool_ip_v6_block.go +++ b/intersight_gosdk/model_ippool_ip_v6_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,10 +29,10 @@ type IppoolIpV6Block struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // First IPv6 address of the block. - From *string `json:"From,omitempty"` + From *string `json:"From,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` IpV6Config NullableIppoolIpV6Config `json:"IpV6Config,omitempty"` // Last IPv6 address of the block. - To *string `json:"To,omitempty"` + To *string `json:"To,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` AdditionalProperties map[string]interface{} } @@ -317,10 +317,10 @@ func (o *IppoolIpV6Block) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // First IPv6 address of the block. - From *string `json:"From,omitempty"` + From *string `json:"From,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` IpV6Config NullableIppoolIpV6Config `json:"IpV6Config,omitempty"` // Last IPv6 address of the block. - To *string `json:"To,omitempty"` + To *string `json:"To,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` } varIppoolIpV6BlockWithoutEmbeddedStruct := IppoolIpV6BlockWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_ippool_ip_v6_config.go b/intersight_gosdk/model_ippool_ip_v6_config.go index 619ab1670f..34d9b23923 100644 --- a/intersight_gosdk/model_ippool_ip_v6_config.go +++ b/intersight_gosdk/model_ippool_ip_v6_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,13 +29,13 @@ type IppoolIpV6Config struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IP address of the default IPv6 gateway. - Gateway *string `json:"Gateway,omitempty"` + Gateway *string `json:"Gateway,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // A prefix length which masks the IP address and divides the IP address into network address and host address. Prefix *int64 `json:"Prefix,omitempty"` // IP Address of the primary Domain Name System (DNS) server. - PrimaryDns *string `json:"PrimaryDns,omitempty"` + PrimaryDns *string `json:"PrimaryDns,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // IP Address of the secondary Domain Name System (DNS) server. - SecondaryDns *string `json:"SecondaryDns,omitempty"` + SecondaryDns *string `json:"SecondaryDns,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` AdditionalProperties map[string]interface{} } @@ -344,13 +344,13 @@ func (o *IppoolIpV6Config) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IP address of the default IPv6 gateway. - Gateway *string `json:"Gateway,omitempty"` + Gateway *string `json:"Gateway,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // A prefix length which masks the IP address and divides the IP address into network address and host address. Prefix *int64 `json:"Prefix,omitempty"` // IP Address of the primary Domain Name System (DNS) server. - PrimaryDns *string `json:"PrimaryDns,omitempty"` + PrimaryDns *string `json:"PrimaryDns,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // IP Address of the secondary Domain Name System (DNS) server. - SecondaryDns *string `json:"SecondaryDns,omitempty"` + SecondaryDns *string `json:"SecondaryDns,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` } varIppoolIpV6ConfigWithoutEmbeddedStruct := IppoolIpV6ConfigWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_ippool_pool.go b/intersight_gosdk/model_ippool_pool.go index 56a3665b7a..aa76b71e5d 100644 --- a/intersight_gosdk/model_ippool_pool.go +++ b/intersight_gosdk/model_ippool_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_pool_list.go b/intersight_gosdk/model_ippool_pool_list.go index ac7684fb72..0aee4210c2 100644 --- a/intersight_gosdk/model_ippool_pool_list.go +++ b/intersight_gosdk/model_ippool_pool_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_pool_member.go b/intersight_gosdk/model_ippool_pool_member.go index 6bc0bf49d5..8d077d466f 100644 --- a/intersight_gosdk/model_ippool_pool_member.go +++ b/intersight_gosdk/model_ippool_pool_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,9 +31,9 @@ type IppoolPoolMember struct { // Type of the IP address requested. * `IPv4` - IP V4 address type requested. * `IPv6` - IP V6 address type requested. IpType *string `json:"IpType,omitempty"` // IPv4 Address of this pool member. - IpV4Address *string `json:"IpV4Address,omitempty"` + IpV4Address *string `json:"IpV4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IPv6 Address of this pool member. - IpV6Address *string `json:"IpV6Address,omitempty"` + IpV6Address *string `json:"IpV6Address,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` AssignedToEntity NullableMoBaseMoRelationship `json:"AssignedToEntity,omitempty"` IpBlock NullableIppoolShadowBlockRelationship `json:"IpBlock,omitempty"` Peer NullableIppoolIpLeaseRelationship `json:"Peer,omitempty"` @@ -550,9 +550,9 @@ func (o *IppoolPoolMember) UnmarshalJSON(data []byte) (err error) { // Type of the IP address requested. * `IPv4` - IP V4 address type requested. * `IPv6` - IP V6 address type requested. IpType *string `json:"IpType,omitempty"` // IPv4 Address of this pool member. - IpV4Address *string `json:"IpV4Address,omitempty"` + IpV4Address *string `json:"IpV4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IPv6 Address of this pool member. - IpV6Address *string `json:"IpV6Address,omitempty"` + IpV6Address *string `json:"IpV6Address,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` AssignedToEntity NullableMoBaseMoRelationship `json:"AssignedToEntity,omitempty"` IpBlock NullableIppoolShadowBlockRelationship `json:"IpBlock,omitempty"` Peer NullableIppoolIpLeaseRelationship `json:"Peer,omitempty"` diff --git a/intersight_gosdk/model_ippool_pool_member_list.go b/intersight_gosdk/model_ippool_pool_member_list.go index a9b67ff719..099b2a1c60 100644 --- a/intersight_gosdk/model_ippool_pool_member_list.go +++ b/intersight_gosdk/model_ippool_pool_member_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_pool_member_relationship.go b/intersight_gosdk/model_ippool_pool_member_relationship.go index b8291856e3..86eef737c7 100644 --- a/intersight_gosdk/model_ippool_pool_member_relationship.go +++ b/intersight_gosdk/model_ippool_pool_member_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_pool_member_response.go b/intersight_gosdk/model_ippool_pool_member_response.go index e4ed6b2d96..1cc080968e 100644 --- a/intersight_gosdk/model_ippool_pool_member_response.go +++ b/intersight_gosdk/model_ippool_pool_member_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_pool_relationship.go b/intersight_gosdk/model_ippool_pool_relationship.go index 52ed6282c9..0a5fc615fa 100644 --- a/intersight_gosdk/model_ippool_pool_relationship.go +++ b/intersight_gosdk/model_ippool_pool_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_pool_response.go b/intersight_gosdk/model_ippool_pool_response.go index e7735ca23c..3b1584f45c 100644 --- a/intersight_gosdk/model_ippool_pool_response.go +++ b/intersight_gosdk/model_ippool_pool_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_reservation.go b/intersight_gosdk/model_ippool_reservation.go index 24865d786e..739eb5b48e 100644 --- a/intersight_gosdk/model_ippool_reservation.go +++ b/intersight_gosdk/model_ippool_reservation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,9 +33,9 @@ type IppoolReservation struct { // Type of the IP address that needs to be reserved. * `IPv4` - IP V4 address type requested. * `IPv6` - IP V6 address type requested. IpType *string `json:"IpType,omitempty"` // IPv4 Address to be reserved. - IpV4Address *string `json:"IpV4Address,omitempty"` + IpV4Address *string `json:"IpV4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IPv6 Address to be reserved. - IpV6Address *string `json:"IpV6Address,omitempty"` + IpV6Address *string `json:"IpV6Address,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // The moid of the Virtual Routing and Forwarding MO. VrfMoid *string `json:"VrfMoid,omitempty"` BlockHead NullableIppoolShadowBlockRelationship `json:"BlockHead,omitempty"` @@ -720,9 +720,9 @@ func (o *IppoolReservation) UnmarshalJSON(data []byte) (err error) { // Type of the IP address that needs to be reserved. * `IPv4` - IP V4 address type requested. * `IPv6` - IP V6 address type requested. IpType *string `json:"IpType,omitempty"` // IPv4 Address to be reserved. - IpV4Address *string `json:"IpV4Address,omitempty"` + IpV4Address *string `json:"IpV4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IPv6 Address to be reserved. - IpV6Address *string `json:"IpV6Address,omitempty"` + IpV6Address *string `json:"IpV6Address,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // The moid of the Virtual Routing and Forwarding MO. VrfMoid *string `json:"VrfMoid,omitempty"` BlockHead NullableIppoolShadowBlockRelationship `json:"BlockHead,omitempty"` diff --git a/intersight_gosdk/model_ippool_reservation_list.go b/intersight_gosdk/model_ippool_reservation_list.go index 8ceaf9496b..a2e29bb2e6 100644 --- a/intersight_gosdk/model_ippool_reservation_list.go +++ b/intersight_gosdk/model_ippool_reservation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_reservation_reference.go b/intersight_gosdk/model_ippool_reservation_reference.go index 861c8d94a6..82e314bc8a 100644 --- a/intersight_gosdk/model_ippool_reservation_reference.go +++ b/intersight_gosdk/model_ippool_reservation_reference.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_reservation_relationship.go b/intersight_gosdk/model_ippool_reservation_relationship.go index a33041ef80..e9685cd0ac 100644 --- a/intersight_gosdk/model_ippool_reservation_relationship.go +++ b/intersight_gosdk/model_ippool_reservation_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_reservation_response.go b/intersight_gosdk/model_ippool_reservation_response.go index c02c24c2be..ebfda313a8 100644 --- a/intersight_gosdk/model_ippool_reservation_response.go +++ b/intersight_gosdk/model_ippool_reservation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_shadow_block.go b/intersight_gosdk/model_ippool_shadow_block.go index 59992c4f6d..28dd0156e0 100644 --- a/intersight_gosdk/model_ippool_shadow_block.go +++ b/intersight_gosdk/model_ippool_shadow_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_shadow_block_list.go b/intersight_gosdk/model_ippool_shadow_block_list.go index ea7862f474..a8913f7c9e 100644 --- a/intersight_gosdk/model_ippool_shadow_block_list.go +++ b/intersight_gosdk/model_ippool_shadow_block_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_shadow_block_relationship.go b/intersight_gosdk/model_ippool_shadow_block_relationship.go index 91834e98a9..2875d95965 100644 --- a/intersight_gosdk/model_ippool_shadow_block_relationship.go +++ b/intersight_gosdk/model_ippool_shadow_block_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_shadow_block_response.go b/intersight_gosdk/model_ippool_shadow_block_response.go index 508e5c695b..202b6d633d 100644 --- a/intersight_gosdk/model_ippool_shadow_block_response.go +++ b/intersight_gosdk/model_ippool_shadow_block_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_shadow_pool.go b/intersight_gosdk/model_ippool_shadow_pool.go index 1373acb1d9..2b890931fd 100644 --- a/intersight_gosdk/model_ippool_shadow_pool.go +++ b/intersight_gosdk/model_ippool_shadow_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_shadow_pool_list.go b/intersight_gosdk/model_ippool_shadow_pool_list.go index c14f0ed9bb..856936fded 100644 --- a/intersight_gosdk/model_ippool_shadow_pool_list.go +++ b/intersight_gosdk/model_ippool_shadow_pool_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_shadow_pool_relationship.go b/intersight_gosdk/model_ippool_shadow_pool_relationship.go index 6c35a31d2d..f3922ac9c0 100644 --- a/intersight_gosdk/model_ippool_shadow_pool_relationship.go +++ b/intersight_gosdk/model_ippool_shadow_pool_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_shadow_pool_response.go b/intersight_gosdk/model_ippool_shadow_pool_response.go index 36e9150442..2ef8530687 100644 --- a/intersight_gosdk/model_ippool_shadow_pool_response.go +++ b/intersight_gosdk/model_ippool_shadow_pool_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_universe.go b/intersight_gosdk/model_ippool_universe.go index 14c5d42e14..dc70089706 100644 --- a/intersight_gosdk/model_ippool_universe.go +++ b/intersight_gosdk/model_ippool_universe.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_universe_list.go b/intersight_gosdk/model_ippool_universe_list.go index 4a645dd38d..0b80de0b07 100644 --- a/intersight_gosdk/model_ippool_universe_list.go +++ b/intersight_gosdk/model_ippool_universe_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_universe_relationship.go b/intersight_gosdk/model_ippool_universe_relationship.go index 17089386e5..96a20e41b9 100644 --- a/intersight_gosdk/model_ippool_universe_relationship.go +++ b/intersight_gosdk/model_ippool_universe_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_universe_response.go b/intersight_gosdk/model_ippool_universe_response.go index 509e52832f..0578854eb2 100644 --- a/intersight_gosdk/model_ippool_universe_response.go +++ b/intersight_gosdk/model_ippool_universe_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_block.go b/intersight_gosdk/model_iqnpool_block.go index bd77396f31..2ba937c57d 100644 --- a/intersight_gosdk/model_iqnpool_block.go +++ b/intersight_gosdk/model_iqnpool_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_block_list.go b/intersight_gosdk/model_iqnpool_block_list.go index 47bdb9c232..b822b234d9 100644 --- a/intersight_gosdk/model_iqnpool_block_list.go +++ b/intersight_gosdk/model_iqnpool_block_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_block_relationship.go b/intersight_gosdk/model_iqnpool_block_relationship.go index 55016b95a9..5fecbc17a4 100644 --- a/intersight_gosdk/model_iqnpool_block_relationship.go +++ b/intersight_gosdk/model_iqnpool_block_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_block_response.go b/intersight_gosdk/model_iqnpool_block_response.go index 6ae80d49ca..2170589c3b 100644 --- a/intersight_gosdk/model_iqnpool_block_response.go +++ b/intersight_gosdk/model_iqnpool_block_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_iqn_suffix_block.go b/intersight_gosdk/model_iqnpool_iqn_suffix_block.go index ac1d66dc3e..c3ee42e119 100644 --- a/intersight_gosdk/model_iqnpool_iqn_suffix_block.go +++ b/intersight_gosdk/model_iqnpool_iqn_suffix_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_lease.go b/intersight_gosdk/model_iqnpool_lease.go index fcb33b6a4f..74dd5505ee 100644 --- a/intersight_gosdk/model_iqnpool_lease.go +++ b/intersight_gosdk/model_iqnpool_lease.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type IqnpoolLease struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IQN address allocated for pool-based allocation. It is constructed as ::. - IqnAddress *string `json:"IqnAddress,omitempty"` + IqnAddress *string `json:"IqnAddress,omitempty" validate:"regexp=^$|^(?:iqn\\\\.[0-9]{4}-[0-9]{2}(?:\\\\.[A-Za-z](?:[A-Za-z0-9\\\\-]*[A-Za-z0-9])?)+(?::.*)?|eui\\\\.[0-9A-Fa-f]{16})"` // Number of the IQN address. IQN Address is constructed as ::. IqnNumber *int64 `json:"IqnNumber,omitempty"` // Prefix of the IQN address. IQN Address is constructed as ::. @@ -572,7 +572,7 @@ func (o *IqnpoolLease) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IQN address allocated for pool-based allocation. It is constructed as ::. - IqnAddress *string `json:"IqnAddress,omitempty"` + IqnAddress *string `json:"IqnAddress,omitempty" validate:"regexp=^$|^(?:iqn\\\\.[0-9]{4}-[0-9]{2}(?:\\\\.[A-Za-z](?:[A-Za-z0-9\\\\-]*[A-Za-z0-9])?)+(?::.*)?|eui\\\\.[0-9A-Fa-f]{16})"` // Number of the IQN address. IQN Address is constructed as ::. IqnNumber *int64 `json:"IqnNumber,omitempty"` // Prefix of the IQN address. IQN Address is constructed as ::. diff --git a/intersight_gosdk/model_iqnpool_lease_list.go b/intersight_gosdk/model_iqnpool_lease_list.go index 1eb4a31450..430710c563 100644 --- a/intersight_gosdk/model_iqnpool_lease_list.go +++ b/intersight_gosdk/model_iqnpool_lease_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_lease_relationship.go b/intersight_gosdk/model_iqnpool_lease_relationship.go index faa2766062..39447ab70e 100644 --- a/intersight_gosdk/model_iqnpool_lease_relationship.go +++ b/intersight_gosdk/model_iqnpool_lease_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_lease_response.go b/intersight_gosdk/model_iqnpool_lease_response.go index b42c30e7ae..203c6bace4 100644 --- a/intersight_gosdk/model_iqnpool_lease_response.go +++ b/intersight_gosdk/model_iqnpool_lease_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_pool.go b/intersight_gosdk/model_iqnpool_pool.go index 7283b8eb60..fd2cfacadf 100644 --- a/intersight_gosdk/model_iqnpool_pool.go +++ b/intersight_gosdk/model_iqnpool_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_pool_list.go b/intersight_gosdk/model_iqnpool_pool_list.go index d2769037b9..c46c26f53b 100644 --- a/intersight_gosdk/model_iqnpool_pool_list.go +++ b/intersight_gosdk/model_iqnpool_pool_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_pool_member.go b/intersight_gosdk/model_iqnpool_pool_member.go index 578ff5860d..74e1d22935 100644 --- a/intersight_gosdk/model_iqnpool_pool_member.go +++ b/intersight_gosdk/model_iqnpool_pool_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_pool_member_list.go b/intersight_gosdk/model_iqnpool_pool_member_list.go index af7b733b25..ada6dd8b6a 100644 --- a/intersight_gosdk/model_iqnpool_pool_member_list.go +++ b/intersight_gosdk/model_iqnpool_pool_member_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_pool_member_relationship.go b/intersight_gosdk/model_iqnpool_pool_member_relationship.go index 0f8e166054..f37885f24f 100644 --- a/intersight_gosdk/model_iqnpool_pool_member_relationship.go +++ b/intersight_gosdk/model_iqnpool_pool_member_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_pool_member_response.go b/intersight_gosdk/model_iqnpool_pool_member_response.go index 9b1f1d4271..7f58fc2f5a 100644 --- a/intersight_gosdk/model_iqnpool_pool_member_response.go +++ b/intersight_gosdk/model_iqnpool_pool_member_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_pool_relationship.go b/intersight_gosdk/model_iqnpool_pool_relationship.go index 9ee7780894..d1701c3db1 100644 --- a/intersight_gosdk/model_iqnpool_pool_relationship.go +++ b/intersight_gosdk/model_iqnpool_pool_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_pool_response.go b/intersight_gosdk/model_iqnpool_pool_response.go index 7b3abcbf36..1653f88669 100644 --- a/intersight_gosdk/model_iqnpool_pool_response.go +++ b/intersight_gosdk/model_iqnpool_pool_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_reservation.go b/intersight_gosdk/model_iqnpool_reservation.go index 0691536830..cbad879a0f 100644 --- a/intersight_gosdk/model_iqnpool_reservation.go +++ b/intersight_gosdk/model_iqnpool_reservation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type IqnpoolReservation struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IQN identity to be reserved. - Identity *string `json:"Identity,omitempty"` + Identity *string `json:"Identity,omitempty" validate:"regexp=^$|^(?:iqn\\\\.[0-9]{4}-[0-9]{2}(?:\\\\.[A-Za-z](?:[A-Za-z0-9\\\\-]*[A-Za-z0-9])?)+(?::.*)?|eui\\\\.[0-9A-Fa-f]{16})"` // Number of the IQN address. IQN Address is constructed as ::. IqnNumber *int64 `json:"IqnNumber,omitempty"` // Prefix of the IQN address. IQN Address is constructed as ::. @@ -581,7 +581,7 @@ func (o *IqnpoolReservation) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IQN identity to be reserved. - Identity *string `json:"Identity,omitempty"` + Identity *string `json:"Identity,omitempty" validate:"regexp=^$|^(?:iqn\\\\.[0-9]{4}-[0-9]{2}(?:\\\\.[A-Za-z](?:[A-Za-z0-9\\\\-]*[A-Za-z0-9])?)+(?::.*)?|eui\\\\.[0-9A-Fa-f]{16})"` // Number of the IQN address. IQN Address is constructed as ::. IqnNumber *int64 `json:"IqnNumber,omitempty"` // Prefix of the IQN address. IQN Address is constructed as ::. diff --git a/intersight_gosdk/model_iqnpool_reservation_list.go b/intersight_gosdk/model_iqnpool_reservation_list.go index e77033f33d..9963118c4e 100644 --- a/intersight_gosdk/model_iqnpool_reservation_list.go +++ b/intersight_gosdk/model_iqnpool_reservation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_reservation_reference.go b/intersight_gosdk/model_iqnpool_reservation_reference.go index 0919eeacec..7e2485af5e 100644 --- a/intersight_gosdk/model_iqnpool_reservation_reference.go +++ b/intersight_gosdk/model_iqnpool_reservation_reference.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_reservation_relationship.go b/intersight_gosdk/model_iqnpool_reservation_relationship.go index a4a01cfe38..28b6217a30 100644 --- a/intersight_gosdk/model_iqnpool_reservation_relationship.go +++ b/intersight_gosdk/model_iqnpool_reservation_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_reservation_response.go b/intersight_gosdk/model_iqnpool_reservation_response.go index 60b73c3b5b..2bc09611f4 100644 --- a/intersight_gosdk/model_iqnpool_reservation_response.go +++ b/intersight_gosdk/model_iqnpool_reservation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_universe.go b/intersight_gosdk/model_iqnpool_universe.go index 9d76f13a09..bfb37dcfdc 100644 --- a/intersight_gosdk/model_iqnpool_universe.go +++ b/intersight_gosdk/model_iqnpool_universe.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_universe_list.go b/intersight_gosdk/model_iqnpool_universe_list.go index d281048155..9858162f7e 100644 --- a/intersight_gosdk/model_iqnpool_universe_list.go +++ b/intersight_gosdk/model_iqnpool_universe_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_universe_relationship.go b/intersight_gosdk/model_iqnpool_universe_relationship.go index 4e1f729cb2..584a27e0a5 100644 --- a/intersight_gosdk/model_iqnpool_universe_relationship.go +++ b/intersight_gosdk/model_iqnpool_universe_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_universe_response.go b/intersight_gosdk/model_iqnpool_universe_response.go index b61464310d..d63250a68c 100644 --- a/intersight_gosdk/model_iqnpool_universe_response.go +++ b/intersight_gosdk/model_iqnpool_universe_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_issue_condition.go b/intersight_gosdk/model_issue_condition.go index a57bfa5022..e068f55747 100644 --- a/intersight_gosdk/model_issue_condition.go +++ b/intersight_gosdk/model_issue_condition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_issue_definition.go b/intersight_gosdk/model_issue_definition.go index 7a4c849b45..8cb8dcb0c6 100644 --- a/intersight_gosdk/model_issue_definition.go +++ b/intersight_gosdk/model_issue_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_issue_device_tag.go b/intersight_gosdk/model_issue_device_tag.go index 3eea929b4f..a6a44862c1 100644 --- a/intersight_gosdk/model_issue_device_tag.go +++ b/intersight_gosdk/model_issue_device_tag.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_issue_message.go b/intersight_gosdk/model_issue_message.go index e3c6baa8cd..f5328cde09 100644 --- a/intersight_gosdk/model_issue_message.go +++ b/intersight_gosdk/model_issue_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_issue_odata_condition.go b/intersight_gosdk/model_issue_odata_condition.go index 2cc3d48313..b31af9fed7 100644 --- a/intersight_gosdk/model_issue_odata_condition.go +++ b/intersight_gosdk/model_issue_odata_condition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iwotenant_maintenance_notification.go b/intersight_gosdk/model_iwotenant_maintenance_notification.go index 71cfa5e45d..e82e708e7e 100644 --- a/intersight_gosdk/model_iwotenant_maintenance_notification.go +++ b/intersight_gosdk/model_iwotenant_maintenance_notification.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iwotenant_maintenance_notification_list.go b/intersight_gosdk/model_iwotenant_maintenance_notification_list.go index d54f201e3b..cde9735d16 100644 --- a/intersight_gosdk/model_iwotenant_maintenance_notification_list.go +++ b/intersight_gosdk/model_iwotenant_maintenance_notification_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iwotenant_maintenance_notification_response.go b/intersight_gosdk/model_iwotenant_maintenance_notification_response.go index 086bdeaabb..beb5b9d2a4 100644 --- a/intersight_gosdk/model_iwotenant_maintenance_notification_response.go +++ b/intersight_gosdk/model_iwotenant_maintenance_notification_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iwotenant_migrate.go b/intersight_gosdk/model_iwotenant_migrate.go index 575e727e32..3b5e1f61d9 100644 --- a/intersight_gosdk/model_iwotenant_migrate.go +++ b/intersight_gosdk/model_iwotenant_migrate.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iwotenant_migrate_list.go b/intersight_gosdk/model_iwotenant_migrate_list.go index 920509c7bf..e60c3ab0be 100644 --- a/intersight_gosdk/model_iwotenant_migrate_list.go +++ b/intersight_gosdk/model_iwotenant_migrate_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iwotenant_migrate_response.go b/intersight_gosdk/model_iwotenant_migrate_response.go index bfbed66a46..8e518aed54 100644 --- a/intersight_gosdk/model_iwotenant_migrate_response.go +++ b/intersight_gosdk/model_iwotenant_migrate_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iwotenant_tenant_customization.go b/intersight_gosdk/model_iwotenant_tenant_customization.go index 97cd7e84ff..3ff46cd258 100644 --- a/intersight_gosdk/model_iwotenant_tenant_customization.go +++ b/intersight_gosdk/model_iwotenant_tenant_customization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iwotenant_tenant_customization_list.go b/intersight_gosdk/model_iwotenant_tenant_customization_list.go index 964af8aff2..7747a42086 100644 --- a/intersight_gosdk/model_iwotenant_tenant_customization_list.go +++ b/intersight_gosdk/model_iwotenant_tenant_customization_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iwotenant_tenant_customization_response.go b/intersight_gosdk/model_iwotenant_tenant_customization_response.go index 5a7982c55c..a0cbc33084 100644 --- a/intersight_gosdk/model_iwotenant_tenant_customization_response.go +++ b/intersight_gosdk/model_iwotenant_tenant_customization_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iwotenant_tenant_status.go b/intersight_gosdk/model_iwotenant_tenant_status.go index f5fec93f72..2589bae4a5 100644 --- a/intersight_gosdk/model_iwotenant_tenant_status.go +++ b/intersight_gosdk/model_iwotenant_tenant_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iwotenant_tenant_status_list.go b/intersight_gosdk/model_iwotenant_tenant_status_list.go index 4f2caf6dc7..6793857be9 100644 --- a/intersight_gosdk/model_iwotenant_tenant_status_list.go +++ b/intersight_gosdk/model_iwotenant_tenant_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iwotenant_tenant_status_response.go b/intersight_gosdk/model_iwotenant_tenant_status_response.go index 7755b7e4bd..1c8b79ad4c 100644 --- a/intersight_gosdk/model_iwotenant_tenant_status_response.go +++ b/intersight_gosdk/model_iwotenant_tenant_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_abstract_daemon_set.go b/intersight_gosdk/model_kubernetes_abstract_daemon_set.go index 679a521fb1..64b3563691 100644 --- a/intersight_gosdk/model_kubernetes_abstract_daemon_set.go +++ b/intersight_gosdk/model_kubernetes_abstract_daemon_set.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_abstract_deployment.go b/intersight_gosdk/model_kubernetes_abstract_deployment.go index b66d0800c9..ab491624cc 100644 --- a/intersight_gosdk/model_kubernetes_abstract_deployment.go +++ b/intersight_gosdk/model_kubernetes_abstract_deployment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_abstract_ingress.go b/intersight_gosdk/model_kubernetes_abstract_ingress.go index 44512cf498..f553d367d3 100644 --- a/intersight_gosdk/model_kubernetes_abstract_ingress.go +++ b/intersight_gosdk/model_kubernetes_abstract_ingress.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_abstract_node.go b/intersight_gosdk/model_kubernetes_abstract_node.go index f5e4c567ed..dde16a33b3 100644 --- a/intersight_gosdk/model_kubernetes_abstract_node.go +++ b/intersight_gosdk/model_kubernetes_abstract_node.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_abstract_pod.go b/intersight_gosdk/model_kubernetes_abstract_pod.go index ce6b1d8869..91c488c029 100644 --- a/intersight_gosdk/model_kubernetes_abstract_pod.go +++ b/intersight_gosdk/model_kubernetes_abstract_pod.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_abstract_service.go b/intersight_gosdk/model_kubernetes_abstract_service.go index a8d5ea9c0c..11cf0f5bce 100644 --- a/intersight_gosdk/model_kubernetes_abstract_service.go +++ b/intersight_gosdk/model_kubernetes_abstract_service.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_abstract_stateful_set.go b/intersight_gosdk/model_kubernetes_abstract_stateful_set.go index f6a6e66ce9..2dbfd4e0dc 100644 --- a/intersight_gosdk/model_kubernetes_abstract_stateful_set.go +++ b/intersight_gosdk/model_kubernetes_abstract_stateful_set.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_aci_cni_apic.go b/intersight_gosdk/model_kubernetes_aci_cni_apic.go index 6261caea87..818b964c63 100644 --- a/intersight_gosdk/model_kubernetes_aci_cni_apic.go +++ b/intersight_gosdk/model_kubernetes_aci_cni_apic.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_aci_cni_apic_list.go b/intersight_gosdk/model_kubernetes_aci_cni_apic_list.go index 7eff3ed9cb..d12b24eb61 100644 --- a/intersight_gosdk/model_kubernetes_aci_cni_apic_list.go +++ b/intersight_gosdk/model_kubernetes_aci_cni_apic_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_aci_cni_apic_response.go b/intersight_gosdk/model_kubernetes_aci_cni_apic_response.go index 19ee6b4c67..5b6768044a 100644 --- a/intersight_gosdk/model_kubernetes_aci_cni_apic_response.go +++ b/intersight_gosdk/model_kubernetes_aci_cni_apic_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_aci_cni_profile.go b/intersight_gosdk/model_kubernetes_aci_cni_profile.go index 37a73a6016..775942ba8f 100644 --- a/intersight_gosdk/model_kubernetes_aci_cni_profile.go +++ b/intersight_gosdk/model_kubernetes_aci_cni_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,23 +29,23 @@ type KubernetesAciCniProfile struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy. - AaepName *string `json:"AaepName,omitempty"` + AaepName *string `json:"AaepName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-_]*[a-zA-Z0-9]$"` // Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy. - ExtSvcDynSubnetStart *string `json:"ExtSvcDynSubnetStart,omitempty"` + ExtSvcDynSubnetStart *string `json:"ExtSvcDynSubnetStart,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy. - ExtSvcStaticSubnetStart *string `json:"ExtSvcStaticSubnetStart,omitempty"` + ExtSvcStaticSubnetStart *string `json:"ExtSvcStaticSubnetStart,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Value of ACI infrastructuere VLAN ID for the ACI fabric. InfraVlanId *int64 `json:"InfraVlanId,omitempty"` // Name of ACI L3Out network to be used for all Kubernetes clusters using this policy. - L3OutNetworkName *string `json:"L3OutNetworkName,omitempty"` + L3OutNetworkName *string `json:"L3OutNetworkName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-_]*[a-zA-Z0-9]$"` // Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy. - L3OutPolicyName *string `json:"L3OutPolicyName,omitempty"` + L3OutPolicyName *string `json:"L3OutPolicyName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-_]*[a-zA-Z0-9]$"` // Tenant in ACI used by this L3Out and Common VRF. - L3OutTenant *string `json:"L3OutTenant,omitempty"` + L3OutTenant *string `json:"L3OutTenant,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-_]*[a-zA-Z0-9]$"` // VMM domain within which Kubernetes clusters using this policy are nested. - NestedVmmDomain *string `json:"NestedVmmDomain,omitempty"` + NestedVmmDomain *string `json:"NestedVmmDomain,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-_]*[a-zA-Z0-9]$"` // Start of range of ACI Node Service IP subnets to use by Kubernetes clusters using this ACI CNI policy This is used for the service graph which is used for ACI PBR based load balancing. - NodeSvcSubnetStart *string `json:"NodeSvcSubnetStart,omitempty"` + NodeSvcSubnetStart *string `json:"NodeSvcSubnetStart,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy. NodeVlanRangeEnd *int64 `json:"NodeVlanRangeEnd,omitempty"` // Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy. @@ -53,13 +53,13 @@ type KubernetesAciCniProfile struct { // Number of k8s clusters currently using this ACI CNI profile. NumberOfKubernetesClusters *int64 `json:"NumberOfKubernetesClusters,omitempty"` // Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy. - OpflexMulticastAddressRange *string `json:"OpflexMulticastAddressRange,omitempty"` + OpflexMulticastAddressRange *string `json:"OpflexMulticastAddressRange,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Start of range of Kubernetes pod IP subnets to use by Kubernetes clusters using this ACI CNI policy This should be a /8 IP subnet so that multiple /16 subnets can be assigned for pod subnets of Kubernetes clusters using this profile. - PodSubnetStart *string `json:"PodSubnetStart,omitempty"` + PodSubnetStart *string `json:"PodSubnetStart,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Start of range of Kubernetes Service IP subnets to use by Kubernetes clusters using this ACI CNI policy Currently this is fixed internally and read-only. - SvcSubnetStart *string `json:"SvcSubnetStart,omitempty"` + SvcSubnetStart *string `json:"SvcSubnetStart,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // VRF (Virtual Routing and Forwarding) domain to be used within ACI fabric by all k8s clusters using this policy. - Vrf *string `json:"Vrf,omitempty"` + Vrf *string `json:"Vrf,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-_]*[a-zA-Z0-9]$"` // An array of relationships to kubernetesAciCniTenantClusterAllocation resources. ClusterAciAllocations []KubernetesAciCniTenantClusterAllocationRelationship `json:"ClusterAciAllocations,omitempty"` // An array of relationships to kubernetesClusterProfile resources. @@ -960,23 +960,23 @@ func (o *KubernetesAciCniProfile) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy. - AaepName *string `json:"AaepName,omitempty"` + AaepName *string `json:"AaepName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-_]*[a-zA-Z0-9]$"` // Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy. - ExtSvcDynSubnetStart *string `json:"ExtSvcDynSubnetStart,omitempty"` + ExtSvcDynSubnetStart *string `json:"ExtSvcDynSubnetStart,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy. - ExtSvcStaticSubnetStart *string `json:"ExtSvcStaticSubnetStart,omitempty"` + ExtSvcStaticSubnetStart *string `json:"ExtSvcStaticSubnetStart,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Value of ACI infrastructuere VLAN ID for the ACI fabric. InfraVlanId *int64 `json:"InfraVlanId,omitempty"` // Name of ACI L3Out network to be used for all Kubernetes clusters using this policy. - L3OutNetworkName *string `json:"L3OutNetworkName,omitempty"` + L3OutNetworkName *string `json:"L3OutNetworkName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-_]*[a-zA-Z0-9]$"` // Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy. - L3OutPolicyName *string `json:"L3OutPolicyName,omitempty"` + L3OutPolicyName *string `json:"L3OutPolicyName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-_]*[a-zA-Z0-9]$"` // Tenant in ACI used by this L3Out and Common VRF. - L3OutTenant *string `json:"L3OutTenant,omitempty"` + L3OutTenant *string `json:"L3OutTenant,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-_]*[a-zA-Z0-9]$"` // VMM domain within which Kubernetes clusters using this policy are nested. - NestedVmmDomain *string `json:"NestedVmmDomain,omitempty"` + NestedVmmDomain *string `json:"NestedVmmDomain,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-_]*[a-zA-Z0-9]$"` // Start of range of ACI Node Service IP subnets to use by Kubernetes clusters using this ACI CNI policy This is used for the service graph which is used for ACI PBR based load balancing. - NodeSvcSubnetStart *string `json:"NodeSvcSubnetStart,omitempty"` + NodeSvcSubnetStart *string `json:"NodeSvcSubnetStart,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy. NodeVlanRangeEnd *int64 `json:"NodeVlanRangeEnd,omitempty"` // Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy. @@ -984,13 +984,13 @@ func (o *KubernetesAciCniProfile) UnmarshalJSON(data []byte) (err error) { // Number of k8s clusters currently using this ACI CNI profile. NumberOfKubernetesClusters *int64 `json:"NumberOfKubernetesClusters,omitempty"` // Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy. - OpflexMulticastAddressRange *string `json:"OpflexMulticastAddressRange,omitempty"` + OpflexMulticastAddressRange *string `json:"OpflexMulticastAddressRange,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Start of range of Kubernetes pod IP subnets to use by Kubernetes clusters using this ACI CNI policy This should be a /8 IP subnet so that multiple /16 subnets can be assigned for pod subnets of Kubernetes clusters using this profile. - PodSubnetStart *string `json:"PodSubnetStart,omitempty"` + PodSubnetStart *string `json:"PodSubnetStart,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Start of range of Kubernetes Service IP subnets to use by Kubernetes clusters using this ACI CNI policy Currently this is fixed internally and read-only. - SvcSubnetStart *string `json:"SvcSubnetStart,omitempty"` + SvcSubnetStart *string `json:"SvcSubnetStart,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // VRF (Virtual Routing and Forwarding) domain to be used within ACI fabric by all k8s clusters using this policy. - Vrf *string `json:"Vrf,omitempty"` + Vrf *string `json:"Vrf,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-_]*[a-zA-Z0-9]$"` // An array of relationships to kubernetesAciCniTenantClusterAllocation resources. ClusterAciAllocations []KubernetesAciCniTenantClusterAllocationRelationship `json:"ClusterAciAllocations,omitempty"` // An array of relationships to kubernetesClusterProfile resources. diff --git a/intersight_gosdk/model_kubernetes_aci_cni_profile_list.go b/intersight_gosdk/model_kubernetes_aci_cni_profile_list.go index 805ace23c5..2b58000d2e 100644 --- a/intersight_gosdk/model_kubernetes_aci_cni_profile_list.go +++ b/intersight_gosdk/model_kubernetes_aci_cni_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_aci_cni_profile_relationship.go b/intersight_gosdk/model_kubernetes_aci_cni_profile_relationship.go index f7d5aa8857..34fe3173f8 100644 --- a/intersight_gosdk/model_kubernetes_aci_cni_profile_relationship.go +++ b/intersight_gosdk/model_kubernetes_aci_cni_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_aci_cni_profile_response.go b/intersight_gosdk/model_kubernetes_aci_cni_profile_response.go index 2acb16575c..567b82993b 100644 --- a/intersight_gosdk/model_kubernetes_aci_cni_profile_response.go +++ b/intersight_gosdk/model_kubernetes_aci_cni_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation.go b/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation.go index af17b06c79..654be90952 100644 --- a/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation.go +++ b/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,13 +29,13 @@ type KubernetesAciCniTenantClusterAllocation struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // CIDR allocated for ACI node service IPs in this tenant cluster. - NodeSvcIpSubnet *string `json:"NodeSvcIpSubnet,omitempty"` + NodeSvcIpSubnet *string `json:"NodeSvcIpSubnet,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // CIDR allocated for pod IPs in this tenant cluster. - PodIpSubnet *string `json:"PodIpSubnet,omitempty"` + PodIpSubnet *string `json:"PodIpSubnet,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // End of VLAN range allocated to this tenant cluster. - VlanEnd *string `json:"VlanEnd,omitempty"` + VlanEnd *string `json:"VlanEnd,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Start of VLAN range allocated to this tenant cluster. - VlanStart *string `json:"VlanStart,omitempty"` + VlanStart *string `json:"VlanStart,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` AdditionalProperties map[string]interface{} } @@ -391,13 +391,13 @@ func (o *KubernetesAciCniTenantClusterAllocation) UnmarshalJSON(data []byte) (er // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // CIDR allocated for ACI node service IPs in this tenant cluster. - NodeSvcIpSubnet *string `json:"NodeSvcIpSubnet,omitempty"` + NodeSvcIpSubnet *string `json:"NodeSvcIpSubnet,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // CIDR allocated for pod IPs in this tenant cluster. - PodIpSubnet *string `json:"PodIpSubnet,omitempty"` + PodIpSubnet *string `json:"PodIpSubnet,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // End of VLAN range allocated to this tenant cluster. - VlanEnd *string `json:"VlanEnd,omitempty"` + VlanEnd *string `json:"VlanEnd,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Start of VLAN range allocated to this tenant cluster. - VlanStart *string `json:"VlanStart,omitempty"` + VlanStart *string `json:"VlanStart,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` } diff --git a/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation_list.go b/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation_list.go index 0d1cdeee4e..68c1ae01e8 100644 --- a/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation_list.go +++ b/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation_relationship.go b/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation_relationship.go index 64cf7a8e0e..96aaf9aead 100644 --- a/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation_relationship.go +++ b/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation_response.go b/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation_response.go index ea25cecf17..3b037249d8 100644 --- a/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation_response.go +++ b/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_action_info.go b/intersight_gosdk/model_kubernetes_action_info.go index 44bf6f3132..45e0e679c1 100644 --- a/intersight_gosdk/model_kubernetes_action_info.go +++ b/intersight_gosdk/model_kubernetes_action_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_addon.go b/intersight_gosdk/model_kubernetes_addon.go index d9bc32ccb7..4108fd3c7d 100644 --- a/intersight_gosdk/model_kubernetes_addon.go +++ b/intersight_gosdk/model_kubernetes_addon.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_addon_configuration.go b/intersight_gosdk/model_kubernetes_addon_configuration.go index b4262bdf8a..d96282f5e4 100644 --- a/intersight_gosdk/model_kubernetes_addon_configuration.go +++ b/intersight_gosdk/model_kubernetes_addon_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_addon_definition.go b/intersight_gosdk/model_kubernetes_addon_definition.go index 187cf8c500..8c86d6e7ab 100644 --- a/intersight_gosdk/model_kubernetes_addon_definition.go +++ b/intersight_gosdk/model_kubernetes_addon_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_addon_definition_list.go b/intersight_gosdk/model_kubernetes_addon_definition_list.go index ac4769e796..6cb8f982cd 100644 --- a/intersight_gosdk/model_kubernetes_addon_definition_list.go +++ b/intersight_gosdk/model_kubernetes_addon_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_addon_definition_relationship.go b/intersight_gosdk/model_kubernetes_addon_definition_relationship.go index c3c75ca803..e15b04667e 100644 --- a/intersight_gosdk/model_kubernetes_addon_definition_relationship.go +++ b/intersight_gosdk/model_kubernetes_addon_definition_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_addon_definition_response.go b/intersight_gosdk/model_kubernetes_addon_definition_response.go index fc810bf43f..2dabbeb42e 100644 --- a/intersight_gosdk/model_kubernetes_addon_definition_response.go +++ b/intersight_gosdk/model_kubernetes_addon_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_addon_policy.go b/intersight_gosdk/model_kubernetes_addon_policy.go index b5c080f40d..7f323f2656 100644 --- a/intersight_gosdk/model_kubernetes_addon_policy.go +++ b/intersight_gosdk/model_kubernetes_addon_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_addon_policy_list.go b/intersight_gosdk/model_kubernetes_addon_policy_list.go index 89f3be7918..fd695843f4 100644 --- a/intersight_gosdk/model_kubernetes_addon_policy_list.go +++ b/intersight_gosdk/model_kubernetes_addon_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_addon_policy_response.go b/intersight_gosdk/model_kubernetes_addon_policy_response.go index a7b8e20f6a..088083c826 100644 --- a/intersight_gosdk/model_kubernetes_addon_policy_response.go +++ b/intersight_gosdk/model_kubernetes_addon_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_addon_repository.go b/intersight_gosdk/model_kubernetes_addon_repository.go index 0d0cc5c8fa..0863ec9a64 100644 --- a/intersight_gosdk/model_kubernetes_addon_repository.go +++ b/intersight_gosdk/model_kubernetes_addon_repository.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_addon_repository_list.go b/intersight_gosdk/model_kubernetes_addon_repository_list.go index 4027959d41..849efe8b5b 100644 --- a/intersight_gosdk/model_kubernetes_addon_repository_list.go +++ b/intersight_gosdk/model_kubernetes_addon_repository_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_addon_repository_response.go b/intersight_gosdk/model_kubernetes_addon_repository_response.go index 402e552c5a..411c844d18 100644 --- a/intersight_gosdk/model_kubernetes_addon_repository_response.go +++ b/intersight_gosdk/model_kubernetes_addon_repository_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_addon_version_reference.go b/intersight_gosdk/model_kubernetes_addon_version_reference.go index 7a5c3b8f56..20449fc266 100644 --- a/intersight_gosdk/model_kubernetes_addon_version_reference.go +++ b/intersight_gosdk/model_kubernetes_addon_version_reference.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_baremetal_network_info.go b/intersight_gosdk/model_kubernetes_baremetal_network_info.go index 21805e8ba6..f22259716c 100644 --- a/intersight_gosdk/model_kubernetes_baremetal_network_info.go +++ b/intersight_gosdk/model_kubernetes_baremetal_network_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_baremetal_node_profile.go b/intersight_gosdk/model_kubernetes_baremetal_node_profile.go index 416c1fdda8..10266483f8 100644 --- a/intersight_gosdk/model_kubernetes_baremetal_node_profile.go +++ b/intersight_gosdk/model_kubernetes_baremetal_node_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_baremetal_node_profile_list.go b/intersight_gosdk/model_kubernetes_baremetal_node_profile_list.go index 9c9fb29a88..3242799ee4 100644 --- a/intersight_gosdk/model_kubernetes_baremetal_node_profile_list.go +++ b/intersight_gosdk/model_kubernetes_baremetal_node_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_baremetal_node_profile_response.go b/intersight_gosdk/model_kubernetes_baremetal_node_profile_response.go index a4a7f50e18..5a5df57dd9 100644 --- a/intersight_gosdk/model_kubernetes_baremetal_node_profile_response.go +++ b/intersight_gosdk/model_kubernetes_baremetal_node_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_base_gpu_product.go b/intersight_gosdk/model_kubernetes_base_gpu_product.go index f7dd521006..eec01ea3e0 100644 --- a/intersight_gosdk/model_kubernetes_base_gpu_product.go +++ b/intersight_gosdk/model_kubernetes_base_gpu_product.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_base_infrastructure_provider.go b/intersight_gosdk/model_kubernetes_base_infrastructure_provider.go index d69ca78e1e..ab2d83a308 100644 --- a/intersight_gosdk/model_kubernetes_base_infrastructure_provider.go +++ b/intersight_gosdk/model_kubernetes_base_infrastructure_provider.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_base_infrastructure_provider_relationship.go b/intersight_gosdk/model_kubernetes_base_infrastructure_provider_relationship.go index 23e0a2292e..1a94d67359 100644 --- a/intersight_gosdk/model_kubernetes_base_infrastructure_provider_relationship.go +++ b/intersight_gosdk/model_kubernetes_base_infrastructure_provider_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_base_product.go b/intersight_gosdk/model_kubernetes_base_product.go index f5bcbdd46c..97b1af7ea8 100644 --- a/intersight_gosdk/model_kubernetes_base_product.go +++ b/intersight_gosdk/model_kubernetes_base_product.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_base_virtual_machine_infra_config.go b/intersight_gosdk/model_kubernetes_base_virtual_machine_infra_config.go index 63c0ba11ff..ddba56fdfe 100644 --- a/intersight_gosdk/model_kubernetes_base_virtual_machine_infra_config.go +++ b/intersight_gosdk/model_kubernetes_base_virtual_machine_infra_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_calico_config.go b/intersight_gosdk/model_kubernetes_calico_config.go index 3fb49e933f..8fea9d2247 100644 --- a/intersight_gosdk/model_kubernetes_calico_config.go +++ b/intersight_gosdk/model_kubernetes_calico_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_catalog.go b/intersight_gosdk/model_kubernetes_catalog.go index 14c14a132b..257c772ada 100644 --- a/intersight_gosdk/model_kubernetes_catalog.go +++ b/intersight_gosdk/model_kubernetes_catalog.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_catalog_list.go b/intersight_gosdk/model_kubernetes_catalog_list.go index a99d52b9fa..5426618ca1 100644 --- a/intersight_gosdk/model_kubernetes_catalog_list.go +++ b/intersight_gosdk/model_kubernetes_catalog_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_catalog_relationship.go b/intersight_gosdk/model_kubernetes_catalog_relationship.go index 8e4c66bf45..7e7cbe1360 100644 --- a/intersight_gosdk/model_kubernetes_catalog_relationship.go +++ b/intersight_gosdk/model_kubernetes_catalog_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_catalog_response.go b/intersight_gosdk/model_kubernetes_catalog_response.go index 25e6cf07d8..ef4c07c06a 100644 --- a/intersight_gosdk/model_kubernetes_catalog_response.go +++ b/intersight_gosdk/model_kubernetes_catalog_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_cluster.go b/intersight_gosdk/model_kubernetes_cluster.go index cb812eaf59..3e72aaad1c 100644 --- a/intersight_gosdk/model_kubernetes_cluster.go +++ b/intersight_gosdk/model_kubernetes_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_cluster_addon_profile.go b/intersight_gosdk/model_kubernetes_cluster_addon_profile.go index f5cb901024..309ba1ae95 100644 --- a/intersight_gosdk/model_kubernetes_cluster_addon_profile.go +++ b/intersight_gosdk/model_kubernetes_cluster_addon_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_cluster_addon_profile_list.go b/intersight_gosdk/model_kubernetes_cluster_addon_profile_list.go index eb81fe1c4a..6c1c28e5d4 100644 --- a/intersight_gosdk/model_kubernetes_cluster_addon_profile_list.go +++ b/intersight_gosdk/model_kubernetes_cluster_addon_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_cluster_addon_profile_relationship.go b/intersight_gosdk/model_kubernetes_cluster_addon_profile_relationship.go index a998f3cb9b..6c16c55e1f 100644 --- a/intersight_gosdk/model_kubernetes_cluster_addon_profile_relationship.go +++ b/intersight_gosdk/model_kubernetes_cluster_addon_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_cluster_addon_profile_response.go b/intersight_gosdk/model_kubernetes_cluster_addon_profile_response.go index a790e67711..ad868316f6 100644 --- a/intersight_gosdk/model_kubernetes_cluster_addon_profile_response.go +++ b/intersight_gosdk/model_kubernetes_cluster_addon_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_cluster_certificate_configuration.go b/intersight_gosdk/model_kubernetes_cluster_certificate_configuration.go index b9868c3815..2f9d3f873c 100644 --- a/intersight_gosdk/model_kubernetes_cluster_certificate_configuration.go +++ b/intersight_gosdk/model_kubernetes_cluster_certificate_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_cluster_list.go b/intersight_gosdk/model_kubernetes_cluster_list.go index e495ee0e64..ea7440a1d6 100644 --- a/intersight_gosdk/model_kubernetes_cluster_list.go +++ b/intersight_gosdk/model_kubernetes_cluster_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_cluster_management_config.go b/intersight_gosdk/model_kubernetes_cluster_management_config.go index 444a43fa2c..b939a1ddb6 100644 --- a/intersight_gosdk/model_kubernetes_cluster_management_config.go +++ b/intersight_gosdk/model_kubernetes_cluster_management_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_cluster_profile.go b/intersight_gosdk/model_kubernetes_cluster_profile.go index 551443df16..72cbdb3e8e 100644 --- a/intersight_gosdk/model_kubernetes_cluster_profile.go +++ b/intersight_gosdk/model_kubernetes_cluster_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_cluster_profile_list.go b/intersight_gosdk/model_kubernetes_cluster_profile_list.go index 869e72328c..7a47687102 100644 --- a/intersight_gosdk/model_kubernetes_cluster_profile_list.go +++ b/intersight_gosdk/model_kubernetes_cluster_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_cluster_profile_relationship.go b/intersight_gosdk/model_kubernetes_cluster_profile_relationship.go index 5c0f682f48..8ac27a4946 100644 --- a/intersight_gosdk/model_kubernetes_cluster_profile_relationship.go +++ b/intersight_gosdk/model_kubernetes_cluster_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_cluster_profile_response.go b/intersight_gosdk/model_kubernetes_cluster_profile_response.go index 9f74eb1641..1ca80c5a3e 100644 --- a/intersight_gosdk/model_kubernetes_cluster_profile_response.go +++ b/intersight_gosdk/model_kubernetes_cluster_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_cluster_relationship.go b/intersight_gosdk/model_kubernetes_cluster_relationship.go index 3b5c22cdef..e35053ff33 100644 --- a/intersight_gosdk/model_kubernetes_cluster_relationship.go +++ b/intersight_gosdk/model_kubernetes_cluster_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_cluster_response.go b/intersight_gosdk/model_kubernetes_cluster_response.go index 246496679b..9487eac02d 100644 --- a/intersight_gosdk/model_kubernetes_cluster_response.go +++ b/intersight_gosdk/model_kubernetes_cluster_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_cni_config.go b/intersight_gosdk/model_kubernetes_cni_config.go index 72c245aff2..6d4843146d 100644 --- a/intersight_gosdk/model_kubernetes_cni_config.go +++ b/intersight_gosdk/model_kubernetes_cni_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_config_result.go b/intersight_gosdk/model_kubernetes_config_result.go index 86b0ad51fc..eb9cbf7cc7 100644 --- a/intersight_gosdk/model_kubernetes_config_result.go +++ b/intersight_gosdk/model_kubernetes_config_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_config_result_entry.go b/intersight_gosdk/model_kubernetes_config_result_entry.go index 592b3a2847..0a20039a13 100644 --- a/intersight_gosdk/model_kubernetes_config_result_entry.go +++ b/intersight_gosdk/model_kubernetes_config_result_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_config_result_entry_list.go b/intersight_gosdk/model_kubernetes_config_result_entry_list.go index ee9b61dc44..df7f76e9fd 100644 --- a/intersight_gosdk/model_kubernetes_config_result_entry_list.go +++ b/intersight_gosdk/model_kubernetes_config_result_entry_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_config_result_entry_relationship.go b/intersight_gosdk/model_kubernetes_config_result_entry_relationship.go index e091598c27..f9f4f1b302 100644 --- a/intersight_gosdk/model_kubernetes_config_result_entry_relationship.go +++ b/intersight_gosdk/model_kubernetes_config_result_entry_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_config_result_entry_response.go b/intersight_gosdk/model_kubernetes_config_result_entry_response.go index 4bd7b730ec..a0d0add6f7 100644 --- a/intersight_gosdk/model_kubernetes_config_result_entry_response.go +++ b/intersight_gosdk/model_kubernetes_config_result_entry_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_config_result_list.go b/intersight_gosdk/model_kubernetes_config_result_list.go index 4b337202fe..69e8399fdf 100644 --- a/intersight_gosdk/model_kubernetes_config_result_list.go +++ b/intersight_gosdk/model_kubernetes_config_result_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_config_result_relationship.go b/intersight_gosdk/model_kubernetes_config_result_relationship.go index ee6b91f47c..3ff350485e 100644 --- a/intersight_gosdk/model_kubernetes_config_result_relationship.go +++ b/intersight_gosdk/model_kubernetes_config_result_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_config_result_response.go b/intersight_gosdk/model_kubernetes_config_result_response.go index 0eabb90d46..6414331bdf 100644 --- a/intersight_gosdk/model_kubernetes_config_result_response.go +++ b/intersight_gosdk/model_kubernetes_config_result_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_configuration.go b/intersight_gosdk/model_kubernetes_configuration.go index 94def160e3..a382c51433 100644 --- a/intersight_gosdk/model_kubernetes_configuration.go +++ b/intersight_gosdk/model_kubernetes_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_container_runtime_policy.go b/intersight_gosdk/model_kubernetes_container_runtime_policy.go index 606f43a078..64a80d24bc 100644 --- a/intersight_gosdk/model_kubernetes_container_runtime_policy.go +++ b/intersight_gosdk/model_kubernetes_container_runtime_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type KubernetesContainerRuntimePolicy struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Bridge IP (--bip) including Prefix (e.g., 172.17.0.5/24) that Docker will use for the default bridge network (docker0). Containers will connect to this if no other network is configured, not used by kubernetes pods because their network is managed by CNI. However this address space must not collide with other CIDRs on your networks, including the cluster's Service CIDR, Pod Network CIDR and IP Pools. - DockerBridgeNetworkCidr *string `json:"DockerBridgeNetworkCidr,omitempty"` + DockerBridgeNetworkCidr *string `json:"DockerBridgeNetworkCidr,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` DockerHttpProxy NullableKubernetesProxyConfig `json:"DockerHttpProxy,omitempty"` DockerHttpsProxy NullableKubernetesProxyConfig `json:"DockerHttpsProxy,omitempty"` DockerNoProxy []string `json:"DockerNoProxy,omitempty"` @@ -449,7 +449,7 @@ func (o *KubernetesContainerRuntimePolicy) UnmarshalJSON(data []byte) (err error // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Bridge IP (--bip) including Prefix (e.g., 172.17.0.5/24) that Docker will use for the default bridge network (docker0). Containers will connect to this if no other network is configured, not used by kubernetes pods because their network is managed by CNI. However this address space must not collide with other CIDRs on your networks, including the cluster's Service CIDR, Pod Network CIDR and IP Pools. - DockerBridgeNetworkCidr *string `json:"DockerBridgeNetworkCidr,omitempty"` + DockerBridgeNetworkCidr *string `json:"DockerBridgeNetworkCidr,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` DockerHttpProxy NullableKubernetesProxyConfig `json:"DockerHttpProxy,omitempty"` DockerHttpsProxy NullableKubernetesProxyConfig `json:"DockerHttpsProxy,omitempty"` DockerNoProxy []string `json:"DockerNoProxy,omitempty"` diff --git a/intersight_gosdk/model_kubernetes_container_runtime_policy_list.go b/intersight_gosdk/model_kubernetes_container_runtime_policy_list.go index 481c9aa3de..79b5777e46 100644 --- a/intersight_gosdk/model_kubernetes_container_runtime_policy_list.go +++ b/intersight_gosdk/model_kubernetes_container_runtime_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_container_runtime_policy_relationship.go b/intersight_gosdk/model_kubernetes_container_runtime_policy_relationship.go index ea2327f126..f93e6e74a2 100644 --- a/intersight_gosdk/model_kubernetes_container_runtime_policy_relationship.go +++ b/intersight_gosdk/model_kubernetes_container_runtime_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_container_runtime_policy_response.go b/intersight_gosdk/model_kubernetes_container_runtime_policy_response.go index 5f702b7bff..8afb9ee553 100644 --- a/intersight_gosdk/model_kubernetes_container_runtime_policy_response.go +++ b/intersight_gosdk/model_kubernetes_container_runtime_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_daemon_set.go b/intersight_gosdk/model_kubernetes_daemon_set.go index ba6c86c88a..0ff83070f5 100644 --- a/intersight_gosdk/model_kubernetes_daemon_set.go +++ b/intersight_gosdk/model_kubernetes_daemon_set.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_daemon_set_list.go b/intersight_gosdk/model_kubernetes_daemon_set_list.go index c2c45fb254..9c85445c5d 100644 --- a/intersight_gosdk/model_kubernetes_daemon_set_list.go +++ b/intersight_gosdk/model_kubernetes_daemon_set_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_daemon_set_response.go b/intersight_gosdk/model_kubernetes_daemon_set_response.go index 6586c3ec10..0ee862a67b 100644 --- a/intersight_gosdk/model_kubernetes_daemon_set_response.go +++ b/intersight_gosdk/model_kubernetes_daemon_set_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_daemon_set_status.go b/intersight_gosdk/model_kubernetes_daemon_set_status.go index d3f22959cc..7c4ce8ecc1 100644 --- a/intersight_gosdk/model_kubernetes_daemon_set_status.go +++ b/intersight_gosdk/model_kubernetes_daemon_set_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_deployment.go b/intersight_gosdk/model_kubernetes_deployment.go index 037e5f23e5..9314511c1c 100644 --- a/intersight_gosdk/model_kubernetes_deployment.go +++ b/intersight_gosdk/model_kubernetes_deployment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_deployment_list.go b/intersight_gosdk/model_kubernetes_deployment_list.go index 05710ed4d4..2487ad719b 100644 --- a/intersight_gosdk/model_kubernetes_deployment_list.go +++ b/intersight_gosdk/model_kubernetes_deployment_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_deployment_response.go b/intersight_gosdk/model_kubernetes_deployment_response.go index 83e5ffad1d..f9b3160e71 100644 --- a/intersight_gosdk/model_kubernetes_deployment_response.go +++ b/intersight_gosdk/model_kubernetes_deployment_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_deployment_status.go b/intersight_gosdk/model_kubernetes_deployment_status.go index 5c81233f19..430726b7d5 100644 --- a/intersight_gosdk/model_kubernetes_deployment_status.go +++ b/intersight_gosdk/model_kubernetes_deployment_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_essential_addon.go b/intersight_gosdk/model_kubernetes_essential_addon.go index 67c93b5489..6f9bf3986b 100644 --- a/intersight_gosdk/model_kubernetes_essential_addon.go +++ b/intersight_gosdk/model_kubernetes_essential_addon.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_esxi_virtual_machine_infra_config.go b/intersight_gosdk/model_kubernetes_esxi_virtual_machine_infra_config.go index 3107c24432..f0e4d95cb9 100644 --- a/intersight_gosdk/model_kubernetes_esxi_virtual_machine_infra_config.go +++ b/intersight_gosdk/model_kubernetes_esxi_virtual_machine_infra_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_ethernet.go b/intersight_gosdk/model_kubernetes_ethernet.go index 60ea5c374a..007d2b32f1 100644 --- a/intersight_gosdk/model_kubernetes_ethernet.go +++ b/intersight_gosdk/model_kubernetes_ethernet.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_ethernet_matcher.go b/intersight_gosdk/model_kubernetes_ethernet_matcher.go index 09d800ccc0..3ed41735af 100644 --- a/intersight_gosdk/model_kubernetes_ethernet_matcher.go +++ b/intersight_gosdk/model_kubernetes_ethernet_matcher.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_http_proxy_policy.go b/intersight_gosdk/model_kubernetes_http_proxy_policy.go index 6921cc09b5..af9634bfa4 100644 --- a/intersight_gosdk/model_kubernetes_http_proxy_policy.go +++ b/intersight_gosdk/model_kubernetes_http_proxy_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_http_proxy_policy_list.go b/intersight_gosdk/model_kubernetes_http_proxy_policy_list.go index 92d81f41d2..351eec3957 100644 --- a/intersight_gosdk/model_kubernetes_http_proxy_policy_list.go +++ b/intersight_gosdk/model_kubernetes_http_proxy_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_http_proxy_policy_relationship.go b/intersight_gosdk/model_kubernetes_http_proxy_policy_relationship.go index 5622c7b810..45cc241c8b 100644 --- a/intersight_gosdk/model_kubernetes_http_proxy_policy_relationship.go +++ b/intersight_gosdk/model_kubernetes_http_proxy_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_http_proxy_policy_response.go b/intersight_gosdk/model_kubernetes_http_proxy_policy_response.go index 22e13f3292..b37c0541bc 100644 --- a/intersight_gosdk/model_kubernetes_http_proxy_policy_response.go +++ b/intersight_gosdk/model_kubernetes_http_proxy_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_ingress.go b/intersight_gosdk/model_kubernetes_ingress.go index 36c475513b..7f2102ce40 100644 --- a/intersight_gosdk/model_kubernetes_ingress.go +++ b/intersight_gosdk/model_kubernetes_ingress.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_ingress_list.go b/intersight_gosdk/model_kubernetes_ingress_list.go index f361ed8de1..c20dd3638b 100644 --- a/intersight_gosdk/model_kubernetes_ingress_list.go +++ b/intersight_gosdk/model_kubernetes_ingress_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_ingress_response.go b/intersight_gosdk/model_kubernetes_ingress_response.go index 221ca3c8e1..8ebd605359 100644 --- a/intersight_gosdk/model_kubernetes_ingress_response.go +++ b/intersight_gosdk/model_kubernetes_ingress_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_ingress_status.go b/intersight_gosdk/model_kubernetes_ingress_status.go index 08439af416..f9fdc6ad3e 100644 --- a/intersight_gosdk/model_kubernetes_ingress_status.go +++ b/intersight_gosdk/model_kubernetes_ingress_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_instance_type_details.go b/intersight_gosdk/model_kubernetes_instance_type_details.go index 8a75a5f9ef..8b147abdef 100644 --- a/intersight_gosdk/model_kubernetes_instance_type_details.go +++ b/intersight_gosdk/model_kubernetes_instance_type_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_ip_v4_config.go b/intersight_gosdk/model_kubernetes_ip_v4_config.go index 8b689fc788..2f896e35a3 100644 --- a/intersight_gosdk/model_kubernetes_ip_v4_config.go +++ b/intersight_gosdk/model_kubernetes_ip_v4_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type KubernetesIpV4Config struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IPv4 Address in CIDR format. - Ip *string `json:"Ip,omitempty"` + Ip *string `json:"Ip,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` Lease *MoMoRef `json:"Lease,omitempty"` AdditionalProperties map[string]interface{} } @@ -269,7 +269,7 @@ func (o *KubernetesIpV4Config) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IPv4 Address in CIDR format. - Ip *string `json:"Ip,omitempty"` + Ip *string `json:"Ip,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` Lease *MoMoRef `json:"Lease,omitempty"` } diff --git a/intersight_gosdk/model_kubernetes_key_value.go b/intersight_gosdk/model_kubernetes_key_value.go index d21a382061..41bc6c365e 100644 --- a/intersight_gosdk/model_kubernetes_key_value.go +++ b/intersight_gosdk/model_kubernetes_key_value.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_kubernetes_resource.go b/intersight_gosdk/model_kubernetes_kubernetes_resource.go index b101f54f56..c8462a4328 100644 --- a/intersight_gosdk/model_kubernetes_kubernetes_resource.go +++ b/intersight_gosdk/model_kubernetes_kubernetes_resource.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_load_balancer.go b/intersight_gosdk/model_kubernetes_load_balancer.go index df281a349f..7ddc4162c0 100644 --- a/intersight_gosdk/model_kubernetes_load_balancer.go +++ b/intersight_gosdk/model_kubernetes_load_balancer.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_network_interface.go b/intersight_gosdk/model_kubernetes_network_interface.go index cad40cae21..564d260e04 100644 --- a/intersight_gosdk/model_kubernetes_network_interface.go +++ b/intersight_gosdk/model_kubernetes_network_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_network_interface_spec.go b/intersight_gosdk/model_kubernetes_network_interface_spec.go index 0e7419f192..0b860bdd81 100644 --- a/intersight_gosdk/model_kubernetes_network_interface_spec.go +++ b/intersight_gosdk/model_kubernetes_network_interface_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_network_policy.go b/intersight_gosdk/model_kubernetes_network_policy.go index 5368f0533f..3fece1e6be 100644 --- a/intersight_gosdk/model_kubernetes_network_policy.go +++ b/intersight_gosdk/model_kubernetes_network_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -32,9 +32,9 @@ type KubernetesNetworkPolicy struct { // Supported CNI type. Currently we only support Calico. * `Calico` - Calico CNI plugin as described in https://github.com/projectcalico/cni-plugin. * `Aci` - Cisco ACI Container Network Interface plugin. CniType *string `json:"CniType,omitempty"` // CIDR block to allocate Pod network IP addresses from. - PodNetworkCidr *string `json:"PodNetworkCidr,omitempty"` + PodNetworkCidr *string `json:"PodNetworkCidr,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // CIDR block to allocate cluster service IP addresses from. - ServiceCidr *string `json:"ServiceCidr,omitempty"` + ServiceCidr *string `json:"ServiceCidr,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // An array of relationships to kubernetesClusterProfile resources. ClusterProfiles []KubernetesClusterProfileRelationship `json:"ClusterProfiles,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` @@ -446,9 +446,9 @@ func (o *KubernetesNetworkPolicy) UnmarshalJSON(data []byte) (err error) { // Supported CNI type. Currently we only support Calico. * `Calico` - Calico CNI plugin as described in https://github.com/projectcalico/cni-plugin. * `Aci` - Cisco ACI Container Network Interface plugin. CniType *string `json:"CniType,omitempty"` // CIDR block to allocate Pod network IP addresses from. - PodNetworkCidr *string `json:"PodNetworkCidr,omitempty"` + PodNetworkCidr *string `json:"PodNetworkCidr,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // CIDR block to allocate cluster service IP addresses from. - ServiceCidr *string `json:"ServiceCidr,omitempty"` + ServiceCidr *string `json:"ServiceCidr,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // An array of relationships to kubernetesClusterProfile resources. ClusterProfiles []KubernetesClusterProfileRelationship `json:"ClusterProfiles,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` diff --git a/intersight_gosdk/model_kubernetes_network_policy_list.go b/intersight_gosdk/model_kubernetes_network_policy_list.go index 8a4d8018ee..836d0fe238 100644 --- a/intersight_gosdk/model_kubernetes_network_policy_list.go +++ b/intersight_gosdk/model_kubernetes_network_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_network_policy_relationship.go b/intersight_gosdk/model_kubernetes_network_policy_relationship.go index 44708e682b..ad1d56ac4b 100644 --- a/intersight_gosdk/model_kubernetes_network_policy_relationship.go +++ b/intersight_gosdk/model_kubernetes_network_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_network_policy_response.go b/intersight_gosdk/model_kubernetes_network_policy_response.go index 6330bc61b3..0408978571 100644 --- a/intersight_gosdk/model_kubernetes_network_policy_response.go +++ b/intersight_gosdk/model_kubernetes_network_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_node.go b/intersight_gosdk/model_kubernetes_node.go index 4108da52dc..202b8eb133 100644 --- a/intersight_gosdk/model_kubernetes_node.go +++ b/intersight_gosdk/model_kubernetes_node.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_node_address.go b/intersight_gosdk/model_kubernetes_node_address.go index 0bc19e3d68..f6d2437140 100644 --- a/intersight_gosdk/model_kubernetes_node_address.go +++ b/intersight_gosdk/model_kubernetes_node_address.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_node_group_label.go b/intersight_gosdk/model_kubernetes_node_group_label.go index caf0ab1bd5..f8b1080245 100644 --- a/intersight_gosdk/model_kubernetes_node_group_label.go +++ b/intersight_gosdk/model_kubernetes_node_group_label.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_node_group_profile.go b/intersight_gosdk/model_kubernetes_node_group_profile.go index 24163b1b2a..5692d480f5 100644 --- a/intersight_gosdk/model_kubernetes_node_group_profile.go +++ b/intersight_gosdk/model_kubernetes_node_group_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_node_group_profile_list.go b/intersight_gosdk/model_kubernetes_node_group_profile_list.go index 603dffb84f..02b64d7b00 100644 --- a/intersight_gosdk/model_kubernetes_node_group_profile_list.go +++ b/intersight_gosdk/model_kubernetes_node_group_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_node_group_profile_relationship.go b/intersight_gosdk/model_kubernetes_node_group_profile_relationship.go index 2b64d04411..2bccd3a573 100644 --- a/intersight_gosdk/model_kubernetes_node_group_profile_relationship.go +++ b/intersight_gosdk/model_kubernetes_node_group_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_node_group_profile_response.go b/intersight_gosdk/model_kubernetes_node_group_profile_response.go index f8300ef043..70785ca210 100644 --- a/intersight_gosdk/model_kubernetes_node_group_profile_response.go +++ b/intersight_gosdk/model_kubernetes_node_group_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_node_group_taint.go b/intersight_gosdk/model_kubernetes_node_group_taint.go index 4afc1c5fcf..6ed17fe03e 100644 --- a/intersight_gosdk/model_kubernetes_node_group_taint.go +++ b/intersight_gosdk/model_kubernetes_node_group_taint.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_node_info.go b/intersight_gosdk/model_kubernetes_node_info.go index d8e3e9a5f4..3cd832a7ba 100644 --- a/intersight_gosdk/model_kubernetes_node_info.go +++ b/intersight_gosdk/model_kubernetes_node_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_node_list.go b/intersight_gosdk/model_kubernetes_node_list.go index 295aa04f3f..68a32df2f7 100644 --- a/intersight_gosdk/model_kubernetes_node_list.go +++ b/intersight_gosdk/model_kubernetes_node_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_node_profile.go b/intersight_gosdk/model_kubernetes_node_profile.go index a10a1d0e9d..4765805bf1 100644 --- a/intersight_gosdk/model_kubernetes_node_profile.go +++ b/intersight_gosdk/model_kubernetes_node_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_node_profile_relationship.go b/intersight_gosdk/model_kubernetes_node_profile_relationship.go index bae0a23fc2..525ff1875e 100644 --- a/intersight_gosdk/model_kubernetes_node_profile_relationship.go +++ b/intersight_gosdk/model_kubernetes_node_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_node_response.go b/intersight_gosdk/model_kubernetes_node_response.go index 23de45997f..5d84889efb 100644 --- a/intersight_gosdk/model_kubernetes_node_response.go +++ b/intersight_gosdk/model_kubernetes_node_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_node_spec.go b/intersight_gosdk/model_kubernetes_node_spec.go index 0c5c3fb9a8..6c091c3357 100644 --- a/intersight_gosdk/model_kubernetes_node_spec.go +++ b/intersight_gosdk/model_kubernetes_node_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_node_status.go b/intersight_gosdk/model_kubernetes_node_status.go index 8e19e35973..7f885a7b6e 100644 --- a/intersight_gosdk/model_kubernetes_node_status.go +++ b/intersight_gosdk/model_kubernetes_node_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_nvidia_gpu_product.go b/intersight_gosdk/model_kubernetes_nvidia_gpu_product.go index 84c9b6f47d..c08d7219e0 100644 --- a/intersight_gosdk/model_kubernetes_nvidia_gpu_product.go +++ b/intersight_gosdk/model_kubernetes_nvidia_gpu_product.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_nvidia_gpu_product_list.go b/intersight_gosdk/model_kubernetes_nvidia_gpu_product_list.go index 253a7dd6ed..00208bf60b 100644 --- a/intersight_gosdk/model_kubernetes_nvidia_gpu_product_list.go +++ b/intersight_gosdk/model_kubernetes_nvidia_gpu_product_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_nvidia_gpu_product_response.go b/intersight_gosdk/model_kubernetes_nvidia_gpu_product_response.go index e0644c72c2..8110270f0d 100644 --- a/intersight_gosdk/model_kubernetes_nvidia_gpu_product_response.go +++ b/intersight_gosdk/model_kubernetes_nvidia_gpu_product_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_object_meta.go b/intersight_gosdk/model_kubernetes_object_meta.go index 7c325c79ee..f0a65e083f 100644 --- a/intersight_gosdk/model_kubernetes_object_meta.go +++ b/intersight_gosdk/model_kubernetes_object_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_ovs_bond.go b/intersight_gosdk/model_kubernetes_ovs_bond.go index 9a5439f88b..9cb1ba10fc 100644 --- a/intersight_gosdk/model_kubernetes_ovs_bond.go +++ b/intersight_gosdk/model_kubernetes_ovs_bond.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_pod.go b/intersight_gosdk/model_kubernetes_pod.go index 3e6a92131c..0628600a7c 100644 --- a/intersight_gosdk/model_kubernetes_pod.go +++ b/intersight_gosdk/model_kubernetes_pod.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_pod_list.go b/intersight_gosdk/model_kubernetes_pod_list.go index f7c65d6a2f..c7cc0cc2a8 100644 --- a/intersight_gosdk/model_kubernetes_pod_list.go +++ b/intersight_gosdk/model_kubernetes_pod_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_pod_response.go b/intersight_gosdk/model_kubernetes_pod_response.go index c734e481cd..5e9ad5f597 100644 --- a/intersight_gosdk/model_kubernetes_pod_response.go +++ b/intersight_gosdk/model_kubernetes_pod_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_pod_status.go b/intersight_gosdk/model_kubernetes_pod_status.go index 2280d443fe..16036628e5 100644 --- a/intersight_gosdk/model_kubernetes_pod_status.go +++ b/intersight_gosdk/model_kubernetes_pod_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_proxy_config.go b/intersight_gosdk/model_kubernetes_proxy_config.go index 5643fa2f7e..f53c9db898 100644 --- a/intersight_gosdk/model_kubernetes_proxy_config.go +++ b/intersight_gosdk/model_kubernetes_proxy_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type KubernetesProxyConfig struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // HTTP/HTTPS Proxy server FQDN or IP. - Hostname *string `json:"Hostname,omitempty"` + Hostname *string `json:"Hostname,omitempty" validate:"regexp=^[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?$|^[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?(\\\\.[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?)*(\\\\.[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?)$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password for the HTTP/HTTPS Proxy. @@ -418,7 +418,7 @@ func (o *KubernetesProxyConfig) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // HTTP/HTTPS Proxy server FQDN or IP. - Hostname *string `json:"Hostname,omitempty"` + Hostname *string `json:"Hostname,omitempty" validate:"regexp=^[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?$|^[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?(\\\\.[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?)*(\\\\.[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?)$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password for the HTTP/HTTPS Proxy. diff --git a/intersight_gosdk/model_kubernetes_route.go b/intersight_gosdk/model_kubernetes_route.go index 22c233ba5f..a98abab95b 100644 --- a/intersight_gosdk/model_kubernetes_route.go +++ b/intersight_gosdk/model_kubernetes_route.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type KubernetesRoute struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The destination subnet, if set to 0.0.0.0/0 then the Route is considered a default route. - To *string `json:"To,omitempty"` + To *string `json:"To,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Via is the gateway for traffic destined for the subnet in the To property. - Via *string `json:"Via,omitempty"` + Via *string `json:"Via,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` AdditionalProperties map[string]interface{} } @@ -270,9 +270,9 @@ func (o *KubernetesRoute) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The destination subnet, if set to 0.0.0.0/0 then the Route is considered a default route. - To *string `json:"To,omitempty"` + To *string `json:"To,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Via is the gateway for traffic destined for the subnet in the To property. - Via *string `json:"Via,omitempty"` + Via *string `json:"Via,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` } varKubernetesRouteWithoutEmbeddedStruct := KubernetesRouteWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_kubernetes_service.go b/intersight_gosdk/model_kubernetes_service.go index 8d772c6d40..23aebf4125 100644 --- a/intersight_gosdk/model_kubernetes_service.go +++ b/intersight_gosdk/model_kubernetes_service.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_service_list.go b/intersight_gosdk/model_kubernetes_service_list.go index 04fe3a6cf1..c29b7e09e8 100644 --- a/intersight_gosdk/model_kubernetes_service_list.go +++ b/intersight_gosdk/model_kubernetes_service_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_service_response.go b/intersight_gosdk/model_kubernetes_service_response.go index 8f7a990f67..d2c0c1aa06 100644 --- a/intersight_gosdk/model_kubernetes_service_response.go +++ b/intersight_gosdk/model_kubernetes_service_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_service_status.go b/intersight_gosdk/model_kubernetes_service_status.go index 301df05615..a2a0c011a3 100644 --- a/intersight_gosdk/model_kubernetes_service_status.go +++ b/intersight_gosdk/model_kubernetes_service_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_stateful_set.go b/intersight_gosdk/model_kubernetes_stateful_set.go index a7a9032755..040af1ce73 100644 --- a/intersight_gosdk/model_kubernetes_stateful_set.go +++ b/intersight_gosdk/model_kubernetes_stateful_set.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_stateful_set_list.go b/intersight_gosdk/model_kubernetes_stateful_set_list.go index 0bd7b5118d..68f161d1b2 100644 --- a/intersight_gosdk/model_kubernetes_stateful_set_list.go +++ b/intersight_gosdk/model_kubernetes_stateful_set_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_stateful_set_response.go b/intersight_gosdk/model_kubernetes_stateful_set_response.go index b083348750..2217688c6a 100644 --- a/intersight_gosdk/model_kubernetes_stateful_set_response.go +++ b/intersight_gosdk/model_kubernetes_stateful_set_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_stateful_set_status.go b/intersight_gosdk/model_kubernetes_stateful_set_status.go index a69724f4fc..5827036d81 100644 --- a/intersight_gosdk/model_kubernetes_stateful_set_status.go +++ b/intersight_gosdk/model_kubernetes_stateful_set_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_sys_config_policy.go b/intersight_gosdk/model_kubernetes_sys_config_policy.go index 06ead2f1de..27f1b678f8 100644 --- a/intersight_gosdk/model_kubernetes_sys_config_policy.go +++ b/intersight_gosdk/model_kubernetes_sys_config_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type KubernetesSysConfigPolicy struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The DNS Search Domain Name. - DnsDomainName *string `json:"DnsDomainName,omitempty"` + DnsDomainName *string `json:"DnsDomainName,omitempty" validate:"regexp=^$|^([a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\\\\.)+[a-zA-Z]{2,63}$"` DnsServers []string `json:"DnsServers,omitempty"` NtpServers []string `json:"NtpServers,omitempty"` // The timezone of the node's system clock. * `Pacific/Niue` - * `Africa/Abidjan` - * `Africa/Accra` - * `Africa/Addis_Ababa` - * `Africa/Algiers` - * `Africa/Asmara` - * `Africa/Bamako` - * `Africa/Bangui` - * `Africa/Banjul` - * `Africa/Bissau` - * `Africa/Blantyre` - * `Africa/Brazzaville` - * `Africa/Bujumbura` - * `Africa/Cairo` - * `Africa/Casablanca` - * `Africa/Ceuta` - * `Africa/Conakry` - * `Africa/Dakar` - * `Africa/Dar_es_Salaam` - * `Africa/Djibouti` - * `Africa/Douala` - * `Africa/El_Aaiun` - * `Africa/Freetown` - * `Africa/Gaborone` - * `Africa/Harare` - * `Africa/Johannesburg` - * `Africa/Juba` - * `Africa/Kampala` - * `Africa/Khartoum` - * `Africa/Kigali` - * `Africa/Kinshasa` - * `Africa/Lagos` - * `Africa/Libreville` - * `Africa/Lome` - * `Africa/Luanda` - * `Africa/Lubumbashi` - * `Africa/Lusaka` - * `Africa/Malabo` - * `Africa/Maputo` - * `Africa/Maseru` - * `Africa/Mbabane` - * `Africa/Mogadishu` - * `Africa/Monrovia` - * `Africa/Nairobi` - * `Africa/Ndjamena` - * `Africa/Niamey` - * `Africa/Nouakchott` - * `Africa/Ouagadougou` - * `Africa/Porto-Novo` - * `Africa/Sao_Tome` - * `Africa/Tripoli` - * `Africa/Tunis` - * `Africa/Windhoek` - * `America/Adak` - * `America/Anchorage` - * `America/Anguilla` - * `America/Antigua` - * `America/Araguaina` - * `America/Argentina/Buenos_Aires` - * `America/Argentina/Catamarca` - * `America/Argentina/Cordoba` - * `America/Argentina/Jujuy` - * `America/Argentina/La_Rioja` - * `America/Argentina/Mendoza` - * `America/Argentina/Rio_Gallegos` - * `America/Argentina/Salta` - * `America/Argentina/San_Juan` - * `America/Argentina/San_Luis` - * `America/Argentina/Tucuman` - * `America/Argentina/Ushuaia` - * `America/Aruba` - * `America/Asuncion` - * `America/Atikokan` - * `America/Bahia` - * `America/Bahia_Banderas` - * `America/Barbados` - * `America/Belem` - * `America/Belize` - * `America/Blanc-Sablon` - * `America/Boa_Vista` - * `America/Bogota` - * `America/Boise` - * `America/Cambridge_Bay` - * `America/Campo_Grande` - * `America/Cancun` - * `America/Caracas` - * `America/Cayenne` - * `America/Cayman` - * `America/Chicago` - * `America/Chihuahua` - * `America/Costa_Rica` - * `America/Creston` - * `America/Cuiaba` - * `America/Curacao` - * `America/Danmarkshavn` - * `America/Dawson` - * `America/Dawson_Creek` - * `America/Denver` - * `America/Detroit` - * `America/Dominica` - * `America/Edmonton` - * `America/Eirunepe` - * `America/El_Salvador` - * `America/Fortaleza` - * `America/Glace_Bay` - * `America/Godthab` - * `America/Goose_Bay` - * `America/Grand_Turk` - * `America/Grenada` - * `America/Guadeloupe` - * `America/Guatemala` - * `America/Guayaquil` - * `America/Guyana` - * `America/Halifax` - * `America/Havana` - * `America/Hermosillo` - * `America/Indiana/Indianapolis` - * `America/Indiana/Knox` - * `America/Indiana/Marengo` - * `America/Indiana/Petersburg` - * `America/Indiana/Tell_City` - * `America/Indiana/Vevay` - * `America/Indiana/Vincennes` - * `America/Indiana/Winamac` - * `America/Inuvik` - * `America/Iqaluit` - * `America/Jamaica` - * `America/Juneau` - * `America/Kentucky/Louisville` - * `America/Kentucky/Monticello` - * `America/Kralendijk` - * `America/La_Paz` - * `America/Lima` - * `America/Los_Angeles` - * `America/Lower_Princes` - * `America/Maceio` - * `America/Managua` - * `America/Manaus` - * `America/Marigot` - * `America/Martinique` - * `America/Matamoros` - * `America/Mazatlan` - * `America/Menominee` - * `America/Merida` - * `America/Metlakatla` - * `America/Mexico_City` - * `America/Miquelon` - * `America/Moncton` - * `America/Monterrey` - * `America/Montevideo` - * `America/Montreal` - * `America/Montserrat` - * `America/Nassau` - * `America/New_York` - * `America/Nipigon` - * `America/Nome` - * `America/Noronha` - * `America/North_Dakota/Beulah` - * `America/North_Dakota/Center` - * `America/North_Dakota/New_Salem` - * `America/Ojinaga` - * `America/Panama` - * `America/Pangnirtung` - * `America/Paramaribo` - * `America/Phoenix` - * `America/Port-au-Prince` - * `America/Port_of_Spain` - * `America/Porto_Velho` - * `America/Puerto_Rico` - * `America/Rainy_River` - * `America/Rankin_Inlet` - * `America/Recife` - * `America/Regina` - * `America/Resolute` - * `America/Rio_Branco` - * `America/Santa_Isabel` - * `America/Santarem` - * `America/Santiago` - * `America/Santo_Domingo` - * `America/Sao_Paulo` - * `America/Scoresbysund` - * `America/Shiprock` - * `America/Sitka` - * `America/St_Barthelemy` - * `America/St_Johns` - * `America/St_Kitts` - * `America/St_Lucia` - * `America/St_Thomas` - * `America/St_Vincent` - * `America/Swift_Current` - * `America/Tegucigalpa` - * `America/Thule` - * `America/Thunder_Bay` - * `America/Tijuana` - * `America/Toronto` - * `America/Tortola` - * `America/Vancouver` - * `America/Whitehorse` - * `America/Winnipeg` - * `America/Yakutat` - * `America/Yellowknife` - * `Antarctica/Casey` - * `Antarctica/Davis` - * `Antarctica/DumontDUrville` - * `Antarctica/Macquarie` - * `Antarctica/Mawson` - * `Antarctica/McMurdo` - * `Antarctica/Palmer` - * `Antarctica/Rothera` - * `Antarctica/South_Pole` - * `Antarctica/Syowa` - * `Antarctica/Troll` - * `Antarctica/Vostok` - * `Arctic/Longyearbyen` - * `Asia/Aden` - * `Asia/Almaty` - * `Asia/Amman` - * `Asia/Anadyr` - * `Asia/Aqtau` - * `Asia/Aqtobe` - * `Asia/Ashgabat` - * `Asia/Baghdad` - * `Asia/Bahrain` - * `Asia/Baku` - * `Asia/Bangkok` - * `Asia/Beirut` - * `Asia/Bishkek` - * `Asia/Brunei` - * `Asia/Calcutta` - * `Asia/Choibalsan` - * `Asia/Chongqing` - * `Asia/Colombo` - * `Asia/Damascus` - * `Asia/Dhaka` - * `Asia/Dili` - * `Asia/Dubai` - * `Asia/Dushanbe` - * `Asia/Gaza` - * `Asia/Harbin` - * `Asia/Hebron` - * `Asia/Ho_Chi_Minh` - * `Asia/Hong_Kong` - * `Asia/Hovd` - * `Asia/Irkutsk` - * `Asia/Jakarta` - * `Asia/Jayapura` - * `Asia/Jerusalem` - * `Asia/Kabul` - * `Asia/Kamchatka` - * `Asia/Karachi` - * `Asia/Kashgar` - * `Asia/Kathmandu` - * `Asia/Katmandu` - * `Asia/Khandyga` - * `Asia/Kolkata` - * `Asia/Krasnoyarsk` - * `Asia/Kuala_Lumpur` - * `Asia/Kuching` - * `Asia/Kuwait` - * `Asia/Macau` - * `Asia/Magadan` - * `Asia/Makassar` - * `Asia/Manila` - * `Asia/Muscat` - * `Asia/Nicosia` - * `Asia/Novokuznetsk` - * `Asia/Novosibirsk` - * `Asia/Omsk` - * `Asia/Oral` - * `Asia/Phnom_Penh` - * `Asia/Pontianak` - * `Asia/Pyongyang` - * `Asia/Qatar` - * `Asia/Qyzylorda` - * `Asia/Rangoon` - * `Asia/Riyadh` - * `Asia/Saigon` - * `Asia/Sakhalin` - * `Asia/Samarkand` - * `Asia/Seoul` - * `Asia/Shanghai` - * `Asia/Singapore` - * `Asia/Taipei` - * `Asia/Tashkent` - * `Asia/Tbilisi` - * `Asia/Tehran` - * `Asia/Thimphu` - * `Asia/Tokyo` - * `Asia/Ulaanbaatar` - * `Asia/Urumqi` - * `Asia/Ust-Nera` - * `Asia/Vientiane` - * `Asia/Vladivostok` - * `Asia/Yakutsk` - * `Asia/Yekaterinburg` - * `Asia/Yerevan` - * `Atlantic/Azores` - * `Atlantic/Bermuda` - * `Atlantic/Canary` - * `Atlantic/Cape_Verde` - * `Atlantic/Faroe` - * `Atlantic/Madeira` - * `Atlantic/Reykjavik` - * `Atlantic/South_Georgia` - * `Atlantic/St_Helena` - * `Atlantic/Stanley` - * `Australia/Adelaide` - * `Australia/Brisbane` - * `Australia/Broken_Hill` - * `Australia/Currie` - * `Australia/Darwin` - * `Australia/Eucla` - * `Australia/Hobart` - * `Australia/Lindeman` - * `Australia/Lord_Howe` - * `Australia/Melbourne` - * `Australia/Perth` - * `Australia/Sydney` - * `Etc/GMT` - * `Europe/Amsterdam` - * `Europe/Andorra` - * `Europe/Athens` - * `Europe/Belgrade` - * `Europe/Berlin` - * `Europe/Bratislava` - * `Europe/Brussels` - * `Europe/Bucharest` - * `Europe/Budapest` - * `Europe/Busingen` - * `Europe/Chisinau` - * `Europe/Copenhagen` - * `Europe/Dublin` - * `Europe/Gibraltar` - * `Europe/Guernsey` - * `Europe/Helsinki` - * `Europe/Isle_of_Man` - * `Europe/Istanbul` - * `Europe/Jersey` - * `Europe/Kaliningrad` - * `Europe/Kiev` - * `Europe/Lisbon` - * `Europe/Ljubljana` - * `Europe/London` - * `Europe/Luxembourg` - * `Europe/Madrid` - * `Europe/Malta` - * `Europe/Mariehamn` - * `Europe/Minsk` - * `Europe/Monaco` - * `Europe/Moscow` - * `Europe/Oslo` - * `Europe/Paris` - * `Europe/Podgorica` - * `Europe/Prague` - * `Europe/Riga` - * `Europe/Rome` - * `Europe/Samara` - * `Europe/San_Marino` - * `Europe/Sarajevo` - * `Europe/Simferopol` - * `Europe/Skopje` - * `Europe/Sofia` - * `Europe/Stockholm` - * `Europe/Tallinn` - * `Europe/Tirane` - * `Europe/Uzhgorod` - * `Europe/Vaduz` - * `Europe/Vatican` - * `Europe/Vienna` - * `Europe/Vilnius` - * `Europe/Volgograd` - * `Europe/Warsaw` - * `Europe/Zagreb` - * `Europe/Zaporozhye` - * `Europe/Zurich` - * `Indian/Antananarivo` - * `Indian/Chagos` - * `Indian/Christmas` - * `Indian/Cocos` - * `Indian/Comoro` - * `Indian/Kerguelen` - * `Indian/Mahe` - * `Indian/Maldives` - * `Indian/Mauritius` - * `Indian/Mayotte` - * `Indian/Reunion` - * `Pacific/Apia` - * `Pacific/Auckland` - * `Pacific/Chatham` - * `Pacific/Chuuk` - * `Pacific/Easter` - * `Pacific/Efate` - * `Pacific/Enderbury` - * `Pacific/Fakaofo` - * `Pacific/Fiji` - * `Pacific/Funafuti` - * `Pacific/Galapagos` - * `Pacific/Gambier` - * `Pacific/Guadalcanal` - * `Pacific/Guam` - * `Pacific/Honolulu` - * `Pacific/Johnston` - * `Pacific/Kiritimati` - * `Pacific/Kosrae` - * `Pacific/Kwajalein` - * `Pacific/Majuro` - * `Pacific/Marquesas` - * `Pacific/Midway` - * `Pacific/Nauru` - * `Pacific/Norfolk` - * `Pacific/Noumea` - * `Pacific/Pago_Pago` - * `Pacific/Palau` - * `Pacific/Pitcairn` - * `Pacific/Pohnpei` - * `Pacific/Port_Moresby` - * `Pacific/Rarotonga` - * `Pacific/Saipan` - * `Pacific/Tahiti` - * `Pacific/Tarawa` - * `Pacific/Tongatapu` - * `Pacific/Wake` - * `Pacific/Wallis` - * `UTC` - @@ -433,7 +433,7 @@ func (o *KubernetesSysConfigPolicy) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The DNS Search Domain Name. - DnsDomainName *string `json:"DnsDomainName,omitempty"` + DnsDomainName *string `json:"DnsDomainName,omitempty" validate:"regexp=^$|^([a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\\\\.)+[a-zA-Z]{2,63}$"` DnsServers []string `json:"DnsServers,omitempty"` NtpServers []string `json:"NtpServers,omitempty"` // The timezone of the node's system clock. * `Pacific/Niue` - * `Africa/Abidjan` - * `Africa/Accra` - * `Africa/Addis_Ababa` - * `Africa/Algiers` - * `Africa/Asmara` - * `Africa/Bamako` - * `Africa/Bangui` - * `Africa/Banjul` - * `Africa/Bissau` - * `Africa/Blantyre` - * `Africa/Brazzaville` - * `Africa/Bujumbura` - * `Africa/Cairo` - * `Africa/Casablanca` - * `Africa/Ceuta` - * `Africa/Conakry` - * `Africa/Dakar` - * `Africa/Dar_es_Salaam` - * `Africa/Djibouti` - * `Africa/Douala` - * `Africa/El_Aaiun` - * `Africa/Freetown` - * `Africa/Gaborone` - * `Africa/Harare` - * `Africa/Johannesburg` - * `Africa/Juba` - * `Africa/Kampala` - * `Africa/Khartoum` - * `Africa/Kigali` - * `Africa/Kinshasa` - * `Africa/Lagos` - * `Africa/Libreville` - * `Africa/Lome` - * `Africa/Luanda` - * `Africa/Lubumbashi` - * `Africa/Lusaka` - * `Africa/Malabo` - * `Africa/Maputo` - * `Africa/Maseru` - * `Africa/Mbabane` - * `Africa/Mogadishu` - * `Africa/Monrovia` - * `Africa/Nairobi` - * `Africa/Ndjamena` - * `Africa/Niamey` - * `Africa/Nouakchott` - * `Africa/Ouagadougou` - * `Africa/Porto-Novo` - * `Africa/Sao_Tome` - * `Africa/Tripoli` - * `Africa/Tunis` - * `Africa/Windhoek` - * `America/Adak` - * `America/Anchorage` - * `America/Anguilla` - * `America/Antigua` - * `America/Araguaina` - * `America/Argentina/Buenos_Aires` - * `America/Argentina/Catamarca` - * `America/Argentina/Cordoba` - * `America/Argentina/Jujuy` - * `America/Argentina/La_Rioja` - * `America/Argentina/Mendoza` - * `America/Argentina/Rio_Gallegos` - * `America/Argentina/Salta` - * `America/Argentina/San_Juan` - * `America/Argentina/San_Luis` - * `America/Argentina/Tucuman` - * `America/Argentina/Ushuaia` - * `America/Aruba` - * `America/Asuncion` - * `America/Atikokan` - * `America/Bahia` - * `America/Bahia_Banderas` - * `America/Barbados` - * `America/Belem` - * `America/Belize` - * `America/Blanc-Sablon` - * `America/Boa_Vista` - * `America/Bogota` - * `America/Boise` - * `America/Cambridge_Bay` - * `America/Campo_Grande` - * `America/Cancun` - * `America/Caracas` - * `America/Cayenne` - * `America/Cayman` - * `America/Chicago` - * `America/Chihuahua` - * `America/Costa_Rica` - * `America/Creston` - * `America/Cuiaba` - * `America/Curacao` - * `America/Danmarkshavn` - * `America/Dawson` - * `America/Dawson_Creek` - * `America/Denver` - * `America/Detroit` - * `America/Dominica` - * `America/Edmonton` - * `America/Eirunepe` - * `America/El_Salvador` - * `America/Fortaleza` - * `America/Glace_Bay` - * `America/Godthab` - * `America/Goose_Bay` - * `America/Grand_Turk` - * `America/Grenada` - * `America/Guadeloupe` - * `America/Guatemala` - * `America/Guayaquil` - * `America/Guyana` - * `America/Halifax` - * `America/Havana` - * `America/Hermosillo` - * `America/Indiana/Indianapolis` - * `America/Indiana/Knox` - * `America/Indiana/Marengo` - * `America/Indiana/Petersburg` - * `America/Indiana/Tell_City` - * `America/Indiana/Vevay` - * `America/Indiana/Vincennes` - * `America/Indiana/Winamac` - * `America/Inuvik` - * `America/Iqaluit` - * `America/Jamaica` - * `America/Juneau` - * `America/Kentucky/Louisville` - * `America/Kentucky/Monticello` - * `America/Kralendijk` - * `America/La_Paz` - * `America/Lima` - * `America/Los_Angeles` - * `America/Lower_Princes` - * `America/Maceio` - * `America/Managua` - * `America/Manaus` - * `America/Marigot` - * `America/Martinique` - * `America/Matamoros` - * `America/Mazatlan` - * `America/Menominee` - * `America/Merida` - * `America/Metlakatla` - * `America/Mexico_City` - * `America/Miquelon` - * `America/Moncton` - * `America/Monterrey` - * `America/Montevideo` - * `America/Montreal` - * `America/Montserrat` - * `America/Nassau` - * `America/New_York` - * `America/Nipigon` - * `America/Nome` - * `America/Noronha` - * `America/North_Dakota/Beulah` - * `America/North_Dakota/Center` - * `America/North_Dakota/New_Salem` - * `America/Ojinaga` - * `America/Panama` - * `America/Pangnirtung` - * `America/Paramaribo` - * `America/Phoenix` - * `America/Port-au-Prince` - * `America/Port_of_Spain` - * `America/Porto_Velho` - * `America/Puerto_Rico` - * `America/Rainy_River` - * `America/Rankin_Inlet` - * `America/Recife` - * `America/Regina` - * `America/Resolute` - * `America/Rio_Branco` - * `America/Santa_Isabel` - * `America/Santarem` - * `America/Santiago` - * `America/Santo_Domingo` - * `America/Sao_Paulo` - * `America/Scoresbysund` - * `America/Shiprock` - * `America/Sitka` - * `America/St_Barthelemy` - * `America/St_Johns` - * `America/St_Kitts` - * `America/St_Lucia` - * `America/St_Thomas` - * `America/St_Vincent` - * `America/Swift_Current` - * `America/Tegucigalpa` - * `America/Thule` - * `America/Thunder_Bay` - * `America/Tijuana` - * `America/Toronto` - * `America/Tortola` - * `America/Vancouver` - * `America/Whitehorse` - * `America/Winnipeg` - * `America/Yakutat` - * `America/Yellowknife` - * `Antarctica/Casey` - * `Antarctica/Davis` - * `Antarctica/DumontDUrville` - * `Antarctica/Macquarie` - * `Antarctica/Mawson` - * `Antarctica/McMurdo` - * `Antarctica/Palmer` - * `Antarctica/Rothera` - * `Antarctica/South_Pole` - * `Antarctica/Syowa` - * `Antarctica/Troll` - * `Antarctica/Vostok` - * `Arctic/Longyearbyen` - * `Asia/Aden` - * `Asia/Almaty` - * `Asia/Amman` - * `Asia/Anadyr` - * `Asia/Aqtau` - * `Asia/Aqtobe` - * `Asia/Ashgabat` - * `Asia/Baghdad` - * `Asia/Bahrain` - * `Asia/Baku` - * `Asia/Bangkok` - * `Asia/Beirut` - * `Asia/Bishkek` - * `Asia/Brunei` - * `Asia/Calcutta` - * `Asia/Choibalsan` - * `Asia/Chongqing` - * `Asia/Colombo` - * `Asia/Damascus` - * `Asia/Dhaka` - * `Asia/Dili` - * `Asia/Dubai` - * `Asia/Dushanbe` - * `Asia/Gaza` - * `Asia/Harbin` - * `Asia/Hebron` - * `Asia/Ho_Chi_Minh` - * `Asia/Hong_Kong` - * `Asia/Hovd` - * `Asia/Irkutsk` - * `Asia/Jakarta` - * `Asia/Jayapura` - * `Asia/Jerusalem` - * `Asia/Kabul` - * `Asia/Kamchatka` - * `Asia/Karachi` - * `Asia/Kashgar` - * `Asia/Kathmandu` - * `Asia/Katmandu` - * `Asia/Khandyga` - * `Asia/Kolkata` - * `Asia/Krasnoyarsk` - * `Asia/Kuala_Lumpur` - * `Asia/Kuching` - * `Asia/Kuwait` - * `Asia/Macau` - * `Asia/Magadan` - * `Asia/Makassar` - * `Asia/Manila` - * `Asia/Muscat` - * `Asia/Nicosia` - * `Asia/Novokuznetsk` - * `Asia/Novosibirsk` - * `Asia/Omsk` - * `Asia/Oral` - * `Asia/Phnom_Penh` - * `Asia/Pontianak` - * `Asia/Pyongyang` - * `Asia/Qatar` - * `Asia/Qyzylorda` - * `Asia/Rangoon` - * `Asia/Riyadh` - * `Asia/Saigon` - * `Asia/Sakhalin` - * `Asia/Samarkand` - * `Asia/Seoul` - * `Asia/Shanghai` - * `Asia/Singapore` - * `Asia/Taipei` - * `Asia/Tashkent` - * `Asia/Tbilisi` - * `Asia/Tehran` - * `Asia/Thimphu` - * `Asia/Tokyo` - * `Asia/Ulaanbaatar` - * `Asia/Urumqi` - * `Asia/Ust-Nera` - * `Asia/Vientiane` - * `Asia/Vladivostok` - * `Asia/Yakutsk` - * `Asia/Yekaterinburg` - * `Asia/Yerevan` - * `Atlantic/Azores` - * `Atlantic/Bermuda` - * `Atlantic/Canary` - * `Atlantic/Cape_Verde` - * `Atlantic/Faroe` - * `Atlantic/Madeira` - * `Atlantic/Reykjavik` - * `Atlantic/South_Georgia` - * `Atlantic/St_Helena` - * `Atlantic/Stanley` - * `Australia/Adelaide` - * `Australia/Brisbane` - * `Australia/Broken_Hill` - * `Australia/Currie` - * `Australia/Darwin` - * `Australia/Eucla` - * `Australia/Hobart` - * `Australia/Lindeman` - * `Australia/Lord_Howe` - * `Australia/Melbourne` - * `Australia/Perth` - * `Australia/Sydney` - * `Etc/GMT` - * `Europe/Amsterdam` - * `Europe/Andorra` - * `Europe/Athens` - * `Europe/Belgrade` - * `Europe/Berlin` - * `Europe/Bratislava` - * `Europe/Brussels` - * `Europe/Bucharest` - * `Europe/Budapest` - * `Europe/Busingen` - * `Europe/Chisinau` - * `Europe/Copenhagen` - * `Europe/Dublin` - * `Europe/Gibraltar` - * `Europe/Guernsey` - * `Europe/Helsinki` - * `Europe/Isle_of_Man` - * `Europe/Istanbul` - * `Europe/Jersey` - * `Europe/Kaliningrad` - * `Europe/Kiev` - * `Europe/Lisbon` - * `Europe/Ljubljana` - * `Europe/London` - * `Europe/Luxembourg` - * `Europe/Madrid` - * `Europe/Malta` - * `Europe/Mariehamn` - * `Europe/Minsk` - * `Europe/Monaco` - * `Europe/Moscow` - * `Europe/Oslo` - * `Europe/Paris` - * `Europe/Podgorica` - * `Europe/Prague` - * `Europe/Riga` - * `Europe/Rome` - * `Europe/Samara` - * `Europe/San_Marino` - * `Europe/Sarajevo` - * `Europe/Simferopol` - * `Europe/Skopje` - * `Europe/Sofia` - * `Europe/Stockholm` - * `Europe/Tallinn` - * `Europe/Tirane` - * `Europe/Uzhgorod` - * `Europe/Vaduz` - * `Europe/Vatican` - * `Europe/Vienna` - * `Europe/Vilnius` - * `Europe/Volgograd` - * `Europe/Warsaw` - * `Europe/Zagreb` - * `Europe/Zaporozhye` - * `Europe/Zurich` - * `Indian/Antananarivo` - * `Indian/Chagos` - * `Indian/Christmas` - * `Indian/Cocos` - * `Indian/Comoro` - * `Indian/Kerguelen` - * `Indian/Mahe` - * `Indian/Maldives` - * `Indian/Mauritius` - * `Indian/Mayotte` - * `Indian/Reunion` - * `Pacific/Apia` - * `Pacific/Auckland` - * `Pacific/Chatham` - * `Pacific/Chuuk` - * `Pacific/Easter` - * `Pacific/Efate` - * `Pacific/Enderbury` - * `Pacific/Fakaofo` - * `Pacific/Fiji` - * `Pacific/Funafuti` - * `Pacific/Galapagos` - * `Pacific/Gambier` - * `Pacific/Guadalcanal` - * `Pacific/Guam` - * `Pacific/Honolulu` - * `Pacific/Johnston` - * `Pacific/Kiritimati` - * `Pacific/Kosrae` - * `Pacific/Kwajalein` - * `Pacific/Majuro` - * `Pacific/Marquesas` - * `Pacific/Midway` - * `Pacific/Nauru` - * `Pacific/Norfolk` - * `Pacific/Noumea` - * `Pacific/Pago_Pago` - * `Pacific/Palau` - * `Pacific/Pitcairn` - * `Pacific/Pohnpei` - * `Pacific/Port_Moresby` - * `Pacific/Rarotonga` - * `Pacific/Saipan` - * `Pacific/Tahiti` - * `Pacific/Tarawa` - * `Pacific/Tongatapu` - * `Pacific/Wake` - * `Pacific/Wallis` - * `UTC` - diff --git a/intersight_gosdk/model_kubernetes_sys_config_policy_list.go b/intersight_gosdk/model_kubernetes_sys_config_policy_list.go index 2df05290f2..1b45d55b16 100644 --- a/intersight_gosdk/model_kubernetes_sys_config_policy_list.go +++ b/intersight_gosdk/model_kubernetes_sys_config_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_sys_config_policy_relationship.go b/intersight_gosdk/model_kubernetes_sys_config_policy_relationship.go index 6b3a8972e2..63588160fa 100644 --- a/intersight_gosdk/model_kubernetes_sys_config_policy_relationship.go +++ b/intersight_gosdk/model_kubernetes_sys_config_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_sys_config_policy_response.go b/intersight_gosdk/model_kubernetes_sys_config_policy_response.go index b95ffe1a2f..c0ea113e38 100644 --- a/intersight_gosdk/model_kubernetes_sys_config_policy_response.go +++ b/intersight_gosdk/model_kubernetes_sys_config_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_taint.go b/intersight_gosdk/model_kubernetes_taint.go index 1e2a63ba67..eac801a2fa 100644 --- a/intersight_gosdk/model_kubernetes_taint.go +++ b/intersight_gosdk/model_kubernetes_taint.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_trusted_registries_policy.go b/intersight_gosdk/model_kubernetes_trusted_registries_policy.go index 05cf1b0689..66520c3c0b 100644 --- a/intersight_gosdk/model_kubernetes_trusted_registries_policy.go +++ b/intersight_gosdk/model_kubernetes_trusted_registries_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_trusted_registries_policy_list.go b/intersight_gosdk/model_kubernetes_trusted_registries_policy_list.go index b4b6f0703f..381102ec69 100644 --- a/intersight_gosdk/model_kubernetes_trusted_registries_policy_list.go +++ b/intersight_gosdk/model_kubernetes_trusted_registries_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_trusted_registries_policy_relationship.go b/intersight_gosdk/model_kubernetes_trusted_registries_policy_relationship.go index 3355ffe615..bfde564778 100644 --- a/intersight_gosdk/model_kubernetes_trusted_registries_policy_relationship.go +++ b/intersight_gosdk/model_kubernetes_trusted_registries_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_trusted_registries_policy_response.go b/intersight_gosdk/model_kubernetes_trusted_registries_policy_response.go index 56db2f8030..fa2ad05eea 100644 --- a/intersight_gosdk/model_kubernetes_trusted_registries_policy_response.go +++ b/intersight_gosdk/model_kubernetes_trusted_registries_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_version.go b/intersight_gosdk/model_kubernetes_version.go index 4b0b703540..f9500a8331 100644 --- a/intersight_gosdk/model_kubernetes_version.go +++ b/intersight_gosdk/model_kubernetes_version.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -34,7 +34,7 @@ type KubernetesVersion struct { // The iks utility container to use for the kubernetes version. IksUtilityContainer *string `json:"IksUtilityContainer,omitempty"` // Desired Kubernetes version. - KubernetesVersion *string `json:"KubernetesVersion,omitempty"` + KubernetesVersion *string `json:"KubernetesVersion,omitempty" validate:"regexp=^$|^v[0-9]+\\\\.[0-9]+\\\\.[0-9]+$"` // The name of this IKS kubernetes version. Name *string `json:"Name,omitempty"` BootIso NullableSoftwareSolutionDistributableRelationship `json:"BootIso,omitempty"` @@ -621,7 +621,7 @@ func (o *KubernetesVersion) UnmarshalJSON(data []byte) (err error) { // The iks utility container to use for the kubernetes version. IksUtilityContainer *string `json:"IksUtilityContainer,omitempty"` // Desired Kubernetes version. - KubernetesVersion *string `json:"KubernetesVersion,omitempty"` + KubernetesVersion *string `json:"KubernetesVersion,omitempty" validate:"regexp=^$|^v[0-9]+\\\\.[0-9]+\\\\.[0-9]+$"` // The name of this IKS kubernetes version. Name *string `json:"Name,omitempty"` BootIso NullableSoftwareSolutionDistributableRelationship `json:"BootIso,omitempty"` diff --git a/intersight_gosdk/model_kubernetes_version_list.go b/intersight_gosdk/model_kubernetes_version_list.go index 5ce8d8af84..fa3652f719 100644 --- a/intersight_gosdk/model_kubernetes_version_list.go +++ b/intersight_gosdk/model_kubernetes_version_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_version_policy.go b/intersight_gosdk/model_kubernetes_version_policy.go index 3642a64152..9382eba636 100644 --- a/intersight_gosdk/model_kubernetes_version_policy.go +++ b/intersight_gosdk/model_kubernetes_version_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_version_policy_list.go b/intersight_gosdk/model_kubernetes_version_policy_list.go index 0d367040ee..358fa372b3 100644 --- a/intersight_gosdk/model_kubernetes_version_policy_list.go +++ b/intersight_gosdk/model_kubernetes_version_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_version_policy_relationship.go b/intersight_gosdk/model_kubernetes_version_policy_relationship.go index d18fad1890..fc80f4ed3a 100644 --- a/intersight_gosdk/model_kubernetes_version_policy_relationship.go +++ b/intersight_gosdk/model_kubernetes_version_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_version_policy_response.go b/intersight_gosdk/model_kubernetes_version_policy_response.go index ab615456e3..8fc9155c1b 100644 --- a/intersight_gosdk/model_kubernetes_version_policy_response.go +++ b/intersight_gosdk/model_kubernetes_version_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_version_relationship.go b/intersight_gosdk/model_kubernetes_version_relationship.go index b810ce2865..31adaf305c 100644 --- a/intersight_gosdk/model_kubernetes_version_relationship.go +++ b/intersight_gosdk/model_kubernetes_version_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_version_response.go b/intersight_gosdk/model_kubernetes_version_response.go index 32ecd33daa..89514e5a4a 100644 --- a/intersight_gosdk/model_kubernetes_version_response.go +++ b/intersight_gosdk/model_kubernetes_version_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy.go b/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy.go index 47b1e32682..717fe4c82e 100644 --- a/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy.go +++ b/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy_list.go b/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy_list.go index 5af40301bd..4bbc63a12a 100644 --- a/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy_list.go +++ b/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy_relationship.go b/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy_relationship.go index 0b0ce80630..fa104c7962 100644 --- a/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy_relationship.go +++ b/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy_response.go b/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy_response.go index da5a1f008e..88773b86fa 100644 --- a/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy_response.go +++ b/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider.go b/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider.go index 476e8435da..3395d92ac4 100644 --- a/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider.go +++ b/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider_list.go b/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider_list.go index 551b6f4ba7..dacf64e2e0 100644 --- a/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider_list.go +++ b/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider_relationship.go b/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider_relationship.go index c2326e3a82..98a1d9114e 100644 --- a/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider_relationship.go +++ b/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider_response.go b/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider_response.go index df2de41358..ec0c9d3599 100644 --- a/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider_response.go +++ b/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_virtual_machine_instance_type.go b/intersight_gosdk/model_kubernetes_virtual_machine_instance_type.go index 6da882af45..a31dfa0346 100644 --- a/intersight_gosdk/model_kubernetes_virtual_machine_instance_type.go +++ b/intersight_gosdk/model_kubernetes_virtual_machine_instance_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_virtual_machine_instance_type_list.go b/intersight_gosdk/model_kubernetes_virtual_machine_instance_type_list.go index ab8fc55650..f9a70abac5 100644 --- a/intersight_gosdk/model_kubernetes_virtual_machine_instance_type_list.go +++ b/intersight_gosdk/model_kubernetes_virtual_machine_instance_type_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_virtual_machine_instance_type_relationship.go b/intersight_gosdk/model_kubernetes_virtual_machine_instance_type_relationship.go index f5f9815946..8a3ab512ba 100644 --- a/intersight_gosdk/model_kubernetes_virtual_machine_instance_type_relationship.go +++ b/intersight_gosdk/model_kubernetes_virtual_machine_instance_type_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_virtual_machine_instance_type_response.go b/intersight_gosdk/model_kubernetes_virtual_machine_instance_type_response.go index fc1dedf29b..0496d4c5e8 100644 --- a/intersight_gosdk/model_kubernetes_virtual_machine_instance_type_response.go +++ b/intersight_gosdk/model_kubernetes_virtual_machine_instance_type_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_virtual_machine_node_profile.go b/intersight_gosdk/model_kubernetes_virtual_machine_node_profile.go index a2c1aced27..e121de711f 100644 --- a/intersight_gosdk/model_kubernetes_virtual_machine_node_profile.go +++ b/intersight_gosdk/model_kubernetes_virtual_machine_node_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_virtual_machine_node_profile_list.go b/intersight_gosdk/model_kubernetes_virtual_machine_node_profile_list.go index 1368f5de22..b7c90e26ea 100644 --- a/intersight_gosdk/model_kubernetes_virtual_machine_node_profile_list.go +++ b/intersight_gosdk/model_kubernetes_virtual_machine_node_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_virtual_machine_node_profile_response.go b/intersight_gosdk/model_kubernetes_virtual_machine_node_profile_response.go index 3e81e9b91f..ec60397f31 100644 --- a/intersight_gosdk/model_kubernetes_virtual_machine_node_profile_response.go +++ b/intersight_gosdk/model_kubernetes_virtual_machine_node_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_policy.go b/intersight_gosdk/model_kvm_policy.go index fb5e190011..219c9e16fb 100644 --- a/intersight_gosdk/model_kvm_policy.go +++ b/intersight_gosdk/model_kvm_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_policy_inventory.go b/intersight_gosdk/model_kvm_policy_inventory.go index a95d595841..0ec88225f7 100644 --- a/intersight_gosdk/model_kvm_policy_inventory.go +++ b/intersight_gosdk/model_kvm_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_policy_inventory_list.go b/intersight_gosdk/model_kvm_policy_inventory_list.go index eafacba2ea..9ef811f852 100644 --- a/intersight_gosdk/model_kvm_policy_inventory_list.go +++ b/intersight_gosdk/model_kvm_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_policy_inventory_response.go b/intersight_gosdk/model_kvm_policy_inventory_response.go index 673bc2bf74..6f6bb41bd6 100644 --- a/intersight_gosdk/model_kvm_policy_inventory_response.go +++ b/intersight_gosdk/model_kvm_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_policy_list.go b/intersight_gosdk/model_kvm_policy_list.go index 162b1a5d94..5b2305060e 100644 --- a/intersight_gosdk/model_kvm_policy_list.go +++ b/intersight_gosdk/model_kvm_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_policy_response.go b/intersight_gosdk/model_kvm_policy_response.go index d4236a7acb..ceb04bed71 100644 --- a/intersight_gosdk/model_kvm_policy_response.go +++ b/intersight_gosdk/model_kvm_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_session.go b/intersight_gosdk/model_kvm_session.go index 3900e74829..78dd6ca2bd 100644 --- a/intersight_gosdk/model_kvm_session.go +++ b/intersight_gosdk/model_kvm_session.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_session_list.go b/intersight_gosdk/model_kvm_session_list.go index 9fb68b4848..34f36cc843 100644 --- a/intersight_gosdk/model_kvm_session_list.go +++ b/intersight_gosdk/model_kvm_session_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_session_relationship.go b/intersight_gosdk/model_kvm_session_relationship.go index 56945ac215..7be81b8e26 100644 --- a/intersight_gosdk/model_kvm_session_relationship.go +++ b/intersight_gosdk/model_kvm_session_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_session_response.go b/intersight_gosdk/model_kvm_session_response.go index 4bb29d1286..e7e1a80f1f 100644 --- a/intersight_gosdk/model_kvm_session_response.go +++ b/intersight_gosdk/model_kvm_session_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_tunnel.go b/intersight_gosdk/model_kvm_tunnel.go index efc73fe068..c16fffb665 100644 --- a/intersight_gosdk/model_kvm_tunnel.go +++ b/intersight_gosdk/model_kvm_tunnel.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_tunnel_list.go b/intersight_gosdk/model_kvm_tunnel_list.go index dbcf8c2889..ca305c9481 100644 --- a/intersight_gosdk/model_kvm_tunnel_list.go +++ b/intersight_gosdk/model_kvm_tunnel_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_tunnel_relationship.go b/intersight_gosdk/model_kvm_tunnel_relationship.go index 3824837462..2e841d35b6 100644 --- a/intersight_gosdk/model_kvm_tunnel_relationship.go +++ b/intersight_gosdk/model_kvm_tunnel_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_tunnel_response.go b/intersight_gosdk/model_kvm_tunnel_response.go index c630171bdf..ee7a605a21 100644 --- a/intersight_gosdk/model_kvm_tunnel_response.go +++ b/intersight_gosdk/model_kvm_tunnel_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_tunneled_kvm_policy.go b/intersight_gosdk/model_kvm_tunneled_kvm_policy.go index 0a97f04f95..bbb7db83a4 100644 --- a/intersight_gosdk/model_kvm_tunneled_kvm_policy.go +++ b/intersight_gosdk/model_kvm_tunneled_kvm_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_tunneled_kvm_policy_list.go b/intersight_gosdk/model_kvm_tunneled_kvm_policy_list.go index 3f87245a49..e4f0617c9e 100644 --- a/intersight_gosdk/model_kvm_tunneled_kvm_policy_list.go +++ b/intersight_gosdk/model_kvm_tunneled_kvm_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_tunneled_kvm_policy_response.go b/intersight_gosdk/model_kvm_tunneled_kvm_policy_response.go index f90e61f395..7266ec6b67 100644 --- a/intersight_gosdk/model_kvm_tunneled_kvm_policy_response.go +++ b/intersight_gosdk/model_kvm_tunneled_kvm_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_account_license_data.go b/intersight_gosdk/model_license_account_license_data.go index 80b7ccb644..3dde0a7322 100644 --- a/intersight_gosdk/model_license_account_license_data.go +++ b/intersight_gosdk/model_license_account_license_data.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_account_license_data_list.go b/intersight_gosdk/model_license_account_license_data_list.go index e77e11c0f8..42517c4c31 100644 --- a/intersight_gosdk/model_license_account_license_data_list.go +++ b/intersight_gosdk/model_license_account_license_data_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_account_license_data_relationship.go b/intersight_gosdk/model_license_account_license_data_relationship.go index e28fefef86..62388df11e 100644 --- a/intersight_gosdk/model_license_account_license_data_relationship.go +++ b/intersight_gosdk/model_license_account_license_data_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_account_license_data_response.go b/intersight_gosdk/model_license_account_license_data_response.go index 82bad574e1..93a30d0fd7 100644 --- a/intersight_gosdk/model_license_account_license_data_response.go +++ b/intersight_gosdk/model_license_account_license_data_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_customer_op.go b/intersight_gosdk/model_license_customer_op.go index ae16a30184..912e8b4ff2 100644 --- a/intersight_gosdk/model_license_customer_op.go +++ b/intersight_gosdk/model_license_customer_op.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_customer_op_list.go b/intersight_gosdk/model_license_customer_op_list.go index 9c4fd6b190..1b9deefc3a 100644 --- a/intersight_gosdk/model_license_customer_op_list.go +++ b/intersight_gosdk/model_license_customer_op_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_customer_op_relationship.go b/intersight_gosdk/model_license_customer_op_relationship.go index c18085af13..0f24191d78 100644 --- a/intersight_gosdk/model_license_customer_op_relationship.go +++ b/intersight_gosdk/model_license_customer_op_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_customer_op_response.go b/intersight_gosdk/model_license_customer_op_response.go index 8f1c2b374c..ba8740bc6f 100644 --- a/intersight_gosdk/model_license_customer_op_response.go +++ b/intersight_gosdk/model_license_customer_op_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_iks_customer_op.go b/intersight_gosdk/model_license_iks_customer_op.go index 1eb1abcdd7..9a08afc115 100644 --- a/intersight_gosdk/model_license_iks_customer_op.go +++ b/intersight_gosdk/model_license_iks_customer_op.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_iks_customer_op_list.go b/intersight_gosdk/model_license_iks_customer_op_list.go index 61b0850a4b..b11c6bb343 100644 --- a/intersight_gosdk/model_license_iks_customer_op_list.go +++ b/intersight_gosdk/model_license_iks_customer_op_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_iks_customer_op_relationship.go b/intersight_gosdk/model_license_iks_customer_op_relationship.go index fa86602974..b06a5f4a39 100644 --- a/intersight_gosdk/model_license_iks_customer_op_relationship.go +++ b/intersight_gosdk/model_license_iks_customer_op_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_iks_customer_op_response.go b/intersight_gosdk/model_license_iks_customer_op_response.go index 71b0589722..bf30f550e7 100644 --- a/intersight_gosdk/model_license_iks_customer_op_response.go +++ b/intersight_gosdk/model_license_iks_customer_op_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_iks_license_count.go b/intersight_gosdk/model_license_iks_license_count.go index 4e752f07ee..bc4f3d576e 100644 --- a/intersight_gosdk/model_license_iks_license_count.go +++ b/intersight_gosdk/model_license_iks_license_count.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_iks_license_count_list.go b/intersight_gosdk/model_license_iks_license_count_list.go index e39019d021..ead168d20a 100644 --- a/intersight_gosdk/model_license_iks_license_count_list.go +++ b/intersight_gosdk/model_license_iks_license_count_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_iks_license_count_relationship.go b/intersight_gosdk/model_license_iks_license_count_relationship.go index 6b137a8d68..84420d0cf1 100644 --- a/intersight_gosdk/model_license_iks_license_count_relationship.go +++ b/intersight_gosdk/model_license_iks_license_count_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_iks_license_count_response.go b/intersight_gosdk/model_license_iks_license_count_response.go index 1b1ca9e668..333ce60888 100644 --- a/intersight_gosdk/model_license_iks_license_count_response.go +++ b/intersight_gosdk/model_license_iks_license_count_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_inc_customer_op.go b/intersight_gosdk/model_license_inc_customer_op.go index 9025e861c4..740972d4d0 100644 --- a/intersight_gosdk/model_license_inc_customer_op.go +++ b/intersight_gosdk/model_license_inc_customer_op.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_inc_customer_op_list.go b/intersight_gosdk/model_license_inc_customer_op_list.go index 41a1e57883..35369544fc 100644 --- a/intersight_gosdk/model_license_inc_customer_op_list.go +++ b/intersight_gosdk/model_license_inc_customer_op_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_inc_customer_op_relationship.go b/intersight_gosdk/model_license_inc_customer_op_relationship.go index 958fd328ba..0f9f08498b 100644 --- a/intersight_gosdk/model_license_inc_customer_op_relationship.go +++ b/intersight_gosdk/model_license_inc_customer_op_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_inc_customer_op_response.go b/intersight_gosdk/model_license_inc_customer_op_response.go index 05b7ae9b06..a2507be4ef 100644 --- a/intersight_gosdk/model_license_inc_customer_op_response.go +++ b/intersight_gosdk/model_license_inc_customer_op_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_inc_license_count.go b/intersight_gosdk/model_license_inc_license_count.go index c9dd7c0e78..fd467ce0f1 100644 --- a/intersight_gosdk/model_license_inc_license_count.go +++ b/intersight_gosdk/model_license_inc_license_count.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_inc_license_count_list.go b/intersight_gosdk/model_license_inc_license_count_list.go index 29ab96c59e..d776ff6b91 100644 --- a/intersight_gosdk/model_license_inc_license_count_list.go +++ b/intersight_gosdk/model_license_inc_license_count_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_inc_license_count_relationship.go b/intersight_gosdk/model_license_inc_license_count_relationship.go index 403e3b6a8b..fe7ccadf47 100644 --- a/intersight_gosdk/model_license_inc_license_count_relationship.go +++ b/intersight_gosdk/model_license_inc_license_count_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_inc_license_count_response.go b/intersight_gosdk/model_license_inc_license_count_response.go index fe8ae5770e..993b4e0e85 100644 --- a/intersight_gosdk/model_license_inc_license_count_response.go +++ b/intersight_gosdk/model_license_inc_license_count_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_iwo_customer_op.go b/intersight_gosdk/model_license_iwo_customer_op.go index 67bb233a01..0010f71a56 100644 --- a/intersight_gosdk/model_license_iwo_customer_op.go +++ b/intersight_gosdk/model_license_iwo_customer_op.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_iwo_customer_op_list.go b/intersight_gosdk/model_license_iwo_customer_op_list.go index ebae75a2ca..ceeed8d093 100644 --- a/intersight_gosdk/model_license_iwo_customer_op_list.go +++ b/intersight_gosdk/model_license_iwo_customer_op_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_iwo_customer_op_relationship.go b/intersight_gosdk/model_license_iwo_customer_op_relationship.go index bbeb51ec52..7d70188610 100644 --- a/intersight_gosdk/model_license_iwo_customer_op_relationship.go +++ b/intersight_gosdk/model_license_iwo_customer_op_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_iwo_customer_op_response.go b/intersight_gosdk/model_license_iwo_customer_op_response.go index 3ca4fea99e..9003ee4460 100644 --- a/intersight_gosdk/model_license_iwo_customer_op_response.go +++ b/intersight_gosdk/model_license_iwo_customer_op_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_iwo_license_count.go b/intersight_gosdk/model_license_iwo_license_count.go index b1d588b2db..89b287063f 100644 --- a/intersight_gosdk/model_license_iwo_license_count.go +++ b/intersight_gosdk/model_license_iwo_license_count.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_iwo_license_count_list.go b/intersight_gosdk/model_license_iwo_license_count_list.go index ce585ef179..e573052745 100644 --- a/intersight_gosdk/model_license_iwo_license_count_list.go +++ b/intersight_gosdk/model_license_iwo_license_count_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_iwo_license_count_relationship.go b/intersight_gosdk/model_license_iwo_license_count_relationship.go index b5db9d81ae..01c5e58ebd 100644 --- a/intersight_gosdk/model_license_iwo_license_count_relationship.go +++ b/intersight_gosdk/model_license_iwo_license_count_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_iwo_license_count_response.go b/intersight_gosdk/model_license_iwo_license_count_response.go index 4ce77f4864..b71c39eb9f 100644 --- a/intersight_gosdk/model_license_iwo_license_count_response.go +++ b/intersight_gosdk/model_license_iwo_license_count_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_license_info.go b/intersight_gosdk/model_license_license_info.go index a1b7e9ce44..e6551cbcce 100644 --- a/intersight_gosdk/model_license_license_info.go +++ b/intersight_gosdk/model_license_license_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_license_info_list.go b/intersight_gosdk/model_license_license_info_list.go index 7e192b5e25..f178fdb000 100644 --- a/intersight_gosdk/model_license_license_info_list.go +++ b/intersight_gosdk/model_license_license_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_license_info_relationship.go b/intersight_gosdk/model_license_license_info_relationship.go index 8fabcf5b5a..30027899e5 100644 --- a/intersight_gosdk/model_license_license_info_relationship.go +++ b/intersight_gosdk/model_license_license_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_license_info_response.go b/intersight_gosdk/model_license_license_info_response.go index 5e9a5440d7..7d6ab1e711 100644 --- a/intersight_gosdk/model_license_license_info_response.go +++ b/intersight_gosdk/model_license_license_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_license_info_view.go b/intersight_gosdk/model_license_license_info_view.go index f9a54aaa77..5e43c4225b 100644 --- a/intersight_gosdk/model_license_license_info_view.go +++ b/intersight_gosdk/model_license_license_info_view.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_license_info_view_list.go b/intersight_gosdk/model_license_license_info_view_list.go index 8038f0aeeb..f60bd3dc36 100644 --- a/intersight_gosdk/model_license_license_info_view_list.go +++ b/intersight_gosdk/model_license_license_info_view_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_license_info_view_relationship.go b/intersight_gosdk/model_license_license_info_view_relationship.go index 3a7d466b3a..44167a8ec4 100644 --- a/intersight_gosdk/model_license_license_info_view_relationship.go +++ b/intersight_gosdk/model_license_license_info_view_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_license_info_view_response.go b/intersight_gosdk/model_license_license_info_view_response.go index 0f65a108e7..929222c270 100644 --- a/intersight_gosdk/model_license_license_info_view_response.go +++ b/intersight_gosdk/model_license_license_info_view_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_license_registration_status.go b/intersight_gosdk/model_license_license_registration_status.go index a2b97a7c3c..72d05f6de1 100644 --- a/intersight_gosdk/model_license_license_registration_status.go +++ b/intersight_gosdk/model_license_license_registration_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_license_registration_status_list.go b/intersight_gosdk/model_license_license_registration_status_list.go index c68811b288..e335c20836 100644 --- a/intersight_gosdk/model_license_license_registration_status_list.go +++ b/intersight_gosdk/model_license_license_registration_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_license_registration_status_relationship.go b/intersight_gosdk/model_license_license_registration_status_relationship.go index 65e1ca1e00..634ac9b1df 100644 --- a/intersight_gosdk/model_license_license_registration_status_relationship.go +++ b/intersight_gosdk/model_license_license_registration_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_license_registration_status_response.go b/intersight_gosdk/model_license_license_registration_status_response.go index 1777a18ffe..69bd7011db 100644 --- a/intersight_gosdk/model_license_license_registration_status_response.go +++ b/intersight_gosdk/model_license_license_registration_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_license_reservation_op.go b/intersight_gosdk/model_license_license_reservation_op.go index 0da9da0ee2..c619e90f35 100644 --- a/intersight_gosdk/model_license_license_reservation_op.go +++ b/intersight_gosdk/model_license_license_reservation_op.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_license_reservation_op_list.go b/intersight_gosdk/model_license_license_reservation_op_list.go index ce53df779e..c941e3d3c7 100644 --- a/intersight_gosdk/model_license_license_reservation_op_list.go +++ b/intersight_gosdk/model_license_license_reservation_op_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_license_reservation_op_response.go b/intersight_gosdk/model_license_license_reservation_op_response.go index b12ff4d35a..0e8abdd3a0 100644 --- a/intersight_gosdk/model_license_license_reservation_op_response.go +++ b/intersight_gosdk/model_license_license_reservation_op_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_smartlicense_token.go b/intersight_gosdk/model_license_smartlicense_token.go index 48ad16fa42..922bce7c00 100644 --- a/intersight_gosdk/model_license_smartlicense_token.go +++ b/intersight_gosdk/model_license_smartlicense_token.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_smartlicense_token_list.go b/intersight_gosdk/model_license_smartlicense_token_list.go index bee20cd652..dde918dda6 100644 --- a/intersight_gosdk/model_license_smartlicense_token_list.go +++ b/intersight_gosdk/model_license_smartlicense_token_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_smartlicense_token_relationship.go b/intersight_gosdk/model_license_smartlicense_token_relationship.go index dc3fc77e40..8057817f9e 100644 --- a/intersight_gosdk/model_license_smartlicense_token_relationship.go +++ b/intersight_gosdk/model_license_smartlicense_token_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_smartlicense_token_response.go b/intersight_gosdk/model_license_smartlicense_token_response.go index fae765b01a..c8737a4a15 100644 --- a/intersight_gosdk/model_license_smartlicense_token_response.go +++ b/intersight_gosdk/model_license_smartlicense_token_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_substitute_license.go b/intersight_gosdk/model_license_substitute_license.go index 2de1f34362..9d389854a4 100644 --- a/intersight_gosdk/model_license_substitute_license.go +++ b/intersight_gosdk/model_license_substitute_license.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ls_service_profile.go b/intersight_gosdk/model_ls_service_profile.go index 5377f6a7c9..88f653012e 100644 --- a/intersight_gosdk/model_ls_service_profile.go +++ b/intersight_gosdk/model_ls_service_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ls_service_profile_list.go b/intersight_gosdk/model_ls_service_profile_list.go index 0d23bacef0..52f8fb6bf0 100644 --- a/intersight_gosdk/model_ls_service_profile_list.go +++ b/intersight_gosdk/model_ls_service_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ls_service_profile_response.go b/intersight_gosdk/model_ls_service_profile_response.go index 4996036601..5077a3428d 100644 --- a/intersight_gosdk/model_ls_service_profile_response.go +++ b/intersight_gosdk/model_ls_service_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_block.go b/intersight_gosdk/model_macpool_block.go index 5ff6bfdc43..cc766d35a4 100644 --- a/intersight_gosdk/model_macpool_block.go +++ b/intersight_gosdk/model_macpool_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_id_block.go b/intersight_gosdk/model_macpool_id_block.go index da566b3538..cd386a729f 100644 --- a/intersight_gosdk/model_macpool_id_block.go +++ b/intersight_gosdk/model_macpool_id_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_id_block_list.go b/intersight_gosdk/model_macpool_id_block_list.go index d20b6e5b70..f481753851 100644 --- a/intersight_gosdk/model_macpool_id_block_list.go +++ b/intersight_gosdk/model_macpool_id_block_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_id_block_relationship.go b/intersight_gosdk/model_macpool_id_block_relationship.go index da1503497d..63a1ec12f2 100644 --- a/intersight_gosdk/model_macpool_id_block_relationship.go +++ b/intersight_gosdk/model_macpool_id_block_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_id_block_response.go b/intersight_gosdk/model_macpool_id_block_response.go index 09814698f3..a64259bd82 100644 --- a/intersight_gosdk/model_macpool_id_block_response.go +++ b/intersight_gosdk/model_macpool_id_block_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_lease.go b/intersight_gosdk/model_macpool_lease.go index 0c2e18f774..427765459c 100644 --- a/intersight_gosdk/model_macpool_lease.go +++ b/intersight_gosdk/model_macpool_lease.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_lease_list.go b/intersight_gosdk/model_macpool_lease_list.go index bed2995fd7..76e5c4ca21 100644 --- a/intersight_gosdk/model_macpool_lease_list.go +++ b/intersight_gosdk/model_macpool_lease_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_lease_relationship.go b/intersight_gosdk/model_macpool_lease_relationship.go index bdc78797cc..7f76834a3d 100644 --- a/intersight_gosdk/model_macpool_lease_relationship.go +++ b/intersight_gosdk/model_macpool_lease_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_lease_response.go b/intersight_gosdk/model_macpool_lease_response.go index 1434ffecc0..810bfc4d3a 100644 --- a/intersight_gosdk/model_macpool_lease_response.go +++ b/intersight_gosdk/model_macpool_lease_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_member_of.go b/intersight_gosdk/model_macpool_member_of.go index 06e60b8bd8..b8b5a69ed8 100644 --- a/intersight_gosdk/model_macpool_member_of.go +++ b/intersight_gosdk/model_macpool_member_of.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_pool.go b/intersight_gosdk/model_macpool_pool.go index 783a7707ee..385543265d 100644 --- a/intersight_gosdk/model_macpool_pool.go +++ b/intersight_gosdk/model_macpool_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_pool_list.go b/intersight_gosdk/model_macpool_pool_list.go index e9f38139d4..01cc27c5e0 100644 --- a/intersight_gosdk/model_macpool_pool_list.go +++ b/intersight_gosdk/model_macpool_pool_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_pool_member.go b/intersight_gosdk/model_macpool_pool_member.go index f3a99fab7b..8276ab95e8 100644 --- a/intersight_gosdk/model_macpool_pool_member.go +++ b/intersight_gosdk/model_macpool_pool_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_pool_member_list.go b/intersight_gosdk/model_macpool_pool_member_list.go index 3fe2177fe4..3e5924affb 100644 --- a/intersight_gosdk/model_macpool_pool_member_list.go +++ b/intersight_gosdk/model_macpool_pool_member_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_pool_member_relationship.go b/intersight_gosdk/model_macpool_pool_member_relationship.go index 43ba6953ad..e29b2d262d 100644 --- a/intersight_gosdk/model_macpool_pool_member_relationship.go +++ b/intersight_gosdk/model_macpool_pool_member_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_pool_member_response.go b/intersight_gosdk/model_macpool_pool_member_response.go index 8f949377d8..0f6c5d99e5 100644 --- a/intersight_gosdk/model_macpool_pool_member_response.go +++ b/intersight_gosdk/model_macpool_pool_member_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_pool_relationship.go b/intersight_gosdk/model_macpool_pool_relationship.go index cc2be644f3..b2b4da1d0a 100644 --- a/intersight_gosdk/model_macpool_pool_relationship.go +++ b/intersight_gosdk/model_macpool_pool_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_pool_response.go b/intersight_gosdk/model_macpool_pool_response.go index 397f4d65f3..f046b59fe8 100644 --- a/intersight_gosdk/model_macpool_pool_response.go +++ b/intersight_gosdk/model_macpool_pool_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_reservation.go b/intersight_gosdk/model_macpool_reservation.go index aa2eedfbca..e1ccf3370f 100644 --- a/intersight_gosdk/model_macpool_reservation.go +++ b/intersight_gosdk/model_macpool_reservation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_reservation_list.go b/intersight_gosdk/model_macpool_reservation_list.go index 90b3e56c6a..5a864c727e 100644 --- a/intersight_gosdk/model_macpool_reservation_list.go +++ b/intersight_gosdk/model_macpool_reservation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_reservation_reference.go b/intersight_gosdk/model_macpool_reservation_reference.go index 6ee679f313..9f1be3ae5d 100644 --- a/intersight_gosdk/model_macpool_reservation_reference.go +++ b/intersight_gosdk/model_macpool_reservation_reference.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_reservation_relationship.go b/intersight_gosdk/model_macpool_reservation_relationship.go index 2ab3984ccb..9a01ecc066 100644 --- a/intersight_gosdk/model_macpool_reservation_relationship.go +++ b/intersight_gosdk/model_macpool_reservation_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_reservation_response.go b/intersight_gosdk/model_macpool_reservation_response.go index f988ae195a..4f1c965ed6 100644 --- a/intersight_gosdk/model_macpool_reservation_response.go +++ b/intersight_gosdk/model_macpool_reservation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_universe.go b/intersight_gosdk/model_macpool_universe.go index ebebc4e999..4e9b0e558d 100644 --- a/intersight_gosdk/model_macpool_universe.go +++ b/intersight_gosdk/model_macpool_universe.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_universe_list.go b/intersight_gosdk/model_macpool_universe_list.go index b0777dd883..d8f84eb30d 100644 --- a/intersight_gosdk/model_macpool_universe_list.go +++ b/intersight_gosdk/model_macpool_universe_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_universe_relationship.go b/intersight_gosdk/model_macpool_universe_relationship.go index c8ed796e69..0032d320f7 100644 --- a/intersight_gosdk/model_macpool_universe_relationship.go +++ b/intersight_gosdk/model_macpool_universe_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_universe_response.go b/intersight_gosdk/model_macpool_universe_response.go index 7d780693dd..9342620a41 100644 --- a/intersight_gosdk/model_macpool_universe_response.go +++ b/intersight_gosdk/model_macpool_universe_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_management_controller.go b/intersight_gosdk/model_management_controller.go index 381b52de18..aefe114efe 100644 --- a/intersight_gosdk/model_management_controller.go +++ b/intersight_gosdk/model_management_controller.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_management_controller_list.go b/intersight_gosdk/model_management_controller_list.go index ba7bee6309..f0f231b2e6 100644 --- a/intersight_gosdk/model_management_controller_list.go +++ b/intersight_gosdk/model_management_controller_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_management_controller_relationship.go b/intersight_gosdk/model_management_controller_relationship.go index 0329216d26..1fdda91624 100644 --- a/intersight_gosdk/model_management_controller_relationship.go +++ b/intersight_gosdk/model_management_controller_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_management_controller_response.go b/intersight_gosdk/model_management_controller_response.go index 05186308bd..01d34962c7 100644 --- a/intersight_gosdk/model_management_controller_response.go +++ b/intersight_gosdk/model_management_controller_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_management_entity.go b/intersight_gosdk/model_management_entity.go index 3db40b532b..41e1c2b750 100644 --- a/intersight_gosdk/model_management_entity.go +++ b/intersight_gosdk/model_management_entity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_management_entity_list.go b/intersight_gosdk/model_management_entity_list.go index ad6fe42a75..352f9096a9 100644 --- a/intersight_gosdk/model_management_entity_list.go +++ b/intersight_gosdk/model_management_entity_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_management_entity_relationship.go b/intersight_gosdk/model_management_entity_relationship.go index 8ff70cc4f8..b0ca7cf468 100644 --- a/intersight_gosdk/model_management_entity_relationship.go +++ b/intersight_gosdk/model_management_entity_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_management_entity_response.go b/intersight_gosdk/model_management_entity_response.go index f4cb52c928..64bbbd47b8 100644 --- a/intersight_gosdk/model_management_entity_response.go +++ b/intersight_gosdk/model_management_entity_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_management_interface.go b/intersight_gosdk/model_management_interface.go index cc0bb4a1cd..233806691d 100644 --- a/intersight_gosdk/model_management_interface.go +++ b/intersight_gosdk/model_management_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_management_interface_list.go b/intersight_gosdk/model_management_interface_list.go index b4c6ed05eb..2319f30c4d 100644 --- a/intersight_gosdk/model_management_interface_list.go +++ b/intersight_gosdk/model_management_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_management_interface_relationship.go b/intersight_gosdk/model_management_interface_relationship.go index 960779cf42..59d345546a 100644 --- a/intersight_gosdk/model_management_interface_relationship.go +++ b/intersight_gosdk/model_management_interface_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_management_interface_response.go b/intersight_gosdk/model_management_interface_response.go index d2a639ab0f..a281808d5b 100644 --- a/intersight_gosdk/model_management_interface_response.go +++ b/intersight_gosdk/model_management_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_marketplace_use_case.go b/intersight_gosdk/model_marketplace_use_case.go index a28c880186..b8007db795 100644 --- a/intersight_gosdk/model_marketplace_use_case.go +++ b/intersight_gosdk/model_marketplace_use_case.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_marketplace_use_case_automation.go b/intersight_gosdk/model_marketplace_use_case_automation.go index 200edf9804..5a384fbb67 100644 --- a/intersight_gosdk/model_marketplace_use_case_automation.go +++ b/intersight_gosdk/model_marketplace_use_case_automation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_marketplace_use_case_dependency.go b/intersight_gosdk/model_marketplace_use_case_dependency.go index 2a07842384..c27d3a64a3 100644 --- a/intersight_gosdk/model_marketplace_use_case_dependency.go +++ b/intersight_gosdk/model_marketplace_use_case_dependency.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_marketplace_use_case_list.go b/intersight_gosdk/model_marketplace_use_case_list.go index 8c43e0f2d9..cb273ff8c5 100644 --- a/intersight_gosdk/model_marketplace_use_case_list.go +++ b/intersight_gosdk/model_marketplace_use_case_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_marketplace_use_case_locale.go b/intersight_gosdk/model_marketplace_use_case_locale.go index eb6024a899..6740c96796 100644 --- a/intersight_gosdk/model_marketplace_use_case_locale.go +++ b/intersight_gosdk/model_marketplace_use_case_locale.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -36,7 +36,7 @@ type MarketplaceUseCaseLocale struct { // A base64-encoded image for the use case. Icon *string `json:"Icon,omitempty"` // The string field to hold the locale. - Locale *string `json:"Locale,omitempty"` + Locale *string `json:"Locale,omitempty" validate:"regexp=^$|^[a-z]{2,4}(-[A-Z][a-z]{3})?(-([A-Za-z]{2}|[0-9]{3}))?$"` // The string field to hold the name value. Name *string `json:"Name,omitempty"` // The string field to hold the summary value. @@ -462,7 +462,7 @@ func (o *MarketplaceUseCaseLocale) UnmarshalJSON(data []byte) (err error) { // A base64-encoded image for the use case. Icon *string `json:"Icon,omitempty"` // The string field to hold the locale. - Locale *string `json:"Locale,omitempty"` + Locale *string `json:"Locale,omitempty" validate:"regexp=^$|^[a-z]{2,4}(-[A-Z][a-z]{3})?(-([A-Za-z]{2}|[0-9]{3}))?$"` // The string field to hold the name value. Name *string `json:"Name,omitempty"` // The string field to hold the summary value. diff --git a/intersight_gosdk/model_marketplace_use_case_relationship.go b/intersight_gosdk/model_marketplace_use_case_relationship.go index ba0c9b67ca..548f9443d0 100644 --- a/intersight_gosdk/model_marketplace_use_case_relationship.go +++ b/intersight_gosdk/model_marketplace_use_case_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_marketplace_use_case_response.go b/intersight_gosdk/model_marketplace_use_case_response.go index 22dee56ae4..4271659232 100644 --- a/intersight_gosdk/model_marketplace_use_case_response.go +++ b/intersight_gosdk/model_marketplace_use_case_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_marketplace_use_case_version.go b/intersight_gosdk/model_marketplace_use_case_version.go index 2e7ca42b4a..8e27726ac9 100644 --- a/intersight_gosdk/model_marketplace_use_case_version.go +++ b/intersight_gosdk/model_marketplace_use_case_version.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_marketplace_use_case_version_list.go b/intersight_gosdk/model_marketplace_use_case_version_list.go index bf5cb7dfa1..1bea4e1376 100644 --- a/intersight_gosdk/model_marketplace_use_case_version_list.go +++ b/intersight_gosdk/model_marketplace_use_case_version_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_marketplace_use_case_version_locale.go b/intersight_gosdk/model_marketplace_use_case_version_locale.go index e609f8c7c1..d82fd9345c 100644 --- a/intersight_gosdk/model_marketplace_use_case_version_locale.go +++ b/intersight_gosdk/model_marketplace_use_case_version_locale.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type MarketplaceUseCaseVersionLocale struct { // The string field to hold the description. Description *string `json:"Description,omitempty"` // The string field to hold the locale. - Locale *string `json:"Locale,omitempty"` + Locale *string `json:"Locale,omitempty" validate:"regexp=^$|^[a-z]{2,4}(-[A-Z][a-z]{3})?(-([A-Za-z]{2}|[0-9]{3}))?$"` AdditionalProperties map[string]interface{} } @@ -272,7 +272,7 @@ func (o *MarketplaceUseCaseVersionLocale) UnmarshalJSON(data []byte) (err error) // The string field to hold the description. Description *string `json:"Description,omitempty"` // The string field to hold the locale. - Locale *string `json:"Locale,omitempty"` + Locale *string `json:"Locale,omitempty" validate:"regexp=^$|^[a-z]{2,4}(-[A-Z][a-z]{3})?(-([A-Za-z]{2}|[0-9]{3}))?$"` } varMarketplaceUseCaseVersionLocaleWithoutEmbeddedStruct := MarketplaceUseCaseVersionLocaleWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_marketplace_use_case_version_resource.go b/intersight_gosdk/model_marketplace_use_case_version_resource.go index ecaf42f571..f6267de528 100644 --- a/intersight_gosdk/model_marketplace_use_case_version_resource.go +++ b/intersight_gosdk/model_marketplace_use_case_version_resource.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_marketplace_use_case_version_response.go b/intersight_gosdk/model_marketplace_use_case_version_response.go index 2ea53b2b95..9b42a6ac40 100644 --- a/intersight_gosdk/model_marketplace_use_case_version_response.go +++ b/intersight_gosdk/model_marketplace_use_case_version_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_abstract_unit.go b/intersight_gosdk/model_memory_abstract_unit.go index 2035bcee03..29953766ad 100644 --- a/intersight_gosdk/model_memory_abstract_unit.go +++ b/intersight_gosdk/model_memory_abstract_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_array.go b/intersight_gosdk/model_memory_array.go index 46d6bf2bdd..f9b2c58363 100644 --- a/intersight_gosdk/model_memory_array.go +++ b/intersight_gosdk/model_memory_array.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_array_list.go b/intersight_gosdk/model_memory_array_list.go index c6917690f0..dc480d5f74 100644 --- a/intersight_gosdk/model_memory_array_list.go +++ b/intersight_gosdk/model_memory_array_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_array_relationship.go b/intersight_gosdk/model_memory_array_relationship.go index 173df8fac2..445ebbc712 100644 --- a/intersight_gosdk/model_memory_array_relationship.go +++ b/intersight_gosdk/model_memory_array_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_array_response.go b/intersight_gosdk/model_memory_array_response.go index 3a8011c945..0ea5a4ea54 100644 --- a/intersight_gosdk/model_memory_array_response.go +++ b/intersight_gosdk/model_memory_array_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_config_result.go b/intersight_gosdk/model_memory_persistent_memory_config_result.go index 4677b7bcc2..382e854183 100644 --- a/intersight_gosdk/model_memory_persistent_memory_config_result.go +++ b/intersight_gosdk/model_memory_persistent_memory_config_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_config_result_list.go b/intersight_gosdk/model_memory_persistent_memory_config_result_list.go index b0a140b174..36142e0aa2 100644 --- a/intersight_gosdk/model_memory_persistent_memory_config_result_list.go +++ b/intersight_gosdk/model_memory_persistent_memory_config_result_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_config_result_relationship.go b/intersight_gosdk/model_memory_persistent_memory_config_result_relationship.go index 03f95866ac..64df96b3b2 100644 --- a/intersight_gosdk/model_memory_persistent_memory_config_result_relationship.go +++ b/intersight_gosdk/model_memory_persistent_memory_config_result_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_config_result_response.go b/intersight_gosdk/model_memory_persistent_memory_config_result_response.go index 3232a4d99b..bdc9fa2018 100644 --- a/intersight_gosdk/model_memory_persistent_memory_config_result_response.go +++ b/intersight_gosdk/model_memory_persistent_memory_config_result_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_configuration.go b/intersight_gosdk/model_memory_persistent_memory_configuration.go index 79b5380dea..2fae83b842 100644 --- a/intersight_gosdk/model_memory_persistent_memory_configuration.go +++ b/intersight_gosdk/model_memory_persistent_memory_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_configuration_list.go b/intersight_gosdk/model_memory_persistent_memory_configuration_list.go index 4904f3ce21..b2f2e1a9a9 100644 --- a/intersight_gosdk/model_memory_persistent_memory_configuration_list.go +++ b/intersight_gosdk/model_memory_persistent_memory_configuration_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_configuration_relationship.go b/intersight_gosdk/model_memory_persistent_memory_configuration_relationship.go index 05cc6a4f3b..763c383170 100644 --- a/intersight_gosdk/model_memory_persistent_memory_configuration_relationship.go +++ b/intersight_gosdk/model_memory_persistent_memory_configuration_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_configuration_response.go b/intersight_gosdk/model_memory_persistent_memory_configuration_response.go index ea3930dd64..b228483bd9 100644 --- a/intersight_gosdk/model_memory_persistent_memory_configuration_response.go +++ b/intersight_gosdk/model_memory_persistent_memory_configuration_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_goal.go b/intersight_gosdk/model_memory_persistent_memory_goal.go index 095fc85683..03845d7d90 100644 --- a/intersight_gosdk/model_memory_persistent_memory_goal.go +++ b/intersight_gosdk/model_memory_persistent_memory_goal.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_local_security.go b/intersight_gosdk/model_memory_persistent_memory_local_security.go index 7b78148267..25ce1ecfdc 100644 --- a/intersight_gosdk/model_memory_persistent_memory_local_security.go +++ b/intersight_gosdk/model_memory_persistent_memory_local_security.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type MemoryPersistentMemoryLocalSecurity struct { // Indicates whether the value of the 'securePassphrase' property has been set. IsSecurePassphraseSet *bool `json:"IsSecurePassphraseSet,omitempty"` // Secure passphrase to be applied on the Persistent Memory Modules on the server. The allowed characters are a-z, A to Z, 0-9, and special characters =, \\u0021, &, \\#, $, %, +, ^, @, _, *, -. - SecurePassphrase *string `json:"SecurePassphrase,omitempty"` + SecurePassphrase *string `json:"SecurePassphrase,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` AdditionalProperties map[string]interface{} } @@ -315,7 +315,7 @@ func (o *MemoryPersistentMemoryLocalSecurity) UnmarshalJSON(data []byte) (err er // Indicates whether the value of the 'securePassphrase' property has been set. IsSecurePassphraseSet *bool `json:"IsSecurePassphraseSet,omitempty"` // Secure passphrase to be applied on the Persistent Memory Modules on the server. The allowed characters are a-z, A to Z, 0-9, and special characters =, \\u0021, &, \\#, $, %, +, ^, @, _, *, -. - SecurePassphrase *string `json:"SecurePassphrase,omitempty"` + SecurePassphrase *string `json:"SecurePassphrase,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` } varMemoryPersistentMemoryLocalSecurityWithoutEmbeddedStruct := MemoryPersistentMemoryLocalSecurityWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_memory_persistent_memory_logical_namespace.go b/intersight_gosdk/model_memory_persistent_memory_logical_namespace.go index 7e70ce8808..73473bed9d 100644 --- a/intersight_gosdk/model_memory_persistent_memory_logical_namespace.go +++ b/intersight_gosdk/model_memory_persistent_memory_logical_namespace.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type MemoryPersistentMemoryLogicalNamespace struct { // Mode of this Namespace that is created or modified. * `raw` - The raw mode of Persistent Memory Namespace. * `block` - The block mode of Persistent Memory Namespace. Mode *string `json:"Mode,omitempty"` // Name of this Namespace to be created on the server. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9#_-][a-zA-Z0-9#_ -]*$"` // Socket ID of the region on which this Namespace has to be created or modified. * `1` - The first CPU socket in a server. * `2` - The second CPU socket in a server. * `3` - The third CPU socket in a server. * `4` - The fourth CPU socket in a server. SocketId *int32 `json:"SocketId,omitempty"` // Socket Memory ID of the region on which this Namespace has to be created or modified. * `Not Applicable` - The socket memory ID is not applicable if app-direct persistent memory type is selected in the goal. * `2` - The second socket memory ID within a socket in a server. * `4` - The fourth socket memory ID within a socket in a server. * `6` - The sixth socket memory ID within a socket in a server. * `8` - The eighth socket memory ID within a socket in a server. * `10` - The tenth socket memory ID within a socket in a server. * `12` - The twelfth socket memory ID within a socket in a server. @@ -397,7 +397,7 @@ func (o *MemoryPersistentMemoryLogicalNamespace) UnmarshalJSON(data []byte) (err // Mode of this Namespace that is created or modified. * `raw` - The raw mode of Persistent Memory Namespace. * `block` - The block mode of Persistent Memory Namespace. Mode *string `json:"Mode,omitempty"` // Name of this Namespace to be created on the server. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9#_-][a-zA-Z0-9#_ -]*$"` // Socket ID of the region on which this Namespace has to be created or modified. * `1` - The first CPU socket in a server. * `2` - The second CPU socket in a server. * `3` - The third CPU socket in a server. * `4` - The fourth CPU socket in a server. SocketId *int32 `json:"SocketId,omitempty"` // Socket Memory ID of the region on which this Namespace has to be created or modified. * `Not Applicable` - The socket memory ID is not applicable if app-direct persistent memory type is selected in the goal. * `2` - The second socket memory ID within a socket in a server. * `4` - The fourth socket memory ID within a socket in a server. * `6` - The sixth socket memory ID within a socket in a server. * `8` - The eighth socket memory ID within a socket in a server. * `10` - The tenth socket memory ID within a socket in a server. * `12` - The twelfth socket memory ID within a socket in a server. diff --git a/intersight_gosdk/model_memory_persistent_memory_namespace.go b/intersight_gosdk/model_memory_persistent_memory_namespace.go index a6e2bedfa8..68ebc18ebd 100644 --- a/intersight_gosdk/model_memory_persistent_memory_namespace.go +++ b/intersight_gosdk/model_memory_persistent_memory_namespace.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_namespace_config_result.go b/intersight_gosdk/model_memory_persistent_memory_namespace_config_result.go index a160f558af..9bb1c438c8 100644 --- a/intersight_gosdk/model_memory_persistent_memory_namespace_config_result.go +++ b/intersight_gosdk/model_memory_persistent_memory_namespace_config_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_namespace_config_result_list.go b/intersight_gosdk/model_memory_persistent_memory_namespace_config_result_list.go index d5955639fe..83e072a605 100644 --- a/intersight_gosdk/model_memory_persistent_memory_namespace_config_result_list.go +++ b/intersight_gosdk/model_memory_persistent_memory_namespace_config_result_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_namespace_config_result_relationship.go b/intersight_gosdk/model_memory_persistent_memory_namespace_config_result_relationship.go index 95cb086777..7ba394b140 100644 --- a/intersight_gosdk/model_memory_persistent_memory_namespace_config_result_relationship.go +++ b/intersight_gosdk/model_memory_persistent_memory_namespace_config_result_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_namespace_config_result_response.go b/intersight_gosdk/model_memory_persistent_memory_namespace_config_result_response.go index 32d96d02bd..c50eb84b3b 100644 --- a/intersight_gosdk/model_memory_persistent_memory_namespace_config_result_response.go +++ b/intersight_gosdk/model_memory_persistent_memory_namespace_config_result_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_namespace_list.go b/intersight_gosdk/model_memory_persistent_memory_namespace_list.go index 90cdf97139..05dd9b23eb 100644 --- a/intersight_gosdk/model_memory_persistent_memory_namespace_list.go +++ b/intersight_gosdk/model_memory_persistent_memory_namespace_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_namespace_relationship.go b/intersight_gosdk/model_memory_persistent_memory_namespace_relationship.go index 9fb62513d6..5d08add468 100644 --- a/intersight_gosdk/model_memory_persistent_memory_namespace_relationship.go +++ b/intersight_gosdk/model_memory_persistent_memory_namespace_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_namespace_response.go b/intersight_gosdk/model_memory_persistent_memory_namespace_response.go index ed4b1a786b..763e35d0cb 100644 --- a/intersight_gosdk/model_memory_persistent_memory_namespace_response.go +++ b/intersight_gosdk/model_memory_persistent_memory_namespace_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_policy.go b/intersight_gosdk/model_memory_persistent_memory_policy.go index c7160819b6..99256487fd 100644 --- a/intersight_gosdk/model_memory_persistent_memory_policy.go +++ b/intersight_gosdk/model_memory_persistent_memory_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_policy_list.go b/intersight_gosdk/model_memory_persistent_memory_policy_list.go index 3a00db7165..2a15501ae8 100644 --- a/intersight_gosdk/model_memory_persistent_memory_policy_list.go +++ b/intersight_gosdk/model_memory_persistent_memory_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_policy_response.go b/intersight_gosdk/model_memory_persistent_memory_policy_response.go index 4536623429..e9a6ae76cf 100644 --- a/intersight_gosdk/model_memory_persistent_memory_policy_response.go +++ b/intersight_gosdk/model_memory_persistent_memory_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_region.go b/intersight_gosdk/model_memory_persistent_memory_region.go index 62a1084507..749b620011 100644 --- a/intersight_gosdk/model_memory_persistent_memory_region.go +++ b/intersight_gosdk/model_memory_persistent_memory_region.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_region_list.go b/intersight_gosdk/model_memory_persistent_memory_region_list.go index e626000130..397cc8cb6c 100644 --- a/intersight_gosdk/model_memory_persistent_memory_region_list.go +++ b/intersight_gosdk/model_memory_persistent_memory_region_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_region_relationship.go b/intersight_gosdk/model_memory_persistent_memory_region_relationship.go index f5ff92aa60..838b36955b 100644 --- a/intersight_gosdk/model_memory_persistent_memory_region_relationship.go +++ b/intersight_gosdk/model_memory_persistent_memory_region_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_region_response.go b/intersight_gosdk/model_memory_persistent_memory_region_response.go index 724296593a..4c218f5213 100644 --- a/intersight_gosdk/model_memory_persistent_memory_region_response.go +++ b/intersight_gosdk/model_memory_persistent_memory_region_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_unit.go b/intersight_gosdk/model_memory_persistent_memory_unit.go index d331db7245..57fb06b7b6 100644 --- a/intersight_gosdk/model_memory_persistent_memory_unit.go +++ b/intersight_gosdk/model_memory_persistent_memory_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_unit_list.go b/intersight_gosdk/model_memory_persistent_memory_unit_list.go index 3666656c41..37c8cd22f1 100644 --- a/intersight_gosdk/model_memory_persistent_memory_unit_list.go +++ b/intersight_gosdk/model_memory_persistent_memory_unit_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_unit_relationship.go b/intersight_gosdk/model_memory_persistent_memory_unit_relationship.go index a96d514242..4a34abc91e 100644 --- a/intersight_gosdk/model_memory_persistent_memory_unit_relationship.go +++ b/intersight_gosdk/model_memory_persistent_memory_unit_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_unit_response.go b/intersight_gosdk/model_memory_persistent_memory_unit_response.go index 734c3cf3f5..bbab36877b 100644 --- a/intersight_gosdk/model_memory_persistent_memory_unit_response.go +++ b/intersight_gosdk/model_memory_persistent_memory_unit_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_unit.go b/intersight_gosdk/model_memory_unit.go index 2de9678373..cd3dd9906c 100644 --- a/intersight_gosdk/model_memory_unit.go +++ b/intersight_gosdk/model_memory_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_unit_list.go b/intersight_gosdk/model_memory_unit_list.go index ead9df4c76..7601147ff0 100644 --- a/intersight_gosdk/model_memory_unit_list.go +++ b/intersight_gosdk/model_memory_unit_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_unit_relationship.go b/intersight_gosdk/model_memory_unit_relationship.go index d8618996f8..f10f72be3b 100644 --- a/intersight_gosdk/model_memory_unit_relationship.go +++ b/intersight_gosdk/model_memory_unit_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_unit_response.go b/intersight_gosdk/model_memory_unit_response.go index 92c7f5b5fc..55cd33ca26 100644 --- a/intersight_gosdk/model_memory_unit_response.go +++ b/intersight_gosdk/model_memory_unit_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_device.go b/intersight_gosdk/model_meraki_device.go index 152bfb47b8..ce1a0696d3 100644 --- a/intersight_gosdk/model_meraki_device.go +++ b/intersight_gosdk/model_meraki_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_device_list.go b/intersight_gosdk/model_meraki_device_list.go index de70b81545..4eae275e8c 100644 --- a/intersight_gosdk/model_meraki_device_list.go +++ b/intersight_gosdk/model_meraki_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_device_relationship.go b/intersight_gosdk/model_meraki_device_relationship.go index e630d16968..94cd311011 100644 --- a/intersight_gosdk/model_meraki_device_relationship.go +++ b/intersight_gosdk/model_meraki_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_device_response.go b/intersight_gosdk/model_meraki_device_response.go index 39b9ead5ef..76362e6378 100644 --- a/intersight_gosdk/model_meraki_device_response.go +++ b/intersight_gosdk/model_meraki_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_network.go b/intersight_gosdk/model_meraki_network.go index 112da2cf68..c60f118d9f 100644 --- a/intersight_gosdk/model_meraki_network.go +++ b/intersight_gosdk/model_meraki_network.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_network_list.go b/intersight_gosdk/model_meraki_network_list.go index f5cddc0912..4bba866d5b 100644 --- a/intersight_gosdk/model_meraki_network_list.go +++ b/intersight_gosdk/model_meraki_network_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_network_relationship.go b/intersight_gosdk/model_meraki_network_relationship.go index d27e8ced6d..e60b4677fe 100644 --- a/intersight_gosdk/model_meraki_network_relationship.go +++ b/intersight_gosdk/model_meraki_network_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_network_response.go b/intersight_gosdk/model_meraki_network_response.go index aa8943913d..01878741a6 100644 --- a/intersight_gosdk/model_meraki_network_response.go +++ b/intersight_gosdk/model_meraki_network_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_organization.go b/intersight_gosdk/model_meraki_organization.go index 76c362a574..9d0990ac90 100644 --- a/intersight_gosdk/model_meraki_organization.go +++ b/intersight_gosdk/model_meraki_organization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_organization_list.go b/intersight_gosdk/model_meraki_organization_list.go index e2464b0def..f37df95627 100644 --- a/intersight_gosdk/model_meraki_organization_list.go +++ b/intersight_gosdk/model_meraki_organization_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_organization_relationship.go b/intersight_gosdk/model_meraki_organization_relationship.go index ecf68b570f..e034fdb8e7 100644 --- a/intersight_gosdk/model_meraki_organization_relationship.go +++ b/intersight_gosdk/model_meraki_organization_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_organization_response.go b/intersight_gosdk/model_meraki_organization_response.go index 618b6cec52..556e86fd58 100644 --- a/intersight_gosdk/model_meraki_organization_response.go +++ b/intersight_gosdk/model_meraki_organization_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_port_profile.go b/intersight_gosdk/model_meraki_port_profile.go index 044a37f59c..eb52fb4899 100644 --- a/intersight_gosdk/model_meraki_port_profile.go +++ b/intersight_gosdk/model_meraki_port_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_port_profile_list.go b/intersight_gosdk/model_meraki_port_profile_list.go index 12108ec689..87a45ea0d2 100644 --- a/intersight_gosdk/model_meraki_port_profile_list.go +++ b/intersight_gosdk/model_meraki_port_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_port_profile_response.go b/intersight_gosdk/model_meraki_port_profile_response.go index 52bc8382b9..7bae672859 100644 --- a/intersight_gosdk/model_meraki_port_profile_response.go +++ b/intersight_gosdk/model_meraki_port_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_tag.go b/intersight_gosdk/model_meraki_tag.go index 9574a6dadc..877c35f772 100644 --- a/intersight_gosdk/model_meraki_tag.go +++ b/intersight_gosdk/model_meraki_tag.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_tag_list.go b/intersight_gosdk/model_meraki_tag_list.go index 22ac8a3246..245d0998f1 100644 --- a/intersight_gosdk/model_meraki_tag_list.go +++ b/intersight_gosdk/model_meraki_tag_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_tag_response.go b/intersight_gosdk/model_meraki_tag_response.go index 375b03b56e..e919102650 100644 --- a/intersight_gosdk/model_meraki_tag_response.go +++ b/intersight_gosdk/model_meraki_tag_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meta_access_privilege.go b/intersight_gosdk/model_meta_access_privilege.go index 95ed987c19..3bab0fdc59 100644 --- a/intersight_gosdk/model_meta_access_privilege.go +++ b/intersight_gosdk/model_meta_access_privilege.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meta_definition.go b/intersight_gosdk/model_meta_definition.go index 0b3cc3d502..c5e3121c3e 100644 --- a/intersight_gosdk/model_meta_definition.go +++ b/intersight_gosdk/model_meta_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meta_definition_list.go b/intersight_gosdk/model_meta_definition_list.go index e1333637f0..15a69ef2b7 100644 --- a/intersight_gosdk/model_meta_definition_list.go +++ b/intersight_gosdk/model_meta_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meta_definition_response.go b/intersight_gosdk/model_meta_definition_response.go index cce2c9a5f1..fc5ac2872b 100644 --- a/intersight_gosdk/model_meta_definition_response.go +++ b/intersight_gosdk/model_meta_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meta_display_name_definition.go b/intersight_gosdk/model_meta_display_name_definition.go index 6667f162ae..f041e59eee 100644 --- a/intersight_gosdk/model_meta_display_name_definition.go +++ b/intersight_gosdk/model_meta_display_name_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meta_identity_definition.go b/intersight_gosdk/model_meta_identity_definition.go index f205d65465..aac7a0ede7 100644 --- a/intersight_gosdk/model_meta_identity_definition.go +++ b/intersight_gosdk/model_meta_identity_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meta_prop_definition.go b/intersight_gosdk/model_meta_prop_definition.go index b392cc7b62..9a9742e7f4 100644 --- a/intersight_gosdk/model_meta_prop_definition.go +++ b/intersight_gosdk/model_meta_prop_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meta_relationship_definition.go b/intersight_gosdk/model_meta_relationship_definition.go index d08b86d6ff..cabf5490ad 100644 --- a/intersight_gosdk/model_meta_relationship_definition.go +++ b/intersight_gosdk/model_meta_relationship_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_metrics_metric_criterion.go b/intersight_gosdk/model_metrics_metric_criterion.go index 9107ae03a0..0827b86062 100644 --- a/intersight_gosdk/model_metrics_metric_criterion.go +++ b/intersight_gosdk/model_metrics_metric_criterion.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_metrics_metrics_exploration.go b/intersight_gosdk/model_metrics_metrics_exploration.go index 8f171de607..2aba0b09b1 100644 --- a/intersight_gosdk/model_metrics_metrics_exploration.go +++ b/intersight_gosdk/model_metrics_metrics_exploration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_metrics_metrics_exploration_list.go b/intersight_gosdk/model_metrics_metrics_exploration_list.go index e21c793190..7dc53c1fde 100644 --- a/intersight_gosdk/model_metrics_metrics_exploration_list.go +++ b/intersight_gosdk/model_metrics_metrics_exploration_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_metrics_metrics_exploration_response.go b/intersight_gosdk/model_metrics_metrics_exploration_response.go index 5aed506c78..cbbe024590 100644 --- a/intersight_gosdk/model_metrics_metrics_exploration_response.go +++ b/intersight_gosdk/model_metrics_metrics_exploration_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_mo_aggregate_transform.go b/intersight_gosdk/model_mo_aggregate_transform.go index 20db89fedd..cd01e7d062 100644 --- a/intersight_gosdk/model_mo_aggregate_transform.go +++ b/intersight_gosdk/model_mo_aggregate_transform.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_mo_base_complex_type.go b/intersight_gosdk/model_mo_base_complex_type.go index ec13b32b57..d2bb60e8fb 100644 --- a/intersight_gosdk/model_mo_base_complex_type.go +++ b/intersight_gosdk/model_mo_base_complex_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_mo_base_mo.go b/intersight_gosdk/model_mo_base_mo.go index e45712ca2f..1afc3feeae 100644 --- a/intersight_gosdk/model_mo_base_mo.go +++ b/intersight_gosdk/model_mo_base_mo.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_mo_base_mo_relationship.go b/intersight_gosdk/model_mo_base_mo_relationship.go index 104ab4f505..786752fee2 100644 --- a/intersight_gosdk/model_mo_base_mo_relationship.go +++ b/intersight_gosdk/model_mo_base_mo_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_mo_base_response.go b/intersight_gosdk/model_mo_base_response.go index 9a80934e3e..2ae00c0529 100644 --- a/intersight_gosdk/model_mo_base_response.go +++ b/intersight_gosdk/model_mo_base_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_mo_document_count.go b/intersight_gosdk/model_mo_document_count.go index 46498e364a..877ef93f4f 100644 --- a/intersight_gosdk/model_mo_document_count.go +++ b/intersight_gosdk/model_mo_document_count.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_mo_mo_ref.go b/intersight_gosdk/model_mo_mo_ref.go index 647fda2b60..aa8f6427be 100644 --- a/intersight_gosdk/model_mo_mo_ref.go +++ b/intersight_gosdk/model_mo_mo_ref.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_mo_tag.go b/intersight_gosdk/model_mo_tag.go index 47057c9f65..92979724bb 100644 --- a/intersight_gosdk/model_mo_tag.go +++ b/intersight_gosdk/model_mo_tag.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_mo_tag_key_summary.go b/intersight_gosdk/model_mo_tag_key_summary.go index 34b91d6be6..c12597c8b9 100644 --- a/intersight_gosdk/model_mo_tag_key_summary.go +++ b/intersight_gosdk/model_mo_tag_key_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_mo_tag_summary.go b/intersight_gosdk/model_mo_tag_summary.go index cfec1b58aa..9cc5543305 100644 --- a/intersight_gosdk/model_mo_tag_summary.go +++ b/intersight_gosdk/model_mo_tag_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_mo_version_context.go b/intersight_gosdk/model_mo_version_context.go index 4480381580..cf1d13b679 100644 --- a/intersight_gosdk/model_mo_version_context.go +++ b/intersight_gosdk/model_mo_version_context.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_monitoring_category_status.go b/intersight_gosdk/model_monitoring_category_status.go index e19eda7338..98c4e960d6 100644 --- a/intersight_gosdk/model_monitoring_category_status.go +++ b/intersight_gosdk/model_monitoring_category_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type MonitoringCategoryStatus struct { // Name of the category for which status is being reported (for e.g. 'Licensing', 'Advisories'). CategoryLabel *string `json:"CategoryLabel,omitempty"` // Link to the corresponding category specific page in Intersight to get additional information and troubleshoot. for e.g. 'Alarms' category would have the deeplink as 'https://intersight.com/an/cond/alarms/active'. - Deeplink *string `json:"Deeplink,omitempty"` + Deeplink *string `json:"Deeplink,omitempty" validate:"regexp=^$|^(?:http(s)?:\\/\\/)?[\\\\w.-]+(?:\\\\.[\\\\w\\\\.-]+)+[\\\\w\\\\-\\\\._~:\\/?#[\\\\]@!\\\\$&'\\\\(\\\\)\\\\*\\\\+,;=.]+$"` // Additional information regarding category status that may be displayed in UI related to the category status. Optional and currently unused. Details *string `json:"Details,omitempty"` // Additional parameter to be used for traceability and troubleshooting, currently unused. @@ -383,7 +383,7 @@ func (o *MonitoringCategoryStatus) UnmarshalJSON(data []byte) (err error) { // Name of the category for which status is being reported (for e.g. 'Licensing', 'Advisories'). CategoryLabel *string `json:"CategoryLabel,omitempty"` // Link to the corresponding category specific page in Intersight to get additional information and troubleshoot. for e.g. 'Alarms' category would have the deeplink as 'https://intersight.com/an/cond/alarms/active'. - Deeplink *string `json:"Deeplink,omitempty"` + Deeplink *string `json:"Deeplink,omitempty" validate:"regexp=^$|^(?:http(s)?:\\/\\/)?[\\\\w.-]+(?:\\\\.[\\\\w\\\\.-]+)+[\\\\w\\\\-\\\\._~:\\/?#[\\\\]@!\\\\$&'\\\\(\\\\)\\\\*\\\\+,;=.]+$"` // Additional information regarding category status that may be displayed in UI related to the category status. Optional and currently unused. Details *string `json:"Details,omitempty"` // Additional parameter to be used for traceability and troubleshooting, currently unused. diff --git a/intersight_gosdk/model_monitoring_health_status.go b/intersight_gosdk/model_monitoring_health_status.go index 679b65ef52..3946221372 100644 --- a/intersight_gosdk/model_monitoring_health_status.go +++ b/intersight_gosdk/model_monitoring_health_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_monitoring_health_status_list.go b/intersight_gosdk/model_monitoring_health_status_list.go index f00fd94d78..59b6fa3fe3 100644 --- a/intersight_gosdk/model_monitoring_health_status_list.go +++ b/intersight_gosdk/model_monitoring_health_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_monitoring_health_status_response.go b/intersight_gosdk/model_monitoring_health_status_response.go index 464a68480e..34e15ad613 100644 --- a/intersight_gosdk/model_monitoring_health_status_response.go +++ b/intersight_gosdk/model_monitoring_health_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_motemplate_action_entry.go b/intersight_gosdk/model_motemplate_action_entry.go index 6a1e84a45f..215f02960b 100644 --- a/intersight_gosdk/model_motemplate_action_entry.go +++ b/intersight_gosdk/model_motemplate_action_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_motemplate_action_param.go b/intersight_gosdk/model_motemplate_action_param.go index 5849d0ddfa..581b4df6d9 100644 --- a/intersight_gosdk/model_motemplate_action_param.go +++ b/intersight_gosdk/model_motemplate_action_param.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_motemplate_sync_error.go b/intersight_gosdk/model_motemplate_sync_error.go index a3866df0db..0e93f624fe 100644 --- a/intersight_gosdk/model_motemplate_sync_error.go +++ b/intersight_gosdk/model_motemplate_sync_error.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_discovered_neighbor.go b/intersight_gosdk/model_network_discovered_neighbor.go index ad2fcf4370..6a76efa42c 100644 --- a/intersight_gosdk/model_network_discovered_neighbor.go +++ b/intersight_gosdk/model_network_discovered_neighbor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_discovered_neighbor_list.go b/intersight_gosdk/model_network_discovered_neighbor_list.go index 6d82a91c50..9aacb64f7c 100644 --- a/intersight_gosdk/model_network_discovered_neighbor_list.go +++ b/intersight_gosdk/model_network_discovered_neighbor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_discovered_neighbor_relationship.go b/intersight_gosdk/model_network_discovered_neighbor_relationship.go index b22a661ece..1a4d0894e8 100644 --- a/intersight_gosdk/model_network_discovered_neighbor_relationship.go +++ b/intersight_gosdk/model_network_discovered_neighbor_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_discovered_neighbor_response.go b/intersight_gosdk/model_network_discovered_neighbor_response.go index 38ca551312..fc07931631 100644 --- a/intersight_gosdk/model_network_discovered_neighbor_response.go +++ b/intersight_gosdk/model_network_discovered_neighbor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_dns.go b/intersight_gosdk/model_network_dns.go index 654f20ef77..0e82654f8e 100644 --- a/intersight_gosdk/model_network_dns.go +++ b/intersight_gosdk/model_network_dns.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_dns_list.go b/intersight_gosdk/model_network_dns_list.go index dd4019e600..18290a3619 100644 --- a/intersight_gosdk/model_network_dns_list.go +++ b/intersight_gosdk/model_network_dns_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_dns_relationship.go b/intersight_gosdk/model_network_dns_relationship.go index ce53fd6ec0..34465b6df8 100644 --- a/intersight_gosdk/model_network_dns_relationship.go +++ b/intersight_gosdk/model_network_dns_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_dns_response.go b/intersight_gosdk/model_network_dns_response.go index 6e7a332578..f496f47a12 100644 --- a/intersight_gosdk/model_network_dns_response.go +++ b/intersight_gosdk/model_network_dns_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_element.go b/intersight_gosdk/model_network_element.go index 5b7aac7e38..b0c26c9747 100644 --- a/intersight_gosdk/model_network_element.go +++ b/intersight_gosdk/model_network_element.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -44,7 +44,7 @@ type NetworkElement struct { // Connection status of the switch. ConnectionStatus *string `json:"ConnectionStatus,omitempty"` // The default domain name configured on the switch. - DefaultDomain *string `json:"DefaultDomain,omitempty"` + DefaultDomain *string `json:"DefaultDomain,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+([-.]{1}[a-zA-Z0-9]+)*$"` // The user configured Ethernet operational mode for this switch (End-Host or Switching). // Deprecated EthernetMode *string `json:"EthernetMode,omitempty"` @@ -117,7 +117,7 @@ type NetworkElement struct { // Total available memory on this switch platform. TotalMemory *int64 `json:"TotalMemory,omitempty"` // The user defined label assigned to the switch. - UserLabel *string `json:"UserLabel,omitempty"` + UserLabel *string `json:"UserLabel,omitempty" validate:"regexp=^[ !#$%&\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}~a-zA-Z0-9]*$"` // Firmware version of the switch. Version *string `json:"Version,omitempty"` // An array of relationships to equipmentSwitchCard resources. @@ -3250,7 +3250,7 @@ func (o *NetworkElement) UnmarshalJSON(data []byte) (err error) { // Connection status of the switch. ConnectionStatus *string `json:"ConnectionStatus,omitempty"` // The default domain name configured on the switch. - DefaultDomain *string `json:"DefaultDomain,omitempty"` + DefaultDomain *string `json:"DefaultDomain,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+([-.]{1}[a-zA-Z0-9]+)*$"` // The user configured Ethernet operational mode for this switch (End-Host or Switching). // Deprecated EthernetMode *string `json:"EthernetMode,omitempty"` @@ -3323,7 +3323,7 @@ func (o *NetworkElement) UnmarshalJSON(data []byte) (err error) { // Total available memory on this switch platform. TotalMemory *int64 `json:"TotalMemory,omitempty"` // The user defined label assigned to the switch. - UserLabel *string `json:"UserLabel,omitempty"` + UserLabel *string `json:"UserLabel,omitempty" validate:"regexp=^[ !#$%&\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}~a-zA-Z0-9]*$"` // Firmware version of the switch. Version *string `json:"Version,omitempty"` // An array of relationships to equipmentSwitchCard resources. diff --git a/intersight_gosdk/model_network_element_list.go b/intersight_gosdk/model_network_element_list.go index 9fbdde769a..2d865008fe 100644 --- a/intersight_gosdk/model_network_element_list.go +++ b/intersight_gosdk/model_network_element_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_element_relationship.go b/intersight_gosdk/model_network_element_relationship.go index 4d905befad..6241e9bbcc 100644 --- a/intersight_gosdk/model_network_element_relationship.go +++ b/intersight_gosdk/model_network_element_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_element_response.go b/intersight_gosdk/model_network_element_response.go index 412d347250..ad7582ed70 100644 --- a/intersight_gosdk/model_network_element_response.go +++ b/intersight_gosdk/model_network_element_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_element_summary.go b/intersight_gosdk/model_network_element_summary.go index 890c67be0c..110f8c42f9 100644 --- a/intersight_gosdk/model_network_element_summary.go +++ b/intersight_gosdk/model_network_element_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -46,7 +46,7 @@ type NetworkElementSummary struct { // Connection status of the switch. ConnectionStatus *string `json:"ConnectionStatus,omitempty"` // The default domain name configured on the switch. - DefaultDomain *string `json:"DefaultDomain,omitempty"` + DefaultDomain *string `json:"DefaultDomain,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+([-.]{1}[a-zA-Z0-9]+)*$"` // The MoId of the registered device that coresponds to the server. DeviceMoId *string `json:"DeviceMoId,omitempty"` // The Distinguished Name unambiguously identifies an object in the system. @@ -156,6 +156,8 @@ type NetworkElementSummary struct { Thermal *string `json:"Thermal,omitempty"` // Total available memory on this switch platform. TotalMemory *int64 `json:"TotalMemory,omitempty"` + // The user defined label assigned to the server. + UserLabel *string `json:"UserLabel,omitempty"` // This field identifies the vendor of the given component. Vendor *string `json:"Vendor,omitempty"` // Firmware version of the switch. @@ -2288,6 +2290,38 @@ func (o *NetworkElementSummary) SetTotalMemory(v int64) { o.TotalMemory = &v } +// GetUserLabel returns the UserLabel field value if set, zero value otherwise. +func (o *NetworkElementSummary) GetUserLabel() string { + if o == nil || IsNil(o.UserLabel) { + var ret string + return ret + } + return *o.UserLabel +} + +// GetUserLabelOk returns a tuple with the UserLabel field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *NetworkElementSummary) GetUserLabelOk() (*string, bool) { + if o == nil || IsNil(o.UserLabel) { + return nil, false + } + return o.UserLabel, true +} + +// HasUserLabel returns a boolean if a field has been set. +func (o *NetworkElementSummary) HasUserLabel() bool { + if o != nil && !IsNil(o.UserLabel) { + return true + } + + return false +} + +// SetUserLabel gets a reference to the given string and assigns it to the UserLabel field. +func (o *NetworkElementSummary) SetUserLabel(v string) { + o.UserLabel = &v +} + // GetVendor returns the Vendor field value if set, zero value otherwise. func (o *NetworkElementSummary) GetVendor() string { if o == nil || IsNil(o.Vendor) { @@ -2653,6 +2687,9 @@ func (o NetworkElementSummary) ToMap() (map[string]interface{}, error) { if !IsNil(o.TotalMemory) { toSerialize["TotalMemory"] = o.TotalMemory } + if !IsNil(o.UserLabel) { + toSerialize["UserLabel"] = o.UserLabel + } if !IsNil(o.Vendor) { toSerialize["Vendor"] = o.Vendor } @@ -2738,7 +2775,7 @@ func (o *NetworkElementSummary) UnmarshalJSON(data []byte) (err error) { // Connection status of the switch. ConnectionStatus *string `json:"ConnectionStatus,omitempty"` // The default domain name configured on the switch. - DefaultDomain *string `json:"DefaultDomain,omitempty"` + DefaultDomain *string `json:"DefaultDomain,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+([-.]{1}[a-zA-Z0-9]+)*$"` // The MoId of the registered device that coresponds to the server. DeviceMoId *string `json:"DeviceMoId,omitempty"` // The Distinguished Name unambiguously identifies an object in the system. @@ -2848,6 +2885,8 @@ func (o *NetworkElementSummary) UnmarshalJSON(data []byte) (err error) { Thermal *string `json:"Thermal,omitempty"` // Total available memory on this switch platform. TotalMemory *int64 `json:"TotalMemory,omitempty"` + // The user defined label assigned to the server. + UserLabel *string `json:"UserLabel,omitempty"` // This field identifies the vendor of the given component. Vendor *string `json:"Vendor,omitempty"` // Firmware version of the switch. @@ -2926,6 +2965,7 @@ func (o *NetworkElementSummary) UnmarshalJSON(data []byte) (err error) { varNetworkElementSummary.SystemUpTime = varNetworkElementSummaryWithoutEmbeddedStruct.SystemUpTime varNetworkElementSummary.Thermal = varNetworkElementSummaryWithoutEmbeddedStruct.Thermal varNetworkElementSummary.TotalMemory = varNetworkElementSummaryWithoutEmbeddedStruct.TotalMemory + varNetworkElementSummary.UserLabel = varNetworkElementSummaryWithoutEmbeddedStruct.UserLabel varNetworkElementSummary.Vendor = varNetworkElementSummaryWithoutEmbeddedStruct.Vendor varNetworkElementSummary.Version = varNetworkElementSummaryWithoutEmbeddedStruct.Version varNetworkElementSummary.InventoryParent = varNetworkElementSummaryWithoutEmbeddedStruct.InventoryParent @@ -3012,6 +3052,7 @@ func (o *NetworkElementSummary) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "SystemUpTime") delete(additionalProperties, "Thermal") delete(additionalProperties, "TotalMemory") + delete(additionalProperties, "UserLabel") delete(additionalProperties, "Vendor") delete(additionalProperties, "Version") delete(additionalProperties, "InventoryParent") diff --git a/intersight_gosdk/model_network_element_summary_list.go b/intersight_gosdk/model_network_element_summary_list.go index 647b8eacf1..f1dc3a2327 100644 --- a/intersight_gosdk/model_network_element_summary_list.go +++ b/intersight_gosdk/model_network_element_summary_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_element_summary_relationship.go b/intersight_gosdk/model_network_element_summary_relationship.go index 9154d8130b..8943750db5 100644 --- a/intersight_gosdk/model_network_element_summary_relationship.go +++ b/intersight_gosdk/model_network_element_summary_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_element_summary_response.go b/intersight_gosdk/model_network_element_summary_response.go index ecce231c58..f2407498ab 100644 --- a/intersight_gosdk/model_network_element_summary_response.go +++ b/intersight_gosdk/model_network_element_summary_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_fc_zone_info.go b/intersight_gosdk/model_network_fc_zone_info.go index 2127d50bd3..971f280222 100644 --- a/intersight_gosdk/model_network_fc_zone_info.go +++ b/intersight_gosdk/model_network_fc_zone_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_fc_zone_info_list.go b/intersight_gosdk/model_network_fc_zone_info_list.go index 307c86930e..0c8cf8da5f 100644 --- a/intersight_gosdk/model_network_fc_zone_info_list.go +++ b/intersight_gosdk/model_network_fc_zone_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_fc_zone_info_relationship.go b/intersight_gosdk/model_network_fc_zone_info_relationship.go index c27355d199..b42b3a8d97 100644 --- a/intersight_gosdk/model_network_fc_zone_info_relationship.go +++ b/intersight_gosdk/model_network_fc_zone_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_fc_zone_info_response.go b/intersight_gosdk/model_network_fc_zone_info_response.go index 674776827b..2fb8b4c5e9 100644 --- a/intersight_gosdk/model_network_fc_zone_info_response.go +++ b/intersight_gosdk/model_network_fc_zone_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_feature_control.go b/intersight_gosdk/model_network_feature_control.go index 5f8dd86602..56a626f1ee 100644 --- a/intersight_gosdk/model_network_feature_control.go +++ b/intersight_gosdk/model_network_feature_control.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_feature_control_list.go b/intersight_gosdk/model_network_feature_control_list.go index 4537b0ea7e..8073e9a7d4 100644 --- a/intersight_gosdk/model_network_feature_control_list.go +++ b/intersight_gosdk/model_network_feature_control_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_feature_control_relationship.go b/intersight_gosdk/model_network_feature_control_relationship.go index d26919321b..3af71eb3e3 100644 --- a/intersight_gosdk/model_network_feature_control_relationship.go +++ b/intersight_gosdk/model_network_feature_control_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_feature_control_response.go b/intersight_gosdk/model_network_feature_control_response.go index 8695d9cfbe..0d0070c23b 100644 --- a/intersight_gosdk/model_network_feature_control_response.go +++ b/intersight_gosdk/model_network_feature_control_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_hyper_flex_internet_protocol_address_range.go b/intersight_gosdk/model_network_hyper_flex_internet_protocol_address_range.go index dd6cfa2a07..f800cdc10b 100644 --- a/intersight_gosdk/model_network_hyper_flex_internet_protocol_address_range.go +++ b/intersight_gosdk/model_network_hyper_flex_internet_protocol_address_range.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_hyper_flex_network_address.go b/intersight_gosdk/model_network_hyper_flex_network_address.go index 9e812634b1..3f9eb85242 100644 --- a/intersight_gosdk/model_network_hyper_flex_network_address.go +++ b/intersight_gosdk/model_network_hyper_flex_network_address.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_interface_list.go b/intersight_gosdk/model_network_interface_list.go index a9fb2b2215..2d3e4e31c2 100644 --- a/intersight_gosdk/model_network_interface_list.go +++ b/intersight_gosdk/model_network_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_interface_list_list.go b/intersight_gosdk/model_network_interface_list_list.go index 583f37344e..284c1a518e 100644 --- a/intersight_gosdk/model_network_interface_list_list.go +++ b/intersight_gosdk/model_network_interface_list_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_interface_list_relationship.go b/intersight_gosdk/model_network_interface_list_relationship.go index 0236dac192..737fa66368 100644 --- a/intersight_gosdk/model_network_interface_list_relationship.go +++ b/intersight_gosdk/model_network_interface_list_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_interface_list_response.go b/intersight_gosdk/model_network_interface_list_response.go index 5f4f30b418..2a6f22d0d7 100644 --- a/intersight_gosdk/model_network_interface_list_response.go +++ b/intersight_gosdk/model_network_interface_list_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_license_file.go b/intersight_gosdk/model_network_license_file.go index 49a980f921..04e388f406 100644 --- a/intersight_gosdk/model_network_license_file.go +++ b/intersight_gosdk/model_network_license_file.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_license_file_list.go b/intersight_gosdk/model_network_license_file_list.go index 78120a2277..0273c01b35 100644 --- a/intersight_gosdk/model_network_license_file_list.go +++ b/intersight_gosdk/model_network_license_file_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_license_file_relationship.go b/intersight_gosdk/model_network_license_file_relationship.go index 0cbe3ef338..af43cc54df 100644 --- a/intersight_gosdk/model_network_license_file_relationship.go +++ b/intersight_gosdk/model_network_license_file_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_license_file_response.go b/intersight_gosdk/model_network_license_file_response.go index 2488e0c41b..536098c0d6 100644 --- a/intersight_gosdk/model_network_license_file_response.go +++ b/intersight_gosdk/model_network_license_file_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_supervisor_card.go b/intersight_gosdk/model_network_supervisor_card.go index a837411795..d1ae36ff15 100644 --- a/intersight_gosdk/model_network_supervisor_card.go +++ b/intersight_gosdk/model_network_supervisor_card.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_supervisor_card_list.go b/intersight_gosdk/model_network_supervisor_card_list.go index 34896a87b9..0fa3b4acf6 100644 --- a/intersight_gosdk/model_network_supervisor_card_list.go +++ b/intersight_gosdk/model_network_supervisor_card_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_supervisor_card_relationship.go b/intersight_gosdk/model_network_supervisor_card_relationship.go index 917cc9ef35..f4ad96678b 100644 --- a/intersight_gosdk/model_network_supervisor_card_relationship.go +++ b/intersight_gosdk/model_network_supervisor_card_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_supervisor_card_response.go b/intersight_gosdk/model_network_supervisor_card_response.go index 4c503f84ae..e4a6ff115c 100644 --- a/intersight_gosdk/model_network_supervisor_card_response.go +++ b/intersight_gosdk/model_network_supervisor_card_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_telemetry_check.go b/intersight_gosdk/model_network_telemetry_check.go index bb6e96484d..95064f56ca 100644 --- a/intersight_gosdk/model_network_telemetry_check.go +++ b/intersight_gosdk/model_network_telemetry_check.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_telemetry_check_list.go b/intersight_gosdk/model_network_telemetry_check_list.go index 818ac485ac..962a8f633e 100644 --- a/intersight_gosdk/model_network_telemetry_check_list.go +++ b/intersight_gosdk/model_network_telemetry_check_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_telemetry_check_response.go b/intersight_gosdk/model_network_telemetry_check_response.go index b8916141d9..155e92a1e1 100644 --- a/intersight_gosdk/model_network_telemetry_check_response.go +++ b/intersight_gosdk/model_network_telemetry_check_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vethernet.go b/intersight_gosdk/model_network_vethernet.go index 3332a299dd..3499815cea 100644 --- a/intersight_gosdk/model_network_vethernet.go +++ b/intersight_gosdk/model_network_vethernet.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vethernet_list.go b/intersight_gosdk/model_network_vethernet_list.go index 2276035cbc..38c34874da 100644 --- a/intersight_gosdk/model_network_vethernet_list.go +++ b/intersight_gosdk/model_network_vethernet_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vethernet_relationship.go b/intersight_gosdk/model_network_vethernet_relationship.go index adfa0de3f7..a3c2d5b02c 100644 --- a/intersight_gosdk/model_network_vethernet_relationship.go +++ b/intersight_gosdk/model_network_vethernet_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vethernet_response.go b/intersight_gosdk/model_network_vethernet_response.go index 251ed61de8..46199a5cb1 100644 --- a/intersight_gosdk/model_network_vethernet_response.go +++ b/intersight_gosdk/model_network_vethernet_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vfc.go b/intersight_gosdk/model_network_vfc.go index aab82a8a5a..33aa104c87 100644 --- a/intersight_gosdk/model_network_vfc.go +++ b/intersight_gosdk/model_network_vfc.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vfc_list.go b/intersight_gosdk/model_network_vfc_list.go index 38d7a222f4..e950e2cb55 100644 --- a/intersight_gosdk/model_network_vfc_list.go +++ b/intersight_gosdk/model_network_vfc_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vfc_relationship.go b/intersight_gosdk/model_network_vfc_relationship.go index 0ee0bef60e..4eee662852 100644 --- a/intersight_gosdk/model_network_vfc_relationship.go +++ b/intersight_gosdk/model_network_vfc_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vfc_response.go b/intersight_gosdk/model_network_vfc_response.go index d97cb20fcc..3b7c23034a 100644 --- a/intersight_gosdk/model_network_vfc_response.go +++ b/intersight_gosdk/model_network_vfc_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vlan_port_info.go b/intersight_gosdk/model_network_vlan_port_info.go index de5e638d58..5bbd19d3d3 100644 --- a/intersight_gosdk/model_network_vlan_port_info.go +++ b/intersight_gosdk/model_network_vlan_port_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vlan_port_info_list.go b/intersight_gosdk/model_network_vlan_port_info_list.go index ba04af99f3..49e60220c5 100644 --- a/intersight_gosdk/model_network_vlan_port_info_list.go +++ b/intersight_gosdk/model_network_vlan_port_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vlan_port_info_relationship.go b/intersight_gosdk/model_network_vlan_port_info_relationship.go index dead56d065..057dbca6c0 100644 --- a/intersight_gosdk/model_network_vlan_port_info_relationship.go +++ b/intersight_gosdk/model_network_vlan_port_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vlan_port_info_response.go b/intersight_gosdk/model_network_vlan_port_info_response.go index 53dfb67dae..64a47a62fc 100644 --- a/intersight_gosdk/model_network_vlan_port_info_response.go +++ b/intersight_gosdk/model_network_vlan_port_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vpc_domain.go b/intersight_gosdk/model_network_vpc_domain.go index 5705873efe..4f1e755f73 100644 --- a/intersight_gosdk/model_network_vpc_domain.go +++ b/intersight_gosdk/model_network_vpc_domain.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vpc_domain_list.go b/intersight_gosdk/model_network_vpc_domain_list.go index 647968811b..9056b9af53 100644 --- a/intersight_gosdk/model_network_vpc_domain_list.go +++ b/intersight_gosdk/model_network_vpc_domain_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vpc_domain_relationship.go b/intersight_gosdk/model_network_vpc_domain_relationship.go index 82cdeb0127..d697d97490 100644 --- a/intersight_gosdk/model_network_vpc_domain_relationship.go +++ b/intersight_gosdk/model_network_vpc_domain_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vpc_domain_response.go b/intersight_gosdk/model_network_vpc_domain_response.go index c401a11f94..a99bf7198b 100644 --- a/intersight_gosdk/model_network_vpc_domain_response.go +++ b/intersight_gosdk/model_network_vpc_domain_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vpc_member.go b/intersight_gosdk/model_network_vpc_member.go index 5c5216296e..5d691ff19a 100644 --- a/intersight_gosdk/model_network_vpc_member.go +++ b/intersight_gosdk/model_network_vpc_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vpc_member_list.go b/intersight_gosdk/model_network_vpc_member_list.go index cf17d8bc9f..80170a544b 100644 --- a/intersight_gosdk/model_network_vpc_member_list.go +++ b/intersight_gosdk/model_network_vpc_member_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vpc_member_relationship.go b/intersight_gosdk/model_network_vpc_member_relationship.go index 04c7375da7..af67803dba 100644 --- a/intersight_gosdk/model_network_vpc_member_relationship.go +++ b/intersight_gosdk/model_network_vpc_member_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vpc_member_response.go b/intersight_gosdk/model_network_vpc_member_response.go index a7b7b27b11..7ed97735e8 100644 --- a/intersight_gosdk/model_network_vpc_member_response.go +++ b/intersight_gosdk/model_network_vpc_member_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vpc_peer.go b/intersight_gosdk/model_network_vpc_peer.go index d7201ec6f9..5047fc8b19 100644 --- a/intersight_gosdk/model_network_vpc_peer.go +++ b/intersight_gosdk/model_network_vpc_peer.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vpc_peer_list.go b/intersight_gosdk/model_network_vpc_peer_list.go index d603963c34..82812595f3 100644 --- a/intersight_gosdk/model_network_vpc_peer_list.go +++ b/intersight_gosdk/model_network_vpc_peer_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vpc_peer_relationship.go b/intersight_gosdk/model_network_vpc_peer_relationship.go index 75b3464603..329630f5eb 100644 --- a/intersight_gosdk/model_network_vpc_peer_relationship.go +++ b/intersight_gosdk/model_network_vpc_peer_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vpc_peer_response.go b/intersight_gosdk/model_network_vpc_peer_response.go index 7bca4cf260..fa88db5c3c 100644 --- a/intersight_gosdk/model_network_vpc_peer_response.go +++ b/intersight_gosdk/model_network_vpc_peer_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vrf.go b/intersight_gosdk/model_network_vrf.go index 844ca0ac7a..7efa87dd2c 100644 --- a/intersight_gosdk/model_network_vrf.go +++ b/intersight_gosdk/model_network_vrf.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vrf_list.go b/intersight_gosdk/model_network_vrf_list.go index ab9d755403..e9e41ac40b 100644 --- a/intersight_gosdk/model_network_vrf_list.go +++ b/intersight_gosdk/model_network_vrf_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vrf_relationship.go b/intersight_gosdk/model_network_vrf_relationship.go index 485b964db4..a962aa91ee 100644 --- a/intersight_gosdk/model_network_vrf_relationship.go +++ b/intersight_gosdk/model_network_vrf_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vrf_response.go b/intersight_gosdk/model_network_vrf_response.go index 9c37c51063..642c849e65 100644 --- a/intersight_gosdk/model_network_vrf_response.go +++ b/intersight_gosdk/model_network_vrf_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_networkconfig_policy.go b/intersight_gosdk/model_networkconfig_policy.go index 570bafeee2..a7640de7d5 100644 --- a/intersight_gosdk/model_networkconfig_policy.go +++ b/intersight_gosdk/model_networkconfig_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type NetworkconfigPolicy struct { // IP address of the secondary DNS server. AlternateIpv6dnsServer *string `json:"AlternateIpv6dnsServer,omitempty"` // The domain name appended to a hostname for a Dynamic DNS (DDNS) update. If left blank, only a hostname is sent to the DDNS update request. - DynamicDnsDomain *string `json:"DynamicDnsDomain,omitempty"` + DynamicDnsDomain *string `json:"DynamicDnsDomain,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+([-.]{1}[a-zA-Z0-9]+)*$"` // If enabled, updates the resource records to the DNS from Cisco IMC. EnableDynamicDns *bool `json:"EnableDynamicDns,omitempty"` // If enabled, Cisco IMC retrieves the DNS server addresses from DHCP. Use DHCP field must be enabled for IPv4 in Cisco IMC to enable it. @@ -665,7 +665,7 @@ func (o *NetworkconfigPolicy) UnmarshalJSON(data []byte) (err error) { // IP address of the secondary DNS server. AlternateIpv6dnsServer *string `json:"AlternateIpv6dnsServer,omitempty"` // The domain name appended to a hostname for a Dynamic DNS (DDNS) update. If left blank, only a hostname is sent to the DDNS update request. - DynamicDnsDomain *string `json:"DynamicDnsDomain,omitempty"` + DynamicDnsDomain *string `json:"DynamicDnsDomain,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+([-.]{1}[a-zA-Z0-9]+)*$"` // If enabled, updates the resource records to the DNS from Cisco IMC. EnableDynamicDns *bool `json:"EnableDynamicDns,omitempty"` // If enabled, Cisco IMC retrieves the DNS server addresses from DHCP. Use DHCP field must be enabled for IPv4 in Cisco IMC to enable it. diff --git a/intersight_gosdk/model_networkconfig_policy_inventory.go b/intersight_gosdk/model_networkconfig_policy_inventory.go index e47373bbb6..4422946aa0 100644 --- a/intersight_gosdk/model_networkconfig_policy_inventory.go +++ b/intersight_gosdk/model_networkconfig_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type NetworkconfigPolicyInventory struct { // IP address of the secondary DNS server. AlternateIpv6dnsServer *string `json:"AlternateIpv6dnsServer,omitempty"` // The domain name appended to a hostname for a Dynamic DNS (DDNS) update. If left blank, only a hostname is sent to the DDNS update request. - DynamicDnsDomain *string `json:"DynamicDnsDomain,omitempty"` + DynamicDnsDomain *string `json:"DynamicDnsDomain,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+([-.]{1}[a-zA-Z0-9]+)*$"` // If enabled, updates the resource records to the DNS from Cisco IMC. EnableDynamicDns *bool `json:"EnableDynamicDns,omitempty"` // If enabled, Cisco IMC retrieves the DNS server addresses from DHCP. Use DHCP field must be enabled for IPv4 in Cisco IMC to enable it. @@ -580,7 +580,7 @@ func (o *NetworkconfigPolicyInventory) UnmarshalJSON(data []byte) (err error) { // IP address of the secondary DNS server. AlternateIpv6dnsServer *string `json:"AlternateIpv6dnsServer,omitempty"` // The domain name appended to a hostname for a Dynamic DNS (DDNS) update. If left blank, only a hostname is sent to the DDNS update request. - DynamicDnsDomain *string `json:"DynamicDnsDomain,omitempty"` + DynamicDnsDomain *string `json:"DynamicDnsDomain,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+([-.]{1}[a-zA-Z0-9]+)*$"` // If enabled, updates the resource records to the DNS from Cisco IMC. EnableDynamicDns *bool `json:"EnableDynamicDns,omitempty"` // If enabled, Cisco IMC retrieves the DNS server addresses from DHCP. Use DHCP field must be enabled for IPv4 in Cisco IMC to enable it. diff --git a/intersight_gosdk/model_networkconfig_policy_inventory_list.go b/intersight_gosdk/model_networkconfig_policy_inventory_list.go index 2ee1e6af1d..25820a2860 100644 --- a/intersight_gosdk/model_networkconfig_policy_inventory_list.go +++ b/intersight_gosdk/model_networkconfig_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_networkconfig_policy_inventory_response.go b/intersight_gosdk/model_networkconfig_policy_inventory_response.go index 8319bbc18b..aecf3a8695 100644 --- a/intersight_gosdk/model_networkconfig_policy_inventory_response.go +++ b/intersight_gosdk/model_networkconfig_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_networkconfig_policy_list.go b/intersight_gosdk/model_networkconfig_policy_list.go index 711041dec0..a1804d1a5e 100644 --- a/intersight_gosdk/model_networkconfig_policy_list.go +++ b/intersight_gosdk/model_networkconfig_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_networkconfig_policy_response.go b/intersight_gosdk/model_networkconfig_policy_response.go index 5ca13c037d..cd603e4b92 100644 --- a/intersight_gosdk/model_networkconfig_policy_response.go +++ b/intersight_gosdk/model_networkconfig_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_apic_cco_post.go b/intersight_gosdk/model_niaapi_apic_cco_post.go index 471722c502..28904333f1 100644 --- a/intersight_gosdk/model_niaapi_apic_cco_post.go +++ b/intersight_gosdk/model_niaapi_apic_cco_post.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_apic_cco_post_list.go b/intersight_gosdk/model_niaapi_apic_cco_post_list.go index 44b89a4f09..91f0eebca0 100644 --- a/intersight_gosdk/model_niaapi_apic_cco_post_list.go +++ b/intersight_gosdk/model_niaapi_apic_cco_post_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_apic_cco_post_response.go b/intersight_gosdk/model_niaapi_apic_cco_post_response.go index 53e0a45545..e5ce937c69 100644 --- a/intersight_gosdk/model_niaapi_apic_cco_post_response.go +++ b/intersight_gosdk/model_niaapi_apic_cco_post_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_apic_field_notice.go b/intersight_gosdk/model_niaapi_apic_field_notice.go index f8d10927d5..e16b055bde 100644 --- a/intersight_gosdk/model_niaapi_apic_field_notice.go +++ b/intersight_gosdk/model_niaapi_apic_field_notice.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_apic_field_notice_list.go b/intersight_gosdk/model_niaapi_apic_field_notice_list.go index 072a468b42..a4319b169a 100644 --- a/intersight_gosdk/model_niaapi_apic_field_notice_list.go +++ b/intersight_gosdk/model_niaapi_apic_field_notice_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_apic_field_notice_response.go b/intersight_gosdk/model_niaapi_apic_field_notice_response.go index 299b7e3d89..8d07ed654c 100644 --- a/intersight_gosdk/model_niaapi_apic_field_notice_response.go +++ b/intersight_gosdk/model_niaapi_apic_field_notice_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_apic_hweol.go b/intersight_gosdk/model_niaapi_apic_hweol.go index 2a1e197943..bde70f0c95 100644 --- a/intersight_gosdk/model_niaapi_apic_hweol.go +++ b/intersight_gosdk/model_niaapi_apic_hweol.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_apic_hweol_list.go b/intersight_gosdk/model_niaapi_apic_hweol_list.go index cc323fa8f0..7e3155e3af 100644 --- a/intersight_gosdk/model_niaapi_apic_hweol_list.go +++ b/intersight_gosdk/model_niaapi_apic_hweol_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_apic_hweol_response.go b/intersight_gosdk/model_niaapi_apic_hweol_response.go index 715261466f..eddffd7356 100644 --- a/intersight_gosdk/model_niaapi_apic_hweol_response.go +++ b/intersight_gosdk/model_niaapi_apic_hweol_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_apic_latest_maintained_release.go b/intersight_gosdk/model_niaapi_apic_latest_maintained_release.go index 2e0a255ec7..aeff690a17 100644 --- a/intersight_gosdk/model_niaapi_apic_latest_maintained_release.go +++ b/intersight_gosdk/model_niaapi_apic_latest_maintained_release.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_apic_latest_maintained_release_list.go b/intersight_gosdk/model_niaapi_apic_latest_maintained_release_list.go index eed93e9b1b..c915a612b3 100644 --- a/intersight_gosdk/model_niaapi_apic_latest_maintained_release_list.go +++ b/intersight_gosdk/model_niaapi_apic_latest_maintained_release_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_apic_latest_maintained_release_response.go b/intersight_gosdk/model_niaapi_apic_latest_maintained_release_response.go index c5ad041f3c..c59e1a48ca 100644 --- a/intersight_gosdk/model_niaapi_apic_latest_maintained_release_response.go +++ b/intersight_gosdk/model_niaapi_apic_latest_maintained_release_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_apic_release_recommend.go b/intersight_gosdk/model_niaapi_apic_release_recommend.go index 0ee79c418a..b3d63e5ee1 100644 --- a/intersight_gosdk/model_niaapi_apic_release_recommend.go +++ b/intersight_gosdk/model_niaapi_apic_release_recommend.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_apic_release_recommend_list.go b/intersight_gosdk/model_niaapi_apic_release_recommend_list.go index 99bf16c50d..3c7481ebb2 100644 --- a/intersight_gosdk/model_niaapi_apic_release_recommend_list.go +++ b/intersight_gosdk/model_niaapi_apic_release_recommend_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_apic_release_recommend_response.go b/intersight_gosdk/model_niaapi_apic_release_recommend_response.go index 4a4bf51c40..9575e1f0fc 100644 --- a/intersight_gosdk/model_niaapi_apic_release_recommend_response.go +++ b/intersight_gosdk/model_niaapi_apic_release_recommend_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_apic_sweol.go b/intersight_gosdk/model_niaapi_apic_sweol.go index 03b6a0b0d8..923e5c60f3 100644 --- a/intersight_gosdk/model_niaapi_apic_sweol.go +++ b/intersight_gosdk/model_niaapi_apic_sweol.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_apic_sweol_list.go b/intersight_gosdk/model_niaapi_apic_sweol_list.go index d83cfcaedd..5229154e8f 100644 --- a/intersight_gosdk/model_niaapi_apic_sweol_list.go +++ b/intersight_gosdk/model_niaapi_apic_sweol_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_apic_sweol_response.go b/intersight_gosdk/model_niaapi_apic_sweol_response.go index 6e340921bd..c7f299aaeb 100644 --- a/intersight_gosdk/model_niaapi_apic_sweol_response.go +++ b/intersight_gosdk/model_niaapi_apic_sweol_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_dcnm_cco_post.go b/intersight_gosdk/model_niaapi_dcnm_cco_post.go index ce4eedc785..a7928ed6fa 100644 --- a/intersight_gosdk/model_niaapi_dcnm_cco_post.go +++ b/intersight_gosdk/model_niaapi_dcnm_cco_post.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_dcnm_cco_post_list.go b/intersight_gosdk/model_niaapi_dcnm_cco_post_list.go index fe0d5a4863..27f316b82b 100644 --- a/intersight_gosdk/model_niaapi_dcnm_cco_post_list.go +++ b/intersight_gosdk/model_niaapi_dcnm_cco_post_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_dcnm_cco_post_response.go b/intersight_gosdk/model_niaapi_dcnm_cco_post_response.go index 20c44c4b41..5e800b47ad 100644 --- a/intersight_gosdk/model_niaapi_dcnm_cco_post_response.go +++ b/intersight_gosdk/model_niaapi_dcnm_cco_post_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_dcnm_field_notice.go b/intersight_gosdk/model_niaapi_dcnm_field_notice.go index 50195a814d..b35c4193ae 100644 --- a/intersight_gosdk/model_niaapi_dcnm_field_notice.go +++ b/intersight_gosdk/model_niaapi_dcnm_field_notice.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_dcnm_field_notice_list.go b/intersight_gosdk/model_niaapi_dcnm_field_notice_list.go index 6639f90549..11053c5662 100644 --- a/intersight_gosdk/model_niaapi_dcnm_field_notice_list.go +++ b/intersight_gosdk/model_niaapi_dcnm_field_notice_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_dcnm_field_notice_response.go b/intersight_gosdk/model_niaapi_dcnm_field_notice_response.go index a591804ba7..0d6198eb1a 100644 --- a/intersight_gosdk/model_niaapi_dcnm_field_notice_response.go +++ b/intersight_gosdk/model_niaapi_dcnm_field_notice_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_dcnm_hweol.go b/intersight_gosdk/model_niaapi_dcnm_hweol.go index a4d8f92b5f..ddfeda1521 100644 --- a/intersight_gosdk/model_niaapi_dcnm_hweol.go +++ b/intersight_gosdk/model_niaapi_dcnm_hweol.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_dcnm_hweol_list.go b/intersight_gosdk/model_niaapi_dcnm_hweol_list.go index ceb6557677..3367f9d8cd 100644 --- a/intersight_gosdk/model_niaapi_dcnm_hweol_list.go +++ b/intersight_gosdk/model_niaapi_dcnm_hweol_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_dcnm_hweol_response.go b/intersight_gosdk/model_niaapi_dcnm_hweol_response.go index 496c325744..7cdd12d1e6 100644 --- a/intersight_gosdk/model_niaapi_dcnm_hweol_response.go +++ b/intersight_gosdk/model_niaapi_dcnm_hweol_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_dcnm_latest_maintained_release.go b/intersight_gosdk/model_niaapi_dcnm_latest_maintained_release.go index ac63e8c4c5..edd6ac7041 100644 --- a/intersight_gosdk/model_niaapi_dcnm_latest_maintained_release.go +++ b/intersight_gosdk/model_niaapi_dcnm_latest_maintained_release.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_dcnm_latest_maintained_release_list.go b/intersight_gosdk/model_niaapi_dcnm_latest_maintained_release_list.go index caf056f7a4..69d56aecef 100644 --- a/intersight_gosdk/model_niaapi_dcnm_latest_maintained_release_list.go +++ b/intersight_gosdk/model_niaapi_dcnm_latest_maintained_release_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_dcnm_latest_maintained_release_response.go b/intersight_gosdk/model_niaapi_dcnm_latest_maintained_release_response.go index a0dabf7dbb..e3be2f29c5 100644 --- a/intersight_gosdk/model_niaapi_dcnm_latest_maintained_release_response.go +++ b/intersight_gosdk/model_niaapi_dcnm_latest_maintained_release_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_dcnm_release_recommend.go b/intersight_gosdk/model_niaapi_dcnm_release_recommend.go index 7450903058..a66371574c 100644 --- a/intersight_gosdk/model_niaapi_dcnm_release_recommend.go +++ b/intersight_gosdk/model_niaapi_dcnm_release_recommend.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_dcnm_release_recommend_list.go b/intersight_gosdk/model_niaapi_dcnm_release_recommend_list.go index 7c0bde6564..2a36441f79 100644 --- a/intersight_gosdk/model_niaapi_dcnm_release_recommend_list.go +++ b/intersight_gosdk/model_niaapi_dcnm_release_recommend_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_dcnm_release_recommend_response.go b/intersight_gosdk/model_niaapi_dcnm_release_recommend_response.go index 733cac776d..97dd4b9b29 100644 --- a/intersight_gosdk/model_niaapi_dcnm_release_recommend_response.go +++ b/intersight_gosdk/model_niaapi_dcnm_release_recommend_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_dcnm_sweol.go b/intersight_gosdk/model_niaapi_dcnm_sweol.go index 92f98ce799..d0a2cfccdc 100644 --- a/intersight_gosdk/model_niaapi_dcnm_sweol.go +++ b/intersight_gosdk/model_niaapi_dcnm_sweol.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_dcnm_sweol_list.go b/intersight_gosdk/model_niaapi_dcnm_sweol_list.go index 97906bb161..7eb672f2f1 100644 --- a/intersight_gosdk/model_niaapi_dcnm_sweol_list.go +++ b/intersight_gosdk/model_niaapi_dcnm_sweol_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_dcnm_sweol_response.go b/intersight_gosdk/model_niaapi_dcnm_sweol_response.go index 9e374eeed3..11b8e43f3f 100644 --- a/intersight_gosdk/model_niaapi_dcnm_sweol_response.go +++ b/intersight_gosdk/model_niaapi_dcnm_sweol_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_detail.go b/intersight_gosdk/model_niaapi_detail.go index 63186450a5..51898724f6 100644 --- a/intersight_gosdk/model_niaapi_detail.go +++ b/intersight_gosdk/model_niaapi_detail.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_field_notice.go b/intersight_gosdk/model_niaapi_field_notice.go index 2e0ac6056e..9ecff3fae5 100644 --- a/intersight_gosdk/model_niaapi_field_notice.go +++ b/intersight_gosdk/model_niaapi_field_notice.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_file_downloader.go b/intersight_gosdk/model_niaapi_file_downloader.go index bd6ecc8572..946e72547e 100644 --- a/intersight_gosdk/model_niaapi_file_downloader.go +++ b/intersight_gosdk/model_niaapi_file_downloader.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_file_downloader_list.go b/intersight_gosdk/model_niaapi_file_downloader_list.go index 82007795a1..60294dacd6 100644 --- a/intersight_gosdk/model_niaapi_file_downloader_list.go +++ b/intersight_gosdk/model_niaapi_file_downloader_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_file_downloader_response.go b/intersight_gosdk/model_niaapi_file_downloader_response.go index b58337cfa2..cf44512cbe 100644 --- a/intersight_gosdk/model_niaapi_file_downloader_response.go +++ b/intersight_gosdk/model_niaapi_file_downloader_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_hardware_eol.go b/intersight_gosdk/model_niaapi_hardware_eol.go index f6bfdabc40..f4ff3443f7 100644 --- a/intersight_gosdk/model_niaapi_hardware_eol.go +++ b/intersight_gosdk/model_niaapi_hardware_eol.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_maintained_release.go b/intersight_gosdk/model_niaapi_maintained_release.go index 43a2644e95..089a832cf2 100644 --- a/intersight_gosdk/model_niaapi_maintained_release.go +++ b/intersight_gosdk/model_niaapi_maintained_release.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_new_release_detail.go b/intersight_gosdk/model_niaapi_new_release_detail.go index eeeef2c8be..809f7a81be 100644 --- a/intersight_gosdk/model_niaapi_new_release_detail.go +++ b/intersight_gosdk/model_niaapi_new_release_detail.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_new_release_post.go b/intersight_gosdk/model_niaapi_new_release_post.go index cbbb6eedd2..f9ebbc62f7 100644 --- a/intersight_gosdk/model_niaapi_new_release_post.go +++ b/intersight_gosdk/model_niaapi_new_release_post.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_nia_metadata.go b/intersight_gosdk/model_niaapi_nia_metadata.go index 662fcd8e63..32f763950e 100644 --- a/intersight_gosdk/model_niaapi_nia_metadata.go +++ b/intersight_gosdk/model_niaapi_nia_metadata.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_nia_metadata_list.go b/intersight_gosdk/model_niaapi_nia_metadata_list.go index 400ae6d1eb..c56b9bf684 100644 --- a/intersight_gosdk/model_niaapi_nia_metadata_list.go +++ b/intersight_gosdk/model_niaapi_nia_metadata_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_nia_metadata_response.go b/intersight_gosdk/model_niaapi_nia_metadata_response.go index 2f80f2e5de..326b1266ef 100644 --- a/intersight_gosdk/model_niaapi_nia_metadata_response.go +++ b/intersight_gosdk/model_niaapi_nia_metadata_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_nib_file_downloader.go b/intersight_gosdk/model_niaapi_nib_file_downloader.go index a813826b3e..da0718ac61 100644 --- a/intersight_gosdk/model_niaapi_nib_file_downloader.go +++ b/intersight_gosdk/model_niaapi_nib_file_downloader.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_nib_file_downloader_list.go b/intersight_gosdk/model_niaapi_nib_file_downloader_list.go index c4ad943797..26e7af67ed 100644 --- a/intersight_gosdk/model_niaapi_nib_file_downloader_list.go +++ b/intersight_gosdk/model_niaapi_nib_file_downloader_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_nib_file_downloader_response.go b/intersight_gosdk/model_niaapi_nib_file_downloader_response.go index fdbdafae32..e2ea012086 100644 --- a/intersight_gosdk/model_niaapi_nib_file_downloader_response.go +++ b/intersight_gosdk/model_niaapi_nib_file_downloader_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_nib_metadata.go b/intersight_gosdk/model_niaapi_nib_metadata.go index f7ace6574b..496084fb77 100644 --- a/intersight_gosdk/model_niaapi_nib_metadata.go +++ b/intersight_gosdk/model_niaapi_nib_metadata.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_nib_metadata_list.go b/intersight_gosdk/model_niaapi_nib_metadata_list.go index 2506c889dd..d576ceab43 100644 --- a/intersight_gosdk/model_niaapi_nib_metadata_list.go +++ b/intersight_gosdk/model_niaapi_nib_metadata_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_nib_metadata_response.go b/intersight_gosdk/model_niaapi_nib_metadata_response.go index e7a3bf1636..5603156968 100644 --- a/intersight_gosdk/model_niaapi_nib_metadata_response.go +++ b/intersight_gosdk/model_niaapi_nib_metadata_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_puv_script_downloader.go b/intersight_gosdk/model_niaapi_puv_script_downloader.go index ecf782ab17..ef4b205dac 100644 --- a/intersight_gosdk/model_niaapi_puv_script_downloader.go +++ b/intersight_gosdk/model_niaapi_puv_script_downloader.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_puv_script_downloader_list.go b/intersight_gosdk/model_niaapi_puv_script_downloader_list.go index da34296daf..9dd79f431d 100644 --- a/intersight_gosdk/model_niaapi_puv_script_downloader_list.go +++ b/intersight_gosdk/model_niaapi_puv_script_downloader_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_puv_script_downloader_response.go b/intersight_gosdk/model_niaapi_puv_script_downloader_response.go index 9f6e4c6b22..7d9e6883ed 100644 --- a/intersight_gosdk/model_niaapi_puv_script_downloader_response.go +++ b/intersight_gosdk/model_niaapi_puv_script_downloader_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_release_recommend.go b/intersight_gosdk/model_niaapi_release_recommend.go index 663396b676..f9ea3e4abb 100644 --- a/intersight_gosdk/model_niaapi_release_recommend.go +++ b/intersight_gosdk/model_niaapi_release_recommend.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_revision_info.go b/intersight_gosdk/model_niaapi_revision_info.go index bb6bfbb9a1..104a5cfecf 100644 --- a/intersight_gosdk/model_niaapi_revision_info.go +++ b/intersight_gosdk/model_niaapi_revision_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_sn_validator_metadata.go b/intersight_gosdk/model_niaapi_sn_validator_metadata.go index 1e2d928309..fbd3681864 100644 --- a/intersight_gosdk/model_niaapi_sn_validator_metadata.go +++ b/intersight_gosdk/model_niaapi_sn_validator_metadata.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_sn_validator_metadata_list.go b/intersight_gosdk/model_niaapi_sn_validator_metadata_list.go index fb736fa1b9..4c595b1773 100644 --- a/intersight_gosdk/model_niaapi_sn_validator_metadata_list.go +++ b/intersight_gosdk/model_niaapi_sn_validator_metadata_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_sn_validator_metadata_response.go b/intersight_gosdk/model_niaapi_sn_validator_metadata_response.go index 39e8314ff8..280532ff95 100644 --- a/intersight_gosdk/model_niaapi_sn_validator_metadata_response.go +++ b/intersight_gosdk/model_niaapi_sn_validator_metadata_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_software_eol.go b/intersight_gosdk/model_niaapi_software_eol.go index 6946104062..f06cebecc0 100644 --- a/intersight_gosdk/model_niaapi_software_eol.go +++ b/intersight_gosdk/model_niaapi_software_eol.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_software_regex.go b/intersight_gosdk/model_niaapi_software_regex.go index a83cac9936..593c3aae92 100644 --- a/intersight_gosdk/model_niaapi_software_regex.go +++ b/intersight_gosdk/model_niaapi_software_regex.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_upgrade_assist_file.go b/intersight_gosdk/model_niaapi_upgrade_assist_file.go index 75f29ae5b6..3d322a38ca 100644 --- a/intersight_gosdk/model_niaapi_upgrade_assist_file.go +++ b/intersight_gosdk/model_niaapi_upgrade_assist_file.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_upgrade_assist_file_list.go b/intersight_gosdk/model_niaapi_upgrade_assist_file_list.go index d44031c1f5..ebbfcba96d 100644 --- a/intersight_gosdk/model_niaapi_upgrade_assist_file_list.go +++ b/intersight_gosdk/model_niaapi_upgrade_assist_file_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_upgrade_assist_file_response.go b/intersight_gosdk/model_niaapi_upgrade_assist_file_response.go index 11315b93d2..dc884ab17a 100644 --- a/intersight_gosdk/model_niaapi_upgrade_assist_file_response.go +++ b/intersight_gosdk/model_niaapi_upgrade_assist_file_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_version_regex.go b/intersight_gosdk/model_niaapi_version_regex.go index 4b9b50f0fe..c1364dfb61 100644 --- a/intersight_gosdk/model_niaapi_version_regex.go +++ b/intersight_gosdk/model_niaapi_version_regex.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_version_regex_list.go b/intersight_gosdk/model_niaapi_version_regex_list.go index 317891ff8d..7b6eee1d98 100644 --- a/intersight_gosdk/model_niaapi_version_regex_list.go +++ b/intersight_gosdk/model_niaapi_version_regex_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_version_regex_platform.go b/intersight_gosdk/model_niaapi_version_regex_platform.go index 6b732aca2f..6278895a25 100644 --- a/intersight_gosdk/model_niaapi_version_regex_platform.go +++ b/intersight_gosdk/model_niaapi_version_regex_platform.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_version_regex_response.go b/intersight_gosdk/model_niaapi_version_regex_response.go index a9def44790..39125b3448 100644 --- a/intersight_gosdk/model_niaapi_version_regex_response.go +++ b/intersight_gosdk/model_niaapi_version_regex_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_aaa_ldap_provider_details.go b/intersight_gosdk/model_niatelemetry_aaa_ldap_provider_details.go index 85c5a7bb26..3c3f73f85a 100644 --- a/intersight_gosdk/model_niatelemetry_aaa_ldap_provider_details.go +++ b/intersight_gosdk/model_niatelemetry_aaa_ldap_provider_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_aaa_ldap_provider_details_list.go b/intersight_gosdk/model_niatelemetry_aaa_ldap_provider_details_list.go index 78b027e9ff..09540baff2 100644 --- a/intersight_gosdk/model_niatelemetry_aaa_ldap_provider_details_list.go +++ b/intersight_gosdk/model_niatelemetry_aaa_ldap_provider_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_aaa_ldap_provider_details_response.go b/intersight_gosdk/model_niatelemetry_aaa_ldap_provider_details_response.go index 66875c6639..d37435513b 100644 --- a/intersight_gosdk/model_niatelemetry_aaa_ldap_provider_details_response.go +++ b/intersight_gosdk/model_niatelemetry_aaa_ldap_provider_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_aaa_radius_provider_details.go b/intersight_gosdk/model_niatelemetry_aaa_radius_provider_details.go index d611a723b9..5b60f66da5 100644 --- a/intersight_gosdk/model_niatelemetry_aaa_radius_provider_details.go +++ b/intersight_gosdk/model_niatelemetry_aaa_radius_provider_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_aaa_radius_provider_details_list.go b/intersight_gosdk/model_niatelemetry_aaa_radius_provider_details_list.go index f536ccb5cb..9e152e661a 100644 --- a/intersight_gosdk/model_niatelemetry_aaa_radius_provider_details_list.go +++ b/intersight_gosdk/model_niatelemetry_aaa_radius_provider_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_aaa_radius_provider_details_response.go b/intersight_gosdk/model_niatelemetry_aaa_radius_provider_details_response.go index 52f37f6033..3f41f786c9 100644 --- a/intersight_gosdk/model_niatelemetry_aaa_radius_provider_details_response.go +++ b/intersight_gosdk/model_niatelemetry_aaa_radius_provider_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_aaa_tacacs_provider_details.go b/intersight_gosdk/model_niatelemetry_aaa_tacacs_provider_details.go index 850631e0fd..91b419c073 100644 --- a/intersight_gosdk/model_niatelemetry_aaa_tacacs_provider_details.go +++ b/intersight_gosdk/model_niatelemetry_aaa_tacacs_provider_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_aaa_tacacs_provider_details_list.go b/intersight_gosdk/model_niatelemetry_aaa_tacacs_provider_details_list.go index 063042109a..fc469c939f 100644 --- a/intersight_gosdk/model_niatelemetry_aaa_tacacs_provider_details_list.go +++ b/intersight_gosdk/model_niatelemetry_aaa_tacacs_provider_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_aaa_tacacs_provider_details_response.go b/intersight_gosdk/model_niatelemetry_aaa_tacacs_provider_details_response.go index 826b93a9ce..3e4108ad51 100644 --- a/intersight_gosdk/model_niatelemetry_aaa_tacacs_provider_details_response.go +++ b/intersight_gosdk/model_niatelemetry_aaa_tacacs_provider_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_app_plugin_details.go b/intersight_gosdk/model_niatelemetry_apic_app_plugin_details.go index 40f2e18b28..79ff2bd69b 100644 --- a/intersight_gosdk/model_niatelemetry_apic_app_plugin_details.go +++ b/intersight_gosdk/model_niatelemetry_apic_app_plugin_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_app_plugin_details_list.go b/intersight_gosdk/model_niatelemetry_apic_app_plugin_details_list.go index 02da186575..b850a981af 100644 --- a/intersight_gosdk/model_niatelemetry_apic_app_plugin_details_list.go +++ b/intersight_gosdk/model_niatelemetry_apic_app_plugin_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_app_plugin_details_response.go b/intersight_gosdk/model_niatelemetry_apic_app_plugin_details_response.go index bc757742ad..3923f28c11 100644 --- a/intersight_gosdk/model_niatelemetry_apic_app_plugin_details_response.go +++ b/intersight_gosdk/model_niatelemetry_apic_app_plugin_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_core_file_details.go b/intersight_gosdk/model_niatelemetry_apic_core_file_details.go index c89bc52430..7788e4c7d5 100644 --- a/intersight_gosdk/model_niatelemetry_apic_core_file_details.go +++ b/intersight_gosdk/model_niatelemetry_apic_core_file_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_core_file_details_list.go b/intersight_gosdk/model_niatelemetry_apic_core_file_details_list.go index 4c7ba68cd9..d412ed8d36 100644 --- a/intersight_gosdk/model_niatelemetry_apic_core_file_details_list.go +++ b/intersight_gosdk/model_niatelemetry_apic_core_file_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_core_file_details_response.go b/intersight_gosdk/model_niatelemetry_apic_core_file_details_response.go index 1c2f6b0f77..3099f15623 100644 --- a/intersight_gosdk/model_niatelemetry_apic_core_file_details_response.go +++ b/intersight_gosdk/model_niatelemetry_apic_core_file_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_export_dest.go b/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_export_dest.go index 8a917978d8..893e9cc76f 100644 --- a/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_export_dest.go +++ b/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_export_dest.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_export_dest_list.go b/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_export_dest_list.go index b5d12e9a84..c9516407fc 100644 --- a/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_export_dest_list.go +++ b/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_export_dest_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_export_dest_response.go b/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_export_dest_response.go index f37a4e22b8..397b4962c8 100644 --- a/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_export_dest_response.go +++ b/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_export_dest_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_ts_scheduler.go b/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_ts_scheduler.go index 8e1186363f..4ffe86b609 100644 --- a/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_ts_scheduler.go +++ b/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_ts_scheduler.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_ts_scheduler_list.go b/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_ts_scheduler_list.go index 83649abd92..5c9aa691f6 100644 --- a/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_ts_scheduler_list.go +++ b/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_ts_scheduler_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_ts_scheduler_response.go b/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_ts_scheduler_response.go index da027ca233..3d98c948aa 100644 --- a/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_ts_scheduler_response.go +++ b/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_ts_scheduler_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_fan_details.go b/intersight_gosdk/model_niatelemetry_apic_fan_details.go index 85d2e30983..cec91103fb 100644 --- a/intersight_gosdk/model_niatelemetry_apic_fan_details.go +++ b/intersight_gosdk/model_niatelemetry_apic_fan_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_fan_details_list.go b/intersight_gosdk/model_niatelemetry_apic_fan_details_list.go index 504d8497e0..21909eb115 100644 --- a/intersight_gosdk/model_niatelemetry_apic_fan_details_list.go +++ b/intersight_gosdk/model_niatelemetry_apic_fan_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_fan_details_response.go b/intersight_gosdk/model_niatelemetry_apic_fan_details_response.go index 0ac659c6ac..18924fbd7b 100644 --- a/intersight_gosdk/model_niatelemetry_apic_fan_details_response.go +++ b/intersight_gosdk/model_niatelemetry_apic_fan_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_fex_details.go b/intersight_gosdk/model_niatelemetry_apic_fex_details.go index 919433dc62..f097345760 100644 --- a/intersight_gosdk/model_niatelemetry_apic_fex_details.go +++ b/intersight_gosdk/model_niatelemetry_apic_fex_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_fex_details_list.go b/intersight_gosdk/model_niatelemetry_apic_fex_details_list.go index 86baedc977..5e619c1362 100644 --- a/intersight_gosdk/model_niatelemetry_apic_fex_details_list.go +++ b/intersight_gosdk/model_niatelemetry_apic_fex_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_fex_details_response.go b/intersight_gosdk/model_niatelemetry_apic_fex_details_response.go index 9d62520e1c..3e63bceace 100644 --- a/intersight_gosdk/model_niatelemetry_apic_fex_details_response.go +++ b/intersight_gosdk/model_niatelemetry_apic_fex_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_flash_details.go b/intersight_gosdk/model_niatelemetry_apic_flash_details.go index d60faa6468..4d9e76c7dd 100644 --- a/intersight_gosdk/model_niatelemetry_apic_flash_details.go +++ b/intersight_gosdk/model_niatelemetry_apic_flash_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_flash_details_list.go b/intersight_gosdk/model_niatelemetry_apic_flash_details_list.go index 3963ba16c5..f1a9ad25d9 100644 --- a/intersight_gosdk/model_niatelemetry_apic_flash_details_list.go +++ b/intersight_gosdk/model_niatelemetry_apic_flash_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_flash_details_response.go b/intersight_gosdk/model_niatelemetry_apic_flash_details_response.go index ff3061ca37..e4e34431ae 100644 --- a/intersight_gosdk/model_niatelemetry_apic_flash_details_response.go +++ b/intersight_gosdk/model_niatelemetry_apic_flash_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_ntp_auth.go b/intersight_gosdk/model_niatelemetry_apic_ntp_auth.go index 9a613f0d16..eb658e216d 100644 --- a/intersight_gosdk/model_niatelemetry_apic_ntp_auth.go +++ b/intersight_gosdk/model_niatelemetry_apic_ntp_auth.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_ntp_auth_list.go b/intersight_gosdk/model_niatelemetry_apic_ntp_auth_list.go index c2f0bcb348..2a85220f47 100644 --- a/intersight_gosdk/model_niatelemetry_apic_ntp_auth_list.go +++ b/intersight_gosdk/model_niatelemetry_apic_ntp_auth_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_ntp_auth_response.go b/intersight_gosdk/model_niatelemetry_apic_ntp_auth_response.go index 3e0448f5db..7ccd6f79d5 100644 --- a/intersight_gosdk/model_niatelemetry_apic_ntp_auth_response.go +++ b/intersight_gosdk/model_niatelemetry_apic_ntp_auth_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_performance_data.go b/intersight_gosdk/model_niatelemetry_apic_performance_data.go index 4095013d97..8e45933c9b 100644 --- a/intersight_gosdk/model_niatelemetry_apic_performance_data.go +++ b/intersight_gosdk/model_niatelemetry_apic_performance_data.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_performance_data_list.go b/intersight_gosdk/model_niatelemetry_apic_performance_data_list.go index 34f6933906..fd3fe06d6d 100644 --- a/intersight_gosdk/model_niatelemetry_apic_performance_data_list.go +++ b/intersight_gosdk/model_niatelemetry_apic_performance_data_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_performance_data_response.go b/intersight_gosdk/model_niatelemetry_apic_performance_data_response.go index 3ee03bf5b6..2d68fcec91 100644 --- a/intersight_gosdk/model_niatelemetry_apic_performance_data_response.go +++ b/intersight_gosdk/model_niatelemetry_apic_performance_data_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_pod_data.go b/intersight_gosdk/model_niatelemetry_apic_pod_data.go index 81e346f06d..71b5762f97 100644 --- a/intersight_gosdk/model_niatelemetry_apic_pod_data.go +++ b/intersight_gosdk/model_niatelemetry_apic_pod_data.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_pod_data_list.go b/intersight_gosdk/model_niatelemetry_apic_pod_data_list.go index e33b898e60..5274abffb0 100644 --- a/intersight_gosdk/model_niatelemetry_apic_pod_data_list.go +++ b/intersight_gosdk/model_niatelemetry_apic_pod_data_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_pod_data_response.go b/intersight_gosdk/model_niatelemetry_apic_pod_data_response.go index e8480f32d4..cccbec8db0 100644 --- a/intersight_gosdk/model_niatelemetry_apic_pod_data_response.go +++ b/intersight_gosdk/model_niatelemetry_apic_pod_data_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_psu_details.go b/intersight_gosdk/model_niatelemetry_apic_psu_details.go index dcda0f8f13..3abc11f25c 100644 --- a/intersight_gosdk/model_niatelemetry_apic_psu_details.go +++ b/intersight_gosdk/model_niatelemetry_apic_psu_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_psu_details_list.go b/intersight_gosdk/model_niatelemetry_apic_psu_details_list.go index 3b1d06b9ca..64d999d33f 100644 --- a/intersight_gosdk/model_niatelemetry_apic_psu_details_list.go +++ b/intersight_gosdk/model_niatelemetry_apic_psu_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_psu_details_response.go b/intersight_gosdk/model_niatelemetry_apic_psu_details_response.go index 121adab7be..cc256d2f93 100644 --- a/intersight_gosdk/model_niatelemetry_apic_psu_details_response.go +++ b/intersight_gosdk/model_niatelemetry_apic_psu_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_realm_details.go b/intersight_gosdk/model_niatelemetry_apic_realm_details.go index 1293b42261..25d076e7c4 100644 --- a/intersight_gosdk/model_niatelemetry_apic_realm_details.go +++ b/intersight_gosdk/model_niatelemetry_apic_realm_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_realm_details_list.go b/intersight_gosdk/model_niatelemetry_apic_realm_details_list.go index 47ed70854f..52fc531430 100644 --- a/intersight_gosdk/model_niatelemetry_apic_realm_details_list.go +++ b/intersight_gosdk/model_niatelemetry_apic_realm_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_realm_details_response.go b/intersight_gosdk/model_niatelemetry_apic_realm_details_response.go index 44e1b3477c..582a0a3330 100644 --- a/intersight_gosdk/model_niatelemetry_apic_realm_details_response.go +++ b/intersight_gosdk/model_niatelemetry_apic_realm_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_snmp_client_grp_details.go b/intersight_gosdk/model_niatelemetry_apic_snmp_client_grp_details.go index fa2caae4b1..b469e19ecc 100644 --- a/intersight_gosdk/model_niatelemetry_apic_snmp_client_grp_details.go +++ b/intersight_gosdk/model_niatelemetry_apic_snmp_client_grp_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_snmp_client_grp_details_list.go b/intersight_gosdk/model_niatelemetry_apic_snmp_client_grp_details_list.go index 659f836e72..6538f63f6c 100644 --- a/intersight_gosdk/model_niatelemetry_apic_snmp_client_grp_details_list.go +++ b/intersight_gosdk/model_niatelemetry_apic_snmp_client_grp_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_snmp_client_grp_details_response.go b/intersight_gosdk/model_niatelemetry_apic_snmp_client_grp_details_response.go index 8604fc59a2..c80c24200c 100644 --- a/intersight_gosdk/model_niatelemetry_apic_snmp_client_grp_details_response.go +++ b/intersight_gosdk/model_niatelemetry_apic_snmp_client_grp_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_snmp_community_access_details.go b/intersight_gosdk/model_niatelemetry_apic_snmp_community_access_details.go index e72a541c4b..4684b29abe 100644 --- a/intersight_gosdk/model_niatelemetry_apic_snmp_community_access_details.go +++ b/intersight_gosdk/model_niatelemetry_apic_snmp_community_access_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_snmp_community_access_details_list.go b/intersight_gosdk/model_niatelemetry_apic_snmp_community_access_details_list.go index 2c44565ca1..a18a4a73a5 100644 --- a/intersight_gosdk/model_niatelemetry_apic_snmp_community_access_details_list.go +++ b/intersight_gosdk/model_niatelemetry_apic_snmp_community_access_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_snmp_community_access_details_response.go b/intersight_gosdk/model_niatelemetry_apic_snmp_community_access_details_response.go index 9c4c587a7e..5ef866ea59 100644 --- a/intersight_gosdk/model_niatelemetry_apic_snmp_community_access_details_response.go +++ b/intersight_gosdk/model_niatelemetry_apic_snmp_community_access_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_snmp_community_details.go b/intersight_gosdk/model_niatelemetry_apic_snmp_community_details.go index 417cbc8eae..7e36f5088f 100644 --- a/intersight_gosdk/model_niatelemetry_apic_snmp_community_details.go +++ b/intersight_gosdk/model_niatelemetry_apic_snmp_community_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_snmp_community_details_list.go b/intersight_gosdk/model_niatelemetry_apic_snmp_community_details_list.go index e209a946c0..dc2291c441 100644 --- a/intersight_gosdk/model_niatelemetry_apic_snmp_community_details_list.go +++ b/intersight_gosdk/model_niatelemetry_apic_snmp_community_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_snmp_community_details_response.go b/intersight_gosdk/model_niatelemetry_apic_snmp_community_details_response.go index ae7a737516..c5f91eacfc 100644 --- a/intersight_gosdk/model_niatelemetry_apic_snmp_community_details_response.go +++ b/intersight_gosdk/model_niatelemetry_apic_snmp_community_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_snmp_trap_details.go b/intersight_gosdk/model_niatelemetry_apic_snmp_trap_details.go index 39bb2456a4..4c34405130 100644 --- a/intersight_gosdk/model_niatelemetry_apic_snmp_trap_details.go +++ b/intersight_gosdk/model_niatelemetry_apic_snmp_trap_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_snmp_trap_details_list.go b/intersight_gosdk/model_niatelemetry_apic_snmp_trap_details_list.go index b827f97b51..0e8ed82204 100644 --- a/intersight_gosdk/model_niatelemetry_apic_snmp_trap_details_list.go +++ b/intersight_gosdk/model_niatelemetry_apic_snmp_trap_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_snmp_trap_details_response.go b/intersight_gosdk/model_niatelemetry_apic_snmp_trap_details_response.go index 3583f11d6d..19994af0fa 100644 --- a/intersight_gosdk/model_niatelemetry_apic_snmp_trap_details_response.go +++ b/intersight_gosdk/model_niatelemetry_apic_snmp_trap_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_snmp_trap_fwd_server_details.go b/intersight_gosdk/model_niatelemetry_apic_snmp_trap_fwd_server_details.go index 55c3244883..a8f58e4721 100644 --- a/intersight_gosdk/model_niatelemetry_apic_snmp_trap_fwd_server_details.go +++ b/intersight_gosdk/model_niatelemetry_apic_snmp_trap_fwd_server_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_snmp_trap_fwd_server_details_list.go b/intersight_gosdk/model_niatelemetry_apic_snmp_trap_fwd_server_details_list.go index 966b8ab475..b4140e66ec 100644 --- a/intersight_gosdk/model_niatelemetry_apic_snmp_trap_fwd_server_details_list.go +++ b/intersight_gosdk/model_niatelemetry_apic_snmp_trap_fwd_server_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_snmp_trap_fwd_server_details_response.go b/intersight_gosdk/model_niatelemetry_apic_snmp_trap_fwd_server_details_response.go index 95c408506b..f30844e81b 100644 --- a/intersight_gosdk/model_niatelemetry_apic_snmp_trap_fwd_server_details_response.go +++ b/intersight_gosdk/model_niatelemetry_apic_snmp_trap_fwd_server_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_snmp_version_three_details.go b/intersight_gosdk/model_niatelemetry_apic_snmp_version_three_details.go index 44cd41504b..8225b531d2 100644 --- a/intersight_gosdk/model_niatelemetry_apic_snmp_version_three_details.go +++ b/intersight_gosdk/model_niatelemetry_apic_snmp_version_three_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_snmp_version_three_details_list.go b/intersight_gosdk/model_niatelemetry_apic_snmp_version_three_details_list.go index 544d4de2aa..98a2305dcb 100644 --- a/intersight_gosdk/model_niatelemetry_apic_snmp_version_three_details_list.go +++ b/intersight_gosdk/model_niatelemetry_apic_snmp_version_three_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_snmp_version_three_details_response.go b/intersight_gosdk/model_niatelemetry_apic_snmp_version_three_details_response.go index 002b7c37e2..91bb3cd7ee 100644 --- a/intersight_gosdk/model_niatelemetry_apic_snmp_version_three_details_response.go +++ b/intersight_gosdk/model_niatelemetry_apic_snmp_version_three_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_sys_log_grp.go b/intersight_gosdk/model_niatelemetry_apic_sys_log_grp.go index 862add87ce..d325756ccd 100644 --- a/intersight_gosdk/model_niatelemetry_apic_sys_log_grp.go +++ b/intersight_gosdk/model_niatelemetry_apic_sys_log_grp.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_sys_log_grp_list.go b/intersight_gosdk/model_niatelemetry_apic_sys_log_grp_list.go index 3a80880190..0219cd1c06 100644 --- a/intersight_gosdk/model_niatelemetry_apic_sys_log_grp_list.go +++ b/intersight_gosdk/model_niatelemetry_apic_sys_log_grp_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_sys_log_grp_response.go b/intersight_gosdk/model_niatelemetry_apic_sys_log_grp_response.go index 9309b7b3b0..9e495ed1d3 100644 --- a/intersight_gosdk/model_niatelemetry_apic_sys_log_grp_response.go +++ b/intersight_gosdk/model_niatelemetry_apic_sys_log_grp_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_sys_log_src.go b/intersight_gosdk/model_niatelemetry_apic_sys_log_src.go index 0e5d9c22d0..e39abef4b1 100644 --- a/intersight_gosdk/model_niatelemetry_apic_sys_log_src.go +++ b/intersight_gosdk/model_niatelemetry_apic_sys_log_src.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_sys_log_src_list.go b/intersight_gosdk/model_niatelemetry_apic_sys_log_src_list.go index f600f02e9f..5e23f8dd3e 100644 --- a/intersight_gosdk/model_niatelemetry_apic_sys_log_src_list.go +++ b/intersight_gosdk/model_niatelemetry_apic_sys_log_src_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_sys_log_src_response.go b/intersight_gosdk/model_niatelemetry_apic_sys_log_src_response.go index b87b3bebb2..87fa49a5f3 100644 --- a/intersight_gosdk/model_niatelemetry_apic_sys_log_src_response.go +++ b/intersight_gosdk/model_niatelemetry_apic_sys_log_src_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_transceiver_details.go b/intersight_gosdk/model_niatelemetry_apic_transceiver_details.go index a99d9b906e..23d98e4f5e 100644 --- a/intersight_gosdk/model_niatelemetry_apic_transceiver_details.go +++ b/intersight_gosdk/model_niatelemetry_apic_transceiver_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_transceiver_details_list.go b/intersight_gosdk/model_niatelemetry_apic_transceiver_details_list.go index aebddfd80b..355168e2c9 100644 --- a/intersight_gosdk/model_niatelemetry_apic_transceiver_details_list.go +++ b/intersight_gosdk/model_niatelemetry_apic_transceiver_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_transceiver_details_response.go b/intersight_gosdk/model_niatelemetry_apic_transceiver_details_response.go index 8d9d7d330b..e6edf5dba3 100644 --- a/intersight_gosdk/model_niatelemetry_apic_transceiver_details_response.go +++ b/intersight_gosdk/model_niatelemetry_apic_transceiver_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_ui_page_counts.go b/intersight_gosdk/model_niatelemetry_apic_ui_page_counts.go index d6309a757f..638fd13e73 100644 --- a/intersight_gosdk/model_niatelemetry_apic_ui_page_counts.go +++ b/intersight_gosdk/model_niatelemetry_apic_ui_page_counts.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_ui_page_counts_list.go b/intersight_gosdk/model_niatelemetry_apic_ui_page_counts_list.go index a1873cc84d..f29939eb47 100644 --- a/intersight_gosdk/model_niatelemetry_apic_ui_page_counts_list.go +++ b/intersight_gosdk/model_niatelemetry_apic_ui_page_counts_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_ui_page_counts_response.go b/intersight_gosdk/model_niatelemetry_apic_ui_page_counts_response.go index 12bbe245cb..1d38bccf36 100644 --- a/intersight_gosdk/model_niatelemetry_apic_ui_page_counts_response.go +++ b/intersight_gosdk/model_niatelemetry_apic_ui_page_counts_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_vision.go b/intersight_gosdk/model_niatelemetry_apic_vision.go index 285647c7ea..1cd41280c0 100644 --- a/intersight_gosdk/model_niatelemetry_apic_vision.go +++ b/intersight_gosdk/model_niatelemetry_apic_vision.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_vision_list.go b/intersight_gosdk/model_niatelemetry_apic_vision_list.go index b508c8f8e0..6129a8affd 100644 --- a/intersight_gosdk/model_niatelemetry_apic_vision_list.go +++ b/intersight_gosdk/model_niatelemetry_apic_vision_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_vision_response.go b/intersight_gosdk/model_niatelemetry_apic_vision_response.go index 23a9914092..6e3aec76cd 100644 --- a/intersight_gosdk/model_niatelemetry_apic_vision_response.go +++ b/intersight_gosdk/model_niatelemetry_apic_vision_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_app_details.go b/intersight_gosdk/model_niatelemetry_app_details.go index c1bd6ffa66..53382245a0 100644 --- a/intersight_gosdk/model_niatelemetry_app_details.go +++ b/intersight_gosdk/model_niatelemetry_app_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_app_details_list.go b/intersight_gosdk/model_niatelemetry_app_details_list.go index ac4702bedf..615480f395 100644 --- a/intersight_gosdk/model_niatelemetry_app_details_list.go +++ b/intersight_gosdk/model_niatelemetry_app_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_app_details_response.go b/intersight_gosdk/model_niatelemetry_app_details_response.go index 2c2409f1e3..222fcb9700 100644 --- a/intersight_gosdk/model_niatelemetry_app_details_response.go +++ b/intersight_gosdk/model_niatelemetry_app_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_bootflash_details.go b/intersight_gosdk/model_niatelemetry_bootflash_details.go index 254f192f53..9c649e236b 100644 --- a/intersight_gosdk/model_niatelemetry_bootflash_details.go +++ b/intersight_gosdk/model_niatelemetry_bootflash_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_cloud_details.go b/intersight_gosdk/model_niatelemetry_cloud_details.go index 77634fc3de..ac9122b2c6 100644 --- a/intersight_gosdk/model_niatelemetry_cloud_details.go +++ b/intersight_gosdk/model_niatelemetry_cloud_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_cloud_details_list.go b/intersight_gosdk/model_niatelemetry_cloud_details_list.go index 2a5755f6de..b94cce2b80 100644 --- a/intersight_gosdk/model_niatelemetry_cloud_details_list.go +++ b/intersight_gosdk/model_niatelemetry_cloud_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_cloud_details_response.go b/intersight_gosdk/model_niatelemetry_cloud_details_response.go index 8dd5bc964b..d742100542 100644 --- a/intersight_gosdk/model_niatelemetry_cloud_details_response.go +++ b/intersight_gosdk/model_niatelemetry_cloud_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_cloud_regions_element.go b/intersight_gosdk/model_niatelemetry_cloud_regions_element.go index ea3f81b53b..5f8fe5ca4a 100644 --- a/intersight_gosdk/model_niatelemetry_cloud_regions_element.go +++ b/intersight_gosdk/model_niatelemetry_cloud_regions_element.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_cloud_routers_element.go b/intersight_gosdk/model_niatelemetry_cloud_routers_element.go index 5afdf32649..875461c2a0 100644 --- a/intersight_gosdk/model_niatelemetry_cloud_routers_element.go +++ b/intersight_gosdk/model_niatelemetry_cloud_routers_element.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_common_policies.go b/intersight_gosdk/model_niatelemetry_common_policies.go index 656d11461a..2438bab28a 100644 --- a/intersight_gosdk/model_niatelemetry_common_policies.go +++ b/intersight_gosdk/model_niatelemetry_common_policies.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_common_policies_list.go b/intersight_gosdk/model_niatelemetry_common_policies_list.go index b94db569f3..6c585ef733 100644 --- a/intersight_gosdk/model_niatelemetry_common_policies_list.go +++ b/intersight_gosdk/model_niatelemetry_common_policies_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_common_policies_response.go b/intersight_gosdk/model_niatelemetry_common_policies_response.go index b5ced53a35..1b679cb15f 100644 --- a/intersight_gosdk/model_niatelemetry_common_policies_response.go +++ b/intersight_gosdk/model_niatelemetry_common_policies_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_dcnm_fan_details.go b/intersight_gosdk/model_niatelemetry_dcnm_fan_details.go index 53700b11eb..8bff6e320a 100644 --- a/intersight_gosdk/model_niatelemetry_dcnm_fan_details.go +++ b/intersight_gosdk/model_niatelemetry_dcnm_fan_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_dcnm_fan_details_list.go b/intersight_gosdk/model_niatelemetry_dcnm_fan_details_list.go index 153b12d2f8..69d9c8944d 100644 --- a/intersight_gosdk/model_niatelemetry_dcnm_fan_details_list.go +++ b/intersight_gosdk/model_niatelemetry_dcnm_fan_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_dcnm_fan_details_response.go b/intersight_gosdk/model_niatelemetry_dcnm_fan_details_response.go index 5fbd0a5421..0983b99b2c 100644 --- a/intersight_gosdk/model_niatelemetry_dcnm_fan_details_response.go +++ b/intersight_gosdk/model_niatelemetry_dcnm_fan_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_dcnm_fex_details.go b/intersight_gosdk/model_niatelemetry_dcnm_fex_details.go index c9d66a5510..ed6562cad2 100644 --- a/intersight_gosdk/model_niatelemetry_dcnm_fex_details.go +++ b/intersight_gosdk/model_niatelemetry_dcnm_fex_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_dcnm_fex_details_list.go b/intersight_gosdk/model_niatelemetry_dcnm_fex_details_list.go index 25a950977f..5c9d81ff57 100644 --- a/intersight_gosdk/model_niatelemetry_dcnm_fex_details_list.go +++ b/intersight_gosdk/model_niatelemetry_dcnm_fex_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_dcnm_fex_details_response.go b/intersight_gosdk/model_niatelemetry_dcnm_fex_details_response.go index 053bedb5ac..6ac8be1b63 100644 --- a/intersight_gosdk/model_niatelemetry_dcnm_fex_details_response.go +++ b/intersight_gosdk/model_niatelemetry_dcnm_fex_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_dcnm_module_details.go b/intersight_gosdk/model_niatelemetry_dcnm_module_details.go index 0852ef8da1..3829fa5b33 100644 --- a/intersight_gosdk/model_niatelemetry_dcnm_module_details.go +++ b/intersight_gosdk/model_niatelemetry_dcnm_module_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_dcnm_module_details_list.go b/intersight_gosdk/model_niatelemetry_dcnm_module_details_list.go index 96b840993f..3a5b0c1c92 100644 --- a/intersight_gosdk/model_niatelemetry_dcnm_module_details_list.go +++ b/intersight_gosdk/model_niatelemetry_dcnm_module_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_dcnm_module_details_response.go b/intersight_gosdk/model_niatelemetry_dcnm_module_details_response.go index 001904a6a6..09ab3581ff 100644 --- a/intersight_gosdk/model_niatelemetry_dcnm_module_details_response.go +++ b/intersight_gosdk/model_niatelemetry_dcnm_module_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_dcnm_psu_details.go b/intersight_gosdk/model_niatelemetry_dcnm_psu_details.go index 1ee4454063..bab6b26085 100644 --- a/intersight_gosdk/model_niatelemetry_dcnm_psu_details.go +++ b/intersight_gosdk/model_niatelemetry_dcnm_psu_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_dcnm_psu_details_list.go b/intersight_gosdk/model_niatelemetry_dcnm_psu_details_list.go index f8c546a445..1e53ca8c11 100644 --- a/intersight_gosdk/model_niatelemetry_dcnm_psu_details_list.go +++ b/intersight_gosdk/model_niatelemetry_dcnm_psu_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_dcnm_psu_details_response.go b/intersight_gosdk/model_niatelemetry_dcnm_psu_details_response.go index 4cacbf599c..54efa52699 100644 --- a/intersight_gosdk/model_niatelemetry_dcnm_psu_details_response.go +++ b/intersight_gosdk/model_niatelemetry_dcnm_psu_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_dcnm_transceiver_details.go b/intersight_gosdk/model_niatelemetry_dcnm_transceiver_details.go index af14dde142..e9b884deba 100644 --- a/intersight_gosdk/model_niatelemetry_dcnm_transceiver_details.go +++ b/intersight_gosdk/model_niatelemetry_dcnm_transceiver_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_dcnm_transceiver_details_list.go b/intersight_gosdk/model_niatelemetry_dcnm_transceiver_details_list.go index 3ab3790828..850e5777d9 100644 --- a/intersight_gosdk/model_niatelemetry_dcnm_transceiver_details_list.go +++ b/intersight_gosdk/model_niatelemetry_dcnm_transceiver_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_dcnm_transceiver_details_response.go b/intersight_gosdk/model_niatelemetry_dcnm_transceiver_details_response.go index 73010d4ecc..1267e76e03 100644 --- a/intersight_gosdk/model_niatelemetry_dcnm_transceiver_details_response.go +++ b/intersight_gosdk/model_niatelemetry_dcnm_transceiver_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_deployment_status.go b/intersight_gosdk/model_niatelemetry_deployment_status.go index d91c84c5a8..6724502d02 100644 --- a/intersight_gosdk/model_niatelemetry_deployment_status.go +++ b/intersight_gosdk/model_niatelemetry_deployment_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_digital_optical_monitoring.go b/intersight_gosdk/model_niatelemetry_digital_optical_monitoring.go index e5648d2aac..da8cbc5d2d 100644 --- a/intersight_gosdk/model_niatelemetry_digital_optical_monitoring.go +++ b/intersight_gosdk/model_niatelemetry_digital_optical_monitoring.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_diskinfo.go b/intersight_gosdk/model_niatelemetry_diskinfo.go index 01a25c0dec..ca10ac9fa7 100644 --- a/intersight_gosdk/model_niatelemetry_diskinfo.go +++ b/intersight_gosdk/model_niatelemetry_diskinfo.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_epg.go b/intersight_gosdk/model_niatelemetry_epg.go index e5135c7b65..35e9698e8a 100644 --- a/intersight_gosdk/model_niatelemetry_epg.go +++ b/intersight_gosdk/model_niatelemetry_epg.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_epg_list.go b/intersight_gosdk/model_niatelemetry_epg_list.go index 50c35f8e24..b9bcc5324e 100644 --- a/intersight_gosdk/model_niatelemetry_epg_list.go +++ b/intersight_gosdk/model_niatelemetry_epg_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_epg_response.go b/intersight_gosdk/model_niatelemetry_epg_response.go index 0e026745d7..75b4635ae2 100644 --- a/intersight_gosdk/model_niatelemetry_epg_response.go +++ b/intersight_gosdk/model_niatelemetry_epg_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_eqpt_storage_firmware.go b/intersight_gosdk/model_niatelemetry_eqpt_storage_firmware.go index f668ff21bb..7f42bfcbcc 100644 --- a/intersight_gosdk/model_niatelemetry_eqpt_storage_firmware.go +++ b/intersight_gosdk/model_niatelemetry_eqpt_storage_firmware.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_eqptcapacity_pol_usage5min.go b/intersight_gosdk/model_niatelemetry_eqptcapacity_pol_usage5min.go index 609a13848e..d8475e1b9d 100644 --- a/intersight_gosdk/model_niatelemetry_eqptcapacity_pol_usage5min.go +++ b/intersight_gosdk/model_niatelemetry_eqptcapacity_pol_usage5min.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_eqptcapacity_prefix_entries15min.go b/intersight_gosdk/model_niatelemetry_eqptcapacity_prefix_entries15min.go index 1b4b47f5ca..48f4ff2d61 100644 --- a/intersight_gosdk/model_niatelemetry_eqptcapacity_prefix_entries15min.go +++ b/intersight_gosdk/model_niatelemetry_eqptcapacity_prefix_entries15min.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_eqptcapacity_prefix_entries5min.go b/intersight_gosdk/model_niatelemetry_eqptcapacity_prefix_entries5min.go index ab491e8366..e043c1c483 100644 --- a/intersight_gosdk/model_niatelemetry_eqptcapacity_prefix_entries5min.go +++ b/intersight_gosdk/model_niatelemetry_eqptcapacity_prefix_entries5min.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_fabric_module_details.go b/intersight_gosdk/model_niatelemetry_fabric_module_details.go index bed4e703fa..53b72b761e 100644 --- a/intersight_gosdk/model_niatelemetry_fabric_module_details.go +++ b/intersight_gosdk/model_niatelemetry_fabric_module_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_fabric_module_details_list.go b/intersight_gosdk/model_niatelemetry_fabric_module_details_list.go index a0422c81ff..292272b4db 100644 --- a/intersight_gosdk/model_niatelemetry_fabric_module_details_list.go +++ b/intersight_gosdk/model_niatelemetry_fabric_module_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_fabric_module_details_response.go b/intersight_gosdk/model_niatelemetry_fabric_module_details_response.go index 8ff3cb5f90..196f6ff35c 100644 --- a/intersight_gosdk/model_niatelemetry_fabric_module_details_response.go +++ b/intersight_gosdk/model_niatelemetry_fabric_module_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_fabric_node_control_details.go b/intersight_gosdk/model_niatelemetry_fabric_node_control_details.go index 542025120e..123a0c7ff4 100644 --- a/intersight_gosdk/model_niatelemetry_fabric_node_control_details.go +++ b/intersight_gosdk/model_niatelemetry_fabric_node_control_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_fabric_node_control_details_list.go b/intersight_gosdk/model_niatelemetry_fabric_node_control_details_list.go index d041f25fa1..9006fee081 100644 --- a/intersight_gosdk/model_niatelemetry_fabric_node_control_details_list.go +++ b/intersight_gosdk/model_niatelemetry_fabric_node_control_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_fabric_node_control_details_response.go b/intersight_gosdk/model_niatelemetry_fabric_node_control_details_response.go index 6bf783c5ec..34a86f8cf8 100644 --- a/intersight_gosdk/model_niatelemetry_fabric_node_control_details_response.go +++ b/intersight_gosdk/model_niatelemetry_fabric_node_control_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_fabric_pod_profile.go b/intersight_gosdk/model_niatelemetry_fabric_pod_profile.go index 6e86d5924d..1871301ba2 100644 --- a/intersight_gosdk/model_niatelemetry_fabric_pod_profile.go +++ b/intersight_gosdk/model_niatelemetry_fabric_pod_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_fabric_pod_profile_list.go b/intersight_gosdk/model_niatelemetry_fabric_pod_profile_list.go index 467c2b351b..ece7d6929a 100644 --- a/intersight_gosdk/model_niatelemetry_fabric_pod_profile_list.go +++ b/intersight_gosdk/model_niatelemetry_fabric_pod_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_fabric_pod_profile_response.go b/intersight_gosdk/model_niatelemetry_fabric_pod_profile_response.go index ecf13f2ad9..ddf106f2d6 100644 --- a/intersight_gosdk/model_niatelemetry_fabric_pod_profile_response.go +++ b/intersight_gosdk/model_niatelemetry_fabric_pod_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_fabric_pod_ss.go b/intersight_gosdk/model_niatelemetry_fabric_pod_ss.go index 3bba0ec51d..f8f134657b 100644 --- a/intersight_gosdk/model_niatelemetry_fabric_pod_ss.go +++ b/intersight_gosdk/model_niatelemetry_fabric_pod_ss.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_fabric_pod_ss_list.go b/intersight_gosdk/model_niatelemetry_fabric_pod_ss_list.go index 6c20a658d1..d397e123ac 100644 --- a/intersight_gosdk/model_niatelemetry_fabric_pod_ss_list.go +++ b/intersight_gosdk/model_niatelemetry_fabric_pod_ss_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_fabric_pod_ss_response.go b/intersight_gosdk/model_niatelemetry_fabric_pod_ss_response.go index 97f5e71e6d..11df0d0593 100644 --- a/intersight_gosdk/model_niatelemetry_fabric_pod_ss_response.go +++ b/intersight_gosdk/model_niatelemetry_fabric_pod_ss_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_fan_details.go b/intersight_gosdk/model_niatelemetry_fan_details.go index 1a81cdfe4e..5486b677be 100644 --- a/intersight_gosdk/model_niatelemetry_fan_details.go +++ b/intersight_gosdk/model_niatelemetry_fan_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_fault.go b/intersight_gosdk/model_niatelemetry_fault.go index ddd46bde1f..976b5a210b 100644 --- a/intersight_gosdk/model_niatelemetry_fault.go +++ b/intersight_gosdk/model_niatelemetry_fault.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_fault_list.go b/intersight_gosdk/model_niatelemetry_fault_list.go index 1e9c2d5390..8926d1586a 100644 --- a/intersight_gosdk/model_niatelemetry_fault_list.go +++ b/intersight_gosdk/model_niatelemetry_fault_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_fault_response.go b/intersight_gosdk/model_niatelemetry_fault_response.go index cdcbf50afe..df758e8011 100644 --- a/intersight_gosdk/model_niatelemetry_fault_response.go +++ b/intersight_gosdk/model_niatelemetry_fault_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_hcloud_details.go b/intersight_gosdk/model_niatelemetry_hcloud_details.go index 8633eb4b35..071e18c8b7 100644 --- a/intersight_gosdk/model_niatelemetry_hcloud_details.go +++ b/intersight_gosdk/model_niatelemetry_hcloud_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_hcloud_details_list.go b/intersight_gosdk/model_niatelemetry_hcloud_details_list.go index e63fe158a7..f70aad5d81 100644 --- a/intersight_gosdk/model_niatelemetry_hcloud_details_list.go +++ b/intersight_gosdk/model_niatelemetry_hcloud_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_hcloud_details_response.go b/intersight_gosdk/model_niatelemetry_hcloud_details_response.go index 50b122a517..9936014366 100644 --- a/intersight_gosdk/model_niatelemetry_hcloud_details_response.go +++ b/intersight_gosdk/model_niatelemetry_hcloud_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_health_insights_data.go b/intersight_gosdk/model_niatelemetry_health_insights_data.go index 6e77d9db43..55792dbc28 100644 --- a/intersight_gosdk/model_niatelemetry_health_insights_data.go +++ b/intersight_gosdk/model_niatelemetry_health_insights_data.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_health_insights_data_list.go b/intersight_gosdk/model_niatelemetry_health_insights_data_list.go index a75909fc2f..5996c59e55 100644 --- a/intersight_gosdk/model_niatelemetry_health_insights_data_list.go +++ b/intersight_gosdk/model_niatelemetry_health_insights_data_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_health_insights_data_response.go b/intersight_gosdk/model_niatelemetry_health_insights_data_response.go index 4402a7f4d6..78b618ff18 100644 --- a/intersight_gosdk/model_niatelemetry_health_insights_data_response.go +++ b/intersight_gosdk/model_niatelemetry_health_insights_data_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_https_acl_contract_details.go b/intersight_gosdk/model_niatelemetry_https_acl_contract_details.go index 30ae1e03e7..3b16ac11d8 100644 --- a/intersight_gosdk/model_niatelemetry_https_acl_contract_details.go +++ b/intersight_gosdk/model_niatelemetry_https_acl_contract_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_https_acl_contract_details_list.go b/intersight_gosdk/model_niatelemetry_https_acl_contract_details_list.go index 4266a731f8..9dadb623b0 100644 --- a/intersight_gosdk/model_niatelemetry_https_acl_contract_details_list.go +++ b/intersight_gosdk/model_niatelemetry_https_acl_contract_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_https_acl_contract_details_response.go b/intersight_gosdk/model_niatelemetry_https_acl_contract_details_response.go index c26605f2a4..7d1070a567 100644 --- a/intersight_gosdk/model_niatelemetry_https_acl_contract_details_response.go +++ b/intersight_gosdk/model_niatelemetry_https_acl_contract_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_https_acl_contract_filter_map.go b/intersight_gosdk/model_niatelemetry_https_acl_contract_filter_map.go index a3a909879a..9d0ed504a1 100644 --- a/intersight_gosdk/model_niatelemetry_https_acl_contract_filter_map.go +++ b/intersight_gosdk/model_niatelemetry_https_acl_contract_filter_map.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_https_acl_contract_filter_map_list.go b/intersight_gosdk/model_niatelemetry_https_acl_contract_filter_map_list.go index dc47cdec26..0f21dd843a 100644 --- a/intersight_gosdk/model_niatelemetry_https_acl_contract_filter_map_list.go +++ b/intersight_gosdk/model_niatelemetry_https_acl_contract_filter_map_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_https_acl_contract_filter_map_response.go b/intersight_gosdk/model_niatelemetry_https_acl_contract_filter_map_response.go index a969f73043..481a806b03 100644 --- a/intersight_gosdk/model_niatelemetry_https_acl_contract_filter_map_response.go +++ b/intersight_gosdk/model_niatelemetry_https_acl_contract_filter_map_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_https_acl_epg_contract_map.go b/intersight_gosdk/model_niatelemetry_https_acl_epg_contract_map.go index 3641490552..b84a3839eb 100644 --- a/intersight_gosdk/model_niatelemetry_https_acl_epg_contract_map.go +++ b/intersight_gosdk/model_niatelemetry_https_acl_epg_contract_map.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_https_acl_epg_contract_map_list.go b/intersight_gosdk/model_niatelemetry_https_acl_epg_contract_map_list.go index 55284c75f1..284564a3db 100644 --- a/intersight_gosdk/model_niatelemetry_https_acl_epg_contract_map_list.go +++ b/intersight_gosdk/model_niatelemetry_https_acl_epg_contract_map_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_https_acl_epg_contract_map_response.go b/intersight_gosdk/model_niatelemetry_https_acl_epg_contract_map_response.go index a7c4273d40..8069bd6397 100644 --- a/intersight_gosdk/model_niatelemetry_https_acl_epg_contract_map_response.go +++ b/intersight_gosdk/model_niatelemetry_https_acl_epg_contract_map_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_https_acl_epg_details.go b/intersight_gosdk/model_niatelemetry_https_acl_epg_details.go index 3dd6964152..d7b44e7745 100644 --- a/intersight_gosdk/model_niatelemetry_https_acl_epg_details.go +++ b/intersight_gosdk/model_niatelemetry_https_acl_epg_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_https_acl_epg_details_list.go b/intersight_gosdk/model_niatelemetry_https_acl_epg_details_list.go index 4ee20ae9a4..5031b0220c 100644 --- a/intersight_gosdk/model_niatelemetry_https_acl_epg_details_list.go +++ b/intersight_gosdk/model_niatelemetry_https_acl_epg_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_https_acl_epg_details_response.go b/intersight_gosdk/model_niatelemetry_https_acl_epg_details_response.go index e2b98065af..b352739067 100644 --- a/intersight_gosdk/model_niatelemetry_https_acl_epg_details_response.go +++ b/intersight_gosdk/model_niatelemetry_https_acl_epg_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_https_acl_filter_details.go b/intersight_gosdk/model_niatelemetry_https_acl_filter_details.go index 715efb942d..67227e7115 100644 --- a/intersight_gosdk/model_niatelemetry_https_acl_filter_details.go +++ b/intersight_gosdk/model_niatelemetry_https_acl_filter_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_https_acl_filter_details_list.go b/intersight_gosdk/model_niatelemetry_https_acl_filter_details_list.go index b4fa0ffa86..1aad9e353a 100644 --- a/intersight_gosdk/model_niatelemetry_https_acl_filter_details_list.go +++ b/intersight_gosdk/model_niatelemetry_https_acl_filter_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_https_acl_filter_details_response.go b/intersight_gosdk/model_niatelemetry_https_acl_filter_details_response.go index 267dd71b32..5072f38a53 100644 --- a/intersight_gosdk/model_niatelemetry_https_acl_filter_details_response.go +++ b/intersight_gosdk/model_niatelemetry_https_acl_filter_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_image_detail.go b/intersight_gosdk/model_niatelemetry_image_detail.go index 50c5b2eb13..773363d485 100644 --- a/intersight_gosdk/model_niatelemetry_image_detail.go +++ b/intersight_gosdk/model_niatelemetry_image_detail.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_insight_group_details.go b/intersight_gosdk/model_niatelemetry_insight_group_details.go index 893aefe98c..496a303bdf 100644 --- a/intersight_gosdk/model_niatelemetry_insight_group_details.go +++ b/intersight_gosdk/model_niatelemetry_insight_group_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_insight_group_details_list.go b/intersight_gosdk/model_niatelemetry_insight_group_details_list.go index 147cad48cc..e2e0cc530e 100644 --- a/intersight_gosdk/model_niatelemetry_insight_group_details_list.go +++ b/intersight_gosdk/model_niatelemetry_insight_group_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_insight_group_details_response.go b/intersight_gosdk/model_niatelemetry_insight_group_details_response.go index 79854b9b82..377335656b 100644 --- a/intersight_gosdk/model_niatelemetry_insight_group_details_response.go +++ b/intersight_gosdk/model_niatelemetry_insight_group_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_interface.go b/intersight_gosdk/model_niatelemetry_interface.go index ed84461c1a..402c05b5af 100644 --- a/intersight_gosdk/model_niatelemetry_interface.go +++ b/intersight_gosdk/model_niatelemetry_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_interface_element.go b/intersight_gosdk/model_niatelemetry_interface_element.go index ef47808ec6..6c805aa5aa 100644 --- a/intersight_gosdk/model_niatelemetry_interface_element.go +++ b/intersight_gosdk/model_niatelemetry_interface_element.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_job_detail.go b/intersight_gosdk/model_niatelemetry_job_detail.go index 6ea2fee8b2..12b55a9d2c 100644 --- a/intersight_gosdk/model_niatelemetry_job_detail.go +++ b/intersight_gosdk/model_niatelemetry_job_detail.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_lc.go b/intersight_gosdk/model_niatelemetry_lc.go index 7be3cebee2..1db091125d 100644 --- a/intersight_gosdk/model_niatelemetry_lc.go +++ b/intersight_gosdk/model_niatelemetry_lc.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_lc_list.go b/intersight_gosdk/model_niatelemetry_lc_list.go index 3122fe08aa..9572686986 100644 --- a/intersight_gosdk/model_niatelemetry_lc_list.go +++ b/intersight_gosdk/model_niatelemetry_lc_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_lc_response.go b/intersight_gosdk/model_niatelemetry_lc_response.go index 7d18d97d2a..4666ac647c 100644 --- a/intersight_gosdk/model_niatelemetry_lc_response.go +++ b/intersight_gosdk/model_niatelemetry_lc_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_leaf_pol_grp_details.go b/intersight_gosdk/model_niatelemetry_leaf_pol_grp_details.go index 652754ef5c..bc35651346 100644 --- a/intersight_gosdk/model_niatelemetry_leaf_pol_grp_details.go +++ b/intersight_gosdk/model_niatelemetry_leaf_pol_grp_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_leaf_pol_grp_details_list.go b/intersight_gosdk/model_niatelemetry_leaf_pol_grp_details_list.go index 7c9e5dc5d7..093a0629e8 100644 --- a/intersight_gosdk/model_niatelemetry_leaf_pol_grp_details_list.go +++ b/intersight_gosdk/model_niatelemetry_leaf_pol_grp_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_leaf_pol_grp_details_response.go b/intersight_gosdk/model_niatelemetry_leaf_pol_grp_details_response.go index 6a8a08af8a..f18e8e843a 100644 --- a/intersight_gosdk/model_niatelemetry_leaf_pol_grp_details_response.go +++ b/intersight_gosdk/model_niatelemetry_leaf_pol_grp_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_logical_link.go b/intersight_gosdk/model_niatelemetry_logical_link.go index 1e52eaec85..663393e83d 100644 --- a/intersight_gosdk/model_niatelemetry_logical_link.go +++ b/intersight_gosdk/model_niatelemetry_logical_link.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_mds_neighbor_info.go b/intersight_gosdk/model_niatelemetry_mds_neighbor_info.go index 0848cdbe5e..d0060ab670 100644 --- a/intersight_gosdk/model_niatelemetry_mds_neighbor_info.go +++ b/intersight_gosdk/model_niatelemetry_mds_neighbor_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_mds_neighbors.go b/intersight_gosdk/model_niatelemetry_mds_neighbors.go index ae29563f3c..841d753720 100644 --- a/intersight_gosdk/model_niatelemetry_mds_neighbors.go +++ b/intersight_gosdk/model_niatelemetry_mds_neighbors.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_mds_neighbors_list.go b/intersight_gosdk/model_niatelemetry_mds_neighbors_list.go index 1d6db259c8..93ab5ab884 100644 --- a/intersight_gosdk/model_niatelemetry_mds_neighbors_list.go +++ b/intersight_gosdk/model_niatelemetry_mds_neighbors_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_mds_neighbors_response.go b/intersight_gosdk/model_niatelemetry_mds_neighbors_response.go index da61016c7e..1681282290 100644 --- a/intersight_gosdk/model_niatelemetry_mds_neighbors_response.go +++ b/intersight_gosdk/model_niatelemetry_mds_neighbors_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_mso_contract_details.go b/intersight_gosdk/model_niatelemetry_mso_contract_details.go index d3a0080a3f..0cb6850a7e 100644 --- a/intersight_gosdk/model_niatelemetry_mso_contract_details.go +++ b/intersight_gosdk/model_niatelemetry_mso_contract_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_mso_contract_details_list.go b/intersight_gosdk/model_niatelemetry_mso_contract_details_list.go index f52c5c44ec..1cb968b809 100644 --- a/intersight_gosdk/model_niatelemetry_mso_contract_details_list.go +++ b/intersight_gosdk/model_niatelemetry_mso_contract_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_mso_contract_details_response.go b/intersight_gosdk/model_niatelemetry_mso_contract_details_response.go index d8943ef3d8..d01525a898 100644 --- a/intersight_gosdk/model_niatelemetry_mso_contract_details_response.go +++ b/intersight_gosdk/model_niatelemetry_mso_contract_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_mso_epg_details.go b/intersight_gosdk/model_niatelemetry_mso_epg_details.go index 0a6c97a403..aa35cda3fb 100644 --- a/intersight_gosdk/model_niatelemetry_mso_epg_details.go +++ b/intersight_gosdk/model_niatelemetry_mso_epg_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_mso_epg_details_list.go b/intersight_gosdk/model_niatelemetry_mso_epg_details_list.go index 5d7238f869..4568e0d3f7 100644 --- a/intersight_gosdk/model_niatelemetry_mso_epg_details_list.go +++ b/intersight_gosdk/model_niatelemetry_mso_epg_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_mso_epg_details_response.go b/intersight_gosdk/model_niatelemetry_mso_epg_details_response.go index 99ad98cf17..ff3ce044d0 100644 --- a/intersight_gosdk/model_niatelemetry_mso_epg_details_response.go +++ b/intersight_gosdk/model_niatelemetry_mso_epg_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_mso_schema_details.go b/intersight_gosdk/model_niatelemetry_mso_schema_details.go index d8222743ec..ed28f89e23 100644 --- a/intersight_gosdk/model_niatelemetry_mso_schema_details.go +++ b/intersight_gosdk/model_niatelemetry_mso_schema_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_mso_schema_details_list.go b/intersight_gosdk/model_niatelemetry_mso_schema_details_list.go index 22122742da..66d8110f8d 100644 --- a/intersight_gosdk/model_niatelemetry_mso_schema_details_list.go +++ b/intersight_gosdk/model_niatelemetry_mso_schema_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_mso_schema_details_response.go b/intersight_gosdk/model_niatelemetry_mso_schema_details_response.go index fe419153fb..b83364490c 100644 --- a/intersight_gosdk/model_niatelemetry_mso_schema_details_response.go +++ b/intersight_gosdk/model_niatelemetry_mso_schema_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_mso_site_details.go b/intersight_gosdk/model_niatelemetry_mso_site_details.go index db5a69e564..15975a1f75 100644 --- a/intersight_gosdk/model_niatelemetry_mso_site_details.go +++ b/intersight_gosdk/model_niatelemetry_mso_site_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_mso_site_details_list.go b/intersight_gosdk/model_niatelemetry_mso_site_details_list.go index d0db059c45..45ab49cad2 100644 --- a/intersight_gosdk/model_niatelemetry_mso_site_details_list.go +++ b/intersight_gosdk/model_niatelemetry_mso_site_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_mso_site_details_response.go b/intersight_gosdk/model_niatelemetry_mso_site_details_response.go index 8f334695ac..914acd1ed6 100644 --- a/intersight_gosdk/model_niatelemetry_mso_site_details_response.go +++ b/intersight_gosdk/model_niatelemetry_mso_site_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_mso_tenant_details.go b/intersight_gosdk/model_niatelemetry_mso_tenant_details.go index 70e81f4a7f..d224d8add0 100644 --- a/intersight_gosdk/model_niatelemetry_mso_tenant_details.go +++ b/intersight_gosdk/model_niatelemetry_mso_tenant_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_mso_tenant_details_list.go b/intersight_gosdk/model_niatelemetry_mso_tenant_details_list.go index 27d96d4b52..b14aac2a03 100644 --- a/intersight_gosdk/model_niatelemetry_mso_tenant_details_list.go +++ b/intersight_gosdk/model_niatelemetry_mso_tenant_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_mso_tenant_details_response.go b/intersight_gosdk/model_niatelemetry_mso_tenant_details_response.go index db4fa7c2b1..10882c2ea7 100644 --- a/intersight_gosdk/model_niatelemetry_mso_tenant_details_response.go +++ b/intersight_gosdk/model_niatelemetry_mso_tenant_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_network_info.go b/intersight_gosdk/model_niatelemetry_network_info.go index ef6910fe68..6871806964 100644 --- a/intersight_gosdk/model_niatelemetry_network_info.go +++ b/intersight_gosdk/model_niatelemetry_network_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nexus_cloud_account.go b/intersight_gosdk/model_niatelemetry_nexus_cloud_account.go index f172bce92d..2d5f55db15 100644 --- a/intersight_gosdk/model_niatelemetry_nexus_cloud_account.go +++ b/intersight_gosdk/model_niatelemetry_nexus_cloud_account.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nexus_cloud_account_list.go b/intersight_gosdk/model_niatelemetry_nexus_cloud_account_list.go index a481789e85..83774a5a7b 100644 --- a/intersight_gosdk/model_niatelemetry_nexus_cloud_account_list.go +++ b/intersight_gosdk/model_niatelemetry_nexus_cloud_account_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nexus_cloud_account_relationship.go b/intersight_gosdk/model_niatelemetry_nexus_cloud_account_relationship.go index a9c3f290d6..3adad6b428 100644 --- a/intersight_gosdk/model_niatelemetry_nexus_cloud_account_relationship.go +++ b/intersight_gosdk/model_niatelemetry_nexus_cloud_account_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nexus_cloud_account_response.go b/intersight_gosdk/model_niatelemetry_nexus_cloud_account_response.go index 7d25dd1e74..afdbca2556 100644 --- a/intersight_gosdk/model_niatelemetry_nexus_cloud_account_response.go +++ b/intersight_gosdk/model_niatelemetry_nexus_cloud_account_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nexus_cloud_site.go b/intersight_gosdk/model_niatelemetry_nexus_cloud_site.go index b160c92fd0..d01dacab6d 100644 --- a/intersight_gosdk/model_niatelemetry_nexus_cloud_site.go +++ b/intersight_gosdk/model_niatelemetry_nexus_cloud_site.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nexus_cloud_site_list.go b/intersight_gosdk/model_niatelemetry_nexus_cloud_site_list.go index 808f9e6267..e9ae3065df 100644 --- a/intersight_gosdk/model_niatelemetry_nexus_cloud_site_list.go +++ b/intersight_gosdk/model_niatelemetry_nexus_cloud_site_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nexus_cloud_site_response.go b/intersight_gosdk/model_niatelemetry_nexus_cloud_site_response.go index d65d5de8f1..8e9369b6ce 100644 --- a/intersight_gosdk/model_niatelemetry_nexus_cloud_site_response.go +++ b/intersight_gosdk/model_niatelemetry_nexus_cloud_site_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nexus_dashboard_controller_details.go b/intersight_gosdk/model_niatelemetry_nexus_dashboard_controller_details.go index 9a8000ae4d..4e330a8b0e 100644 --- a/intersight_gosdk/model_niatelemetry_nexus_dashboard_controller_details.go +++ b/intersight_gosdk/model_niatelemetry_nexus_dashboard_controller_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nexus_dashboard_controller_details_list.go b/intersight_gosdk/model_niatelemetry_nexus_dashboard_controller_details_list.go index 70c5124acb..074a9f55d4 100644 --- a/intersight_gosdk/model_niatelemetry_nexus_dashboard_controller_details_list.go +++ b/intersight_gosdk/model_niatelemetry_nexus_dashboard_controller_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nexus_dashboard_controller_details_response.go b/intersight_gosdk/model_niatelemetry_nexus_dashboard_controller_details_response.go index 5e2952e80a..dbe50112a8 100644 --- a/intersight_gosdk/model_niatelemetry_nexus_dashboard_controller_details_response.go +++ b/intersight_gosdk/model_niatelemetry_nexus_dashboard_controller_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nexus_dashboard_details.go b/intersight_gosdk/model_niatelemetry_nexus_dashboard_details.go index c4151d44c1..017063ae2f 100644 --- a/intersight_gosdk/model_niatelemetry_nexus_dashboard_details.go +++ b/intersight_gosdk/model_niatelemetry_nexus_dashboard_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nexus_dashboard_details_list.go b/intersight_gosdk/model_niatelemetry_nexus_dashboard_details_list.go index 833e49a182..0ea2f6f223 100644 --- a/intersight_gosdk/model_niatelemetry_nexus_dashboard_details_list.go +++ b/intersight_gosdk/model_niatelemetry_nexus_dashboard_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nexus_dashboard_details_response.go b/intersight_gosdk/model_niatelemetry_nexus_dashboard_details_response.go index 4b69ef2239..d5abb39288 100644 --- a/intersight_gosdk/model_niatelemetry_nexus_dashboard_details_response.go +++ b/intersight_gosdk/model_niatelemetry_nexus_dashboard_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nexus_dashboard_memory_details.go b/intersight_gosdk/model_niatelemetry_nexus_dashboard_memory_details.go index 724526d8f7..33e805e9c8 100644 --- a/intersight_gosdk/model_niatelemetry_nexus_dashboard_memory_details.go +++ b/intersight_gosdk/model_niatelemetry_nexus_dashboard_memory_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nexus_dashboard_memory_details_list.go b/intersight_gosdk/model_niatelemetry_nexus_dashboard_memory_details_list.go index 48428e1fb4..ccc95755cb 100644 --- a/intersight_gosdk/model_niatelemetry_nexus_dashboard_memory_details_list.go +++ b/intersight_gosdk/model_niatelemetry_nexus_dashboard_memory_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nexus_dashboard_memory_details_response.go b/intersight_gosdk/model_niatelemetry_nexus_dashboard_memory_details_response.go index baf9d21c26..23e93856b8 100644 --- a/intersight_gosdk/model_niatelemetry_nexus_dashboard_memory_details_response.go +++ b/intersight_gosdk/model_niatelemetry_nexus_dashboard_memory_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nexus_dashboards.go b/intersight_gosdk/model_niatelemetry_nexus_dashboards.go index 3a5b1e76af..ea83b81fc6 100644 --- a/intersight_gosdk/model_niatelemetry_nexus_dashboards.go +++ b/intersight_gosdk/model_niatelemetry_nexus_dashboards.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nexus_dashboards_list.go b/intersight_gosdk/model_niatelemetry_nexus_dashboards_list.go index 0113ecda3c..00a4068222 100644 --- a/intersight_gosdk/model_niatelemetry_nexus_dashboards_list.go +++ b/intersight_gosdk/model_niatelemetry_nexus_dashboards_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nexus_dashboards_relationship.go b/intersight_gosdk/model_niatelemetry_nexus_dashboards_relationship.go index 9323de173d..fc5662008c 100644 --- a/intersight_gosdk/model_niatelemetry_nexus_dashboards_relationship.go +++ b/intersight_gosdk/model_niatelemetry_nexus_dashboards_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nexus_dashboards_response.go b/intersight_gosdk/model_niatelemetry_nexus_dashboards_response.go index 6152c5f18d..2003e4a616 100644 --- a/intersight_gosdk/model_niatelemetry_nexus_dashboards_response.go +++ b/intersight_gosdk/model_niatelemetry_nexus_dashboards_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nia_feature_usage.go b/intersight_gosdk/model_niatelemetry_nia_feature_usage.go index 7afcc14734..6f98122d08 100644 --- a/intersight_gosdk/model_niatelemetry_nia_feature_usage.go +++ b/intersight_gosdk/model_niatelemetry_nia_feature_usage.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nia_feature_usage_list.go b/intersight_gosdk/model_niatelemetry_nia_feature_usage_list.go index 1074a77a07..a9052a38a6 100644 --- a/intersight_gosdk/model_niatelemetry_nia_feature_usage_list.go +++ b/intersight_gosdk/model_niatelemetry_nia_feature_usage_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nia_feature_usage_response.go b/intersight_gosdk/model_niatelemetry_nia_feature_usage_response.go index 27531a626f..73bd678ccb 100644 --- a/intersight_gosdk/model_niatelemetry_nia_feature_usage_response.go +++ b/intersight_gosdk/model_niatelemetry_nia_feature_usage_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nia_inventory.go b/intersight_gosdk/model_niatelemetry_nia_inventory.go index 1a282df22c..f638c512ef 100644 --- a/intersight_gosdk/model_niatelemetry_nia_inventory.go +++ b/intersight_gosdk/model_niatelemetry_nia_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nia_inventory_dcnm.go b/intersight_gosdk/model_niatelemetry_nia_inventory_dcnm.go index 64df8e3208..0ffe50eb51 100644 --- a/intersight_gosdk/model_niatelemetry_nia_inventory_dcnm.go +++ b/intersight_gosdk/model_niatelemetry_nia_inventory_dcnm.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nia_inventory_dcnm_list.go b/intersight_gosdk/model_niatelemetry_nia_inventory_dcnm_list.go index cbe1a56d7b..becb83b625 100644 --- a/intersight_gosdk/model_niatelemetry_nia_inventory_dcnm_list.go +++ b/intersight_gosdk/model_niatelemetry_nia_inventory_dcnm_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nia_inventory_dcnm_response.go b/intersight_gosdk/model_niatelemetry_nia_inventory_dcnm_response.go index 71cf200ab7..d24f9a4988 100644 --- a/intersight_gosdk/model_niatelemetry_nia_inventory_dcnm_response.go +++ b/intersight_gosdk/model_niatelemetry_nia_inventory_dcnm_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nia_inventory_fabric.go b/intersight_gosdk/model_niatelemetry_nia_inventory_fabric.go index dad6daf159..131be73a1b 100644 --- a/intersight_gosdk/model_niatelemetry_nia_inventory_fabric.go +++ b/intersight_gosdk/model_niatelemetry_nia_inventory_fabric.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nia_inventory_fabric_list.go b/intersight_gosdk/model_niatelemetry_nia_inventory_fabric_list.go index 1d9f514777..3a4a32c842 100644 --- a/intersight_gosdk/model_niatelemetry_nia_inventory_fabric_list.go +++ b/intersight_gosdk/model_niatelemetry_nia_inventory_fabric_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nia_inventory_fabric_response.go b/intersight_gosdk/model_niatelemetry_nia_inventory_fabric_response.go index 6d721819ae..d11e39eac1 100644 --- a/intersight_gosdk/model_niatelemetry_nia_inventory_fabric_response.go +++ b/intersight_gosdk/model_niatelemetry_nia_inventory_fabric_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nia_inventory_list.go b/intersight_gosdk/model_niatelemetry_nia_inventory_list.go index fc61f8f037..0bba7ce9f3 100644 --- a/intersight_gosdk/model_niatelemetry_nia_inventory_list.go +++ b/intersight_gosdk/model_niatelemetry_nia_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nia_inventory_relationship.go b/intersight_gosdk/model_niatelemetry_nia_inventory_relationship.go index 560234496b..9ca451ae7e 100644 --- a/intersight_gosdk/model_niatelemetry_nia_inventory_relationship.go +++ b/intersight_gosdk/model_niatelemetry_nia_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nia_inventory_response.go b/intersight_gosdk/model_niatelemetry_nia_inventory_response.go index 193fb72982..8e1eada197 100644 --- a/intersight_gosdk/model_niatelemetry_nia_inventory_response.go +++ b/intersight_gosdk/model_niatelemetry_nia_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nia_license_state.go b/intersight_gosdk/model_niatelemetry_nia_license_state.go index 5329e9135d..24c99f1141 100644 --- a/intersight_gosdk/model_niatelemetry_nia_license_state.go +++ b/intersight_gosdk/model_niatelemetry_nia_license_state.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nia_license_state_list.go b/intersight_gosdk/model_niatelemetry_nia_license_state_list.go index 511f3591bc..7b7492408a 100644 --- a/intersight_gosdk/model_niatelemetry_nia_license_state_list.go +++ b/intersight_gosdk/model_niatelemetry_nia_license_state_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nia_license_state_relationship.go b/intersight_gosdk/model_niatelemetry_nia_license_state_relationship.go index 56580e9084..0895238be6 100644 --- a/intersight_gosdk/model_niatelemetry_nia_license_state_relationship.go +++ b/intersight_gosdk/model_niatelemetry_nia_license_state_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nia_license_state_response.go b/intersight_gosdk/model_niatelemetry_nia_license_state_response.go index 4e2ceb6f62..b10c1fd909 100644 --- a/intersight_gosdk/model_niatelemetry_nia_license_state_response.go +++ b/intersight_gosdk/model_niatelemetry_nia_license_state_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nicc.go b/intersight_gosdk/model_niatelemetry_nicc.go index b3bc5e8391..532c3bca7b 100644 --- a/intersight_gosdk/model_niatelemetry_nicc.go +++ b/intersight_gosdk/model_niatelemetry_nicc.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nicc_list.go b/intersight_gosdk/model_niatelemetry_nicc_list.go index 986952bda7..87a6188d8e 100644 --- a/intersight_gosdk/model_niatelemetry_nicc_list.go +++ b/intersight_gosdk/model_niatelemetry_nicc_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nicc_response.go b/intersight_gosdk/model_niatelemetry_nicc_response.go index 9f42527d46..bbf97a2132 100644 --- a/intersight_gosdk/model_niatelemetry_nicc_response.go +++ b/intersight_gosdk/model_niatelemetry_nicc_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_node.go b/intersight_gosdk/model_niatelemetry_node.go index a9ba9d235d..d25ed19844 100644 --- a/intersight_gosdk/model_niatelemetry_node.go +++ b/intersight_gosdk/model_niatelemetry_node.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nve_packet_counters.go b/intersight_gosdk/model_niatelemetry_nve_packet_counters.go index 6bc80efe4b..4970929457 100644 --- a/intersight_gosdk/model_niatelemetry_nve_packet_counters.go +++ b/intersight_gosdk/model_niatelemetry_nve_packet_counters.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nve_vni.go b/intersight_gosdk/model_niatelemetry_nve_vni.go index 10e0c34033..d055c97bec 100644 --- a/intersight_gosdk/model_niatelemetry_nve_vni.go +++ b/intersight_gosdk/model_niatelemetry_nve_vni.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nxos_bgp_evpn.go b/intersight_gosdk/model_niatelemetry_nxos_bgp_evpn.go index a4068a5e64..f749d245ae 100644 --- a/intersight_gosdk/model_niatelemetry_nxos_bgp_evpn.go +++ b/intersight_gosdk/model_niatelemetry_nxos_bgp_evpn.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nxos_bgp_mvpn.go b/intersight_gosdk/model_niatelemetry_nxos_bgp_mvpn.go index 5c4ebccf5f..ef93deca56 100644 --- a/intersight_gosdk/model_niatelemetry_nxos_bgp_mvpn.go +++ b/intersight_gosdk/model_niatelemetry_nxos_bgp_mvpn.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nxos_vtp.go b/intersight_gosdk/model_niatelemetry_nxos_vtp.go index 69273585ed..dba1913654 100644 --- a/intersight_gosdk/model_niatelemetry_nxos_vtp.go +++ b/intersight_gosdk/model_niatelemetry_nxos_vtp.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_password_strength_check.go b/intersight_gosdk/model_niatelemetry_password_strength_check.go index b9d97687d7..ca242eef5c 100644 --- a/intersight_gosdk/model_niatelemetry_password_strength_check.go +++ b/intersight_gosdk/model_niatelemetry_password_strength_check.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_password_strength_check_list.go b/intersight_gosdk/model_niatelemetry_password_strength_check_list.go index dbe3bdae5b..c6542aa64e 100644 --- a/intersight_gosdk/model_niatelemetry_password_strength_check_list.go +++ b/intersight_gosdk/model_niatelemetry_password_strength_check_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_password_strength_check_response.go b/intersight_gosdk/model_niatelemetry_password_strength_check_response.go index b5ac3b1036..361fd23a67 100644 --- a/intersight_gosdk/model_niatelemetry_password_strength_check_response.go +++ b/intersight_gosdk/model_niatelemetry_password_strength_check_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_pod_comm_policies.go b/intersight_gosdk/model_niatelemetry_pod_comm_policies.go index 5b42b36909..bdb62461fb 100644 --- a/intersight_gosdk/model_niatelemetry_pod_comm_policies.go +++ b/intersight_gosdk/model_niatelemetry_pod_comm_policies.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_pod_comm_policies_list.go b/intersight_gosdk/model_niatelemetry_pod_comm_policies_list.go index 3c455fe30f..68911cc7df 100644 --- a/intersight_gosdk/model_niatelemetry_pod_comm_policies_list.go +++ b/intersight_gosdk/model_niatelemetry_pod_comm_policies_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_pod_comm_policies_response.go b/intersight_gosdk/model_niatelemetry_pod_comm_policies_response.go index 1fc8f7ed03..8577bfdcad 100644 --- a/intersight_gosdk/model_niatelemetry_pod_comm_policies_response.go +++ b/intersight_gosdk/model_niatelemetry_pod_comm_policies_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_pod_snmp_policies.go b/intersight_gosdk/model_niatelemetry_pod_snmp_policies.go index d4b9481d6e..be8d536299 100644 --- a/intersight_gosdk/model_niatelemetry_pod_snmp_policies.go +++ b/intersight_gosdk/model_niatelemetry_pod_snmp_policies.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_pod_snmp_policies_list.go b/intersight_gosdk/model_niatelemetry_pod_snmp_policies_list.go index fa9a193f10..35a89a0c7c 100644 --- a/intersight_gosdk/model_niatelemetry_pod_snmp_policies_list.go +++ b/intersight_gosdk/model_niatelemetry_pod_snmp_policies_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_pod_snmp_policies_response.go b/intersight_gosdk/model_niatelemetry_pod_snmp_policies_response.go index 675c3cd0e7..f825059b8b 100644 --- a/intersight_gosdk/model_niatelemetry_pod_snmp_policies_response.go +++ b/intersight_gosdk/model_niatelemetry_pod_snmp_policies_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_pod_time_server_policies.go b/intersight_gosdk/model_niatelemetry_pod_time_server_policies.go index 02a7ff557b..fefeb08ec4 100644 --- a/intersight_gosdk/model_niatelemetry_pod_time_server_policies.go +++ b/intersight_gosdk/model_niatelemetry_pod_time_server_policies.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_pod_time_server_policies_list.go b/intersight_gosdk/model_niatelemetry_pod_time_server_policies_list.go index 798fa4604c..ef613a47d6 100644 --- a/intersight_gosdk/model_niatelemetry_pod_time_server_policies_list.go +++ b/intersight_gosdk/model_niatelemetry_pod_time_server_policies_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_pod_time_server_policies_response.go b/intersight_gosdk/model_niatelemetry_pod_time_server_policies_response.go index b1236dae01..dec4149390 100644 --- a/intersight_gosdk/model_niatelemetry_pod_time_server_policies_response.go +++ b/intersight_gosdk/model_niatelemetry_pod_time_server_policies_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_proc_sys_cpu15min.go b/intersight_gosdk/model_niatelemetry_proc_sys_cpu15min.go index 4fbe7f0a75..2b301969fb 100644 --- a/intersight_gosdk/model_niatelemetry_proc_sys_cpu15min.go +++ b/intersight_gosdk/model_niatelemetry_proc_sys_cpu15min.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_proc_sys_cpu5min.go b/intersight_gosdk/model_niatelemetry_proc_sys_cpu5min.go index 5d8453ddfd..9807b0fb97 100644 --- a/intersight_gosdk/model_niatelemetry_proc_sys_cpu5min.go +++ b/intersight_gosdk/model_niatelemetry_proc_sys_cpu5min.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_proc_sys_mem15min.go b/intersight_gosdk/model_niatelemetry_proc_sys_mem15min.go index 5f92587cdb..1441f0c8b3 100644 --- a/intersight_gosdk/model_niatelemetry_proc_sys_mem15min.go +++ b/intersight_gosdk/model_niatelemetry_proc_sys_mem15min.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_proc_sys_mem5min.go b/intersight_gosdk/model_niatelemetry_proc_sys_mem5min.go index 6a6a1597b4..5ee6cf55e2 100644 --- a/intersight_gosdk/model_niatelemetry_proc_sys_mem5min.go +++ b/intersight_gosdk/model_niatelemetry_proc_sys_mem5min.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_site_inventory.go b/intersight_gosdk/model_niatelemetry_site_inventory.go index 4e1bf1d243..e761080e2c 100644 --- a/intersight_gosdk/model_niatelemetry_site_inventory.go +++ b/intersight_gosdk/model_niatelemetry_site_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_site_inventory_list.go b/intersight_gosdk/model_niatelemetry_site_inventory_list.go index f33e9a2782..8a4ad6561c 100644 --- a/intersight_gosdk/model_niatelemetry_site_inventory_list.go +++ b/intersight_gosdk/model_niatelemetry_site_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_site_inventory_response.go b/intersight_gosdk/model_niatelemetry_site_inventory_response.go index e2c1862999..aed9c083d5 100644 --- a/intersight_gosdk/model_niatelemetry_site_inventory_response.go +++ b/intersight_gosdk/model_niatelemetry_site_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_sites.go b/intersight_gosdk/model_niatelemetry_sites.go index b3e205d2cf..7592708e82 100644 --- a/intersight_gosdk/model_niatelemetry_sites.go +++ b/intersight_gosdk/model_niatelemetry_sites.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_smart_license.go b/intersight_gosdk/model_niatelemetry_smart_license.go index 63886b6aa9..4a15af829e 100644 --- a/intersight_gosdk/model_niatelemetry_smart_license.go +++ b/intersight_gosdk/model_niatelemetry_smart_license.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_snmp_src.go b/intersight_gosdk/model_niatelemetry_snmp_src.go index da88d9b4bc..f818e7f850 100644 --- a/intersight_gosdk/model_niatelemetry_snmp_src.go +++ b/intersight_gosdk/model_niatelemetry_snmp_src.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_snmp_src_list.go b/intersight_gosdk/model_niatelemetry_snmp_src_list.go index aef7704a4c..364185a8ed 100644 --- a/intersight_gosdk/model_niatelemetry_snmp_src_list.go +++ b/intersight_gosdk/model_niatelemetry_snmp_src_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_snmp_src_response.go b/intersight_gosdk/model_niatelemetry_snmp_src_response.go index bcad9fbe6a..3ba183a43c 100644 --- a/intersight_gosdk/model_niatelemetry_snmp_src_response.go +++ b/intersight_gosdk/model_niatelemetry_snmp_src_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_spine_pol_grp_details.go b/intersight_gosdk/model_niatelemetry_spine_pol_grp_details.go index fa5c1dc37f..8a51f80d1f 100644 --- a/intersight_gosdk/model_niatelemetry_spine_pol_grp_details.go +++ b/intersight_gosdk/model_niatelemetry_spine_pol_grp_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_spine_pol_grp_details_list.go b/intersight_gosdk/model_niatelemetry_spine_pol_grp_details_list.go index 9ed6ee75e5..5aebdfffad 100644 --- a/intersight_gosdk/model_niatelemetry_spine_pol_grp_details_list.go +++ b/intersight_gosdk/model_niatelemetry_spine_pol_grp_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_spine_pol_grp_details_response.go b/intersight_gosdk/model_niatelemetry_spine_pol_grp_details_response.go index f1228bb79f..9a83788291 100644 --- a/intersight_gosdk/model_niatelemetry_spine_pol_grp_details_response.go +++ b/intersight_gosdk/model_niatelemetry_spine_pol_grp_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_ssh_version_two.go b/intersight_gosdk/model_niatelemetry_ssh_version_two.go index cedb24e95c..2b381af2dc 100644 --- a/intersight_gosdk/model_niatelemetry_ssh_version_two.go +++ b/intersight_gosdk/model_niatelemetry_ssh_version_two.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_ssh_version_two_list.go b/intersight_gosdk/model_niatelemetry_ssh_version_two_list.go index 4c45c2b456..daceffab00 100644 --- a/intersight_gosdk/model_niatelemetry_ssh_version_two_list.go +++ b/intersight_gosdk/model_niatelemetry_ssh_version_two_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_ssh_version_two_response.go b/intersight_gosdk/model_niatelemetry_ssh_version_two_response.go index ff1bb59b86..c4f6c5e7d4 100644 --- a/intersight_gosdk/model_niatelemetry_ssh_version_two_response.go +++ b/intersight_gosdk/model_niatelemetry_ssh_version_two_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_supervisor_module_details.go b/intersight_gosdk/model_niatelemetry_supervisor_module_details.go index e95537c7d3..0bfe90c601 100644 --- a/intersight_gosdk/model_niatelemetry_supervisor_module_details.go +++ b/intersight_gosdk/model_niatelemetry_supervisor_module_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_supervisor_module_details_list.go b/intersight_gosdk/model_niatelemetry_supervisor_module_details_list.go index 3038d7dd76..0d6fde69d8 100644 --- a/intersight_gosdk/model_niatelemetry_supervisor_module_details_list.go +++ b/intersight_gosdk/model_niatelemetry_supervisor_module_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_supervisor_module_details_response.go b/intersight_gosdk/model_niatelemetry_supervisor_module_details_response.go index 04c16632bc..8df1f90318 100644 --- a/intersight_gosdk/model_niatelemetry_supervisor_module_details_response.go +++ b/intersight_gosdk/model_niatelemetry_supervisor_module_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_switch_disk_utilization.go b/intersight_gosdk/model_niatelemetry_switch_disk_utilization.go index 3b36311f58..2970e5a04c 100644 --- a/intersight_gosdk/model_niatelemetry_switch_disk_utilization.go +++ b/intersight_gosdk/model_niatelemetry_switch_disk_utilization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_syslog_remote_dest.go b/intersight_gosdk/model_niatelemetry_syslog_remote_dest.go index 1eda884f8d..6a82007e3f 100644 --- a/intersight_gosdk/model_niatelemetry_syslog_remote_dest.go +++ b/intersight_gosdk/model_niatelemetry_syslog_remote_dest.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_syslog_remote_dest_list.go b/intersight_gosdk/model_niatelemetry_syslog_remote_dest_list.go index e179c9dc19..8214488ede 100644 --- a/intersight_gosdk/model_niatelemetry_syslog_remote_dest_list.go +++ b/intersight_gosdk/model_niatelemetry_syslog_remote_dest_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_syslog_remote_dest_response.go b/intersight_gosdk/model_niatelemetry_syslog_remote_dest_response.go index e5049bd930..f1a541f5f4 100644 --- a/intersight_gosdk/model_niatelemetry_syslog_remote_dest_response.go +++ b/intersight_gosdk/model_niatelemetry_syslog_remote_dest_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_syslog_sys_msg.go b/intersight_gosdk/model_niatelemetry_syslog_sys_msg.go index 4749b08a44..450cd0f579 100644 --- a/intersight_gosdk/model_niatelemetry_syslog_sys_msg.go +++ b/intersight_gosdk/model_niatelemetry_syslog_sys_msg.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_syslog_sys_msg_fac_filter.go b/intersight_gosdk/model_niatelemetry_syslog_sys_msg_fac_filter.go index ace481eab4..c8a155df19 100644 --- a/intersight_gosdk/model_niatelemetry_syslog_sys_msg_fac_filter.go +++ b/intersight_gosdk/model_niatelemetry_syslog_sys_msg_fac_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_syslog_sys_msg_fac_filter_list.go b/intersight_gosdk/model_niatelemetry_syslog_sys_msg_fac_filter_list.go index 9e6de216bf..54df689c8c 100644 --- a/intersight_gosdk/model_niatelemetry_syslog_sys_msg_fac_filter_list.go +++ b/intersight_gosdk/model_niatelemetry_syslog_sys_msg_fac_filter_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_syslog_sys_msg_fac_filter_response.go b/intersight_gosdk/model_niatelemetry_syslog_sys_msg_fac_filter_response.go index aa85608410..804cd71dc1 100644 --- a/intersight_gosdk/model_niatelemetry_syslog_sys_msg_fac_filter_response.go +++ b/intersight_gosdk/model_niatelemetry_syslog_sys_msg_fac_filter_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_syslog_sys_msg_list.go b/intersight_gosdk/model_niatelemetry_syslog_sys_msg_list.go index 80dd1a215f..6ccd97c773 100644 --- a/intersight_gosdk/model_niatelemetry_syslog_sys_msg_list.go +++ b/intersight_gosdk/model_niatelemetry_syslog_sys_msg_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_syslog_sys_msg_response.go b/intersight_gosdk/model_niatelemetry_syslog_sys_msg_response.go index 3f6b119fdf..878c646812 100644 --- a/intersight_gosdk/model_niatelemetry_syslog_sys_msg_response.go +++ b/intersight_gosdk/model_niatelemetry_syslog_sys_msg_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_system_controller_details.go b/intersight_gosdk/model_niatelemetry_system_controller_details.go index a6d7463e3b..41a9f5e999 100644 --- a/intersight_gosdk/model_niatelemetry_system_controller_details.go +++ b/intersight_gosdk/model_niatelemetry_system_controller_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_system_controller_details_list.go b/intersight_gosdk/model_niatelemetry_system_controller_details_list.go index a9d9f7c605..071ab289da 100644 --- a/intersight_gosdk/model_niatelemetry_system_controller_details_list.go +++ b/intersight_gosdk/model_niatelemetry_system_controller_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_system_controller_details_response.go b/intersight_gosdk/model_niatelemetry_system_controller_details_response.go index bd506eaca3..6d9a814822 100644 --- a/intersight_gosdk/model_niatelemetry_system_controller_details_response.go +++ b/intersight_gosdk/model_niatelemetry_system_controller_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_tenant.go b/intersight_gosdk/model_niatelemetry_tenant.go index 2ab8d48a82..c1246dd6ec 100644 --- a/intersight_gosdk/model_niatelemetry_tenant.go +++ b/intersight_gosdk/model_niatelemetry_tenant.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_tenant_list.go b/intersight_gosdk/model_niatelemetry_tenant_list.go index 526e510234..91139653b5 100644 --- a/intersight_gosdk/model_niatelemetry_tenant_list.go +++ b/intersight_gosdk/model_niatelemetry_tenant_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_tenant_response.go b/intersight_gosdk/model_niatelemetry_tenant_response.go index 561e50b738..3501e0aa64 100644 --- a/intersight_gosdk/model_niatelemetry_tenant_response.go +++ b/intersight_gosdk/model_niatelemetry_tenant_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_vni_status.go b/intersight_gosdk/model_niatelemetry_vni_status.go index ac1a09ef05..44d9833aca 100644 --- a/intersight_gosdk/model_niatelemetry_vni_status.go +++ b/intersight_gosdk/model_niatelemetry_vni_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_vpc_details.go b/intersight_gosdk/model_niatelemetry_vpc_details.go index 33afe9450a..01643a3683 100644 --- a/intersight_gosdk/model_niatelemetry_vpc_details.go +++ b/intersight_gosdk/model_niatelemetry_vpc_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_notification_abstract_condition.go b/intersight_gosdk/model_notification_abstract_condition.go index 9cc65addd7..55039a3a09 100644 --- a/intersight_gosdk/model_notification_abstract_condition.go +++ b/intersight_gosdk/model_notification_abstract_condition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_notification_abstract_mo_condition.go b/intersight_gosdk/model_notification_abstract_mo_condition.go index 4dacbe2caa..d3720255e4 100644 --- a/intersight_gosdk/model_notification_abstract_mo_condition.go +++ b/intersight_gosdk/model_notification_abstract_mo_condition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_notification_account_subscription.go b/intersight_gosdk/model_notification_account_subscription.go index 43f1cf39aa..2956b5e5e2 100644 --- a/intersight_gosdk/model_notification_account_subscription.go +++ b/intersight_gosdk/model_notification_account_subscription.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type NotificationAccountSubscription struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The name of the subscription. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` // The chosen subscription type imposes it is own validation rules. When 'email' type is chosen, actions array can contain only one entry and it is entry should be of can be only notification.SendEmail; conditions can contain only notification.AlarmMoCondition and condition types should be unique. When the 'webhook' type is chosen, the actions array can contain only one entry and it is entry should be of can be only notification.TriggerWebhook; conditions can contain up to a limited amount of entries and all of them should be of type notification.MoCondition. * `email` - Email type requires usage of notification.SendEmail complex types for actionsand notification.AlarmMoCondition complex types for conditions. * `webhook` - Webhook type requires usage of notification.TriggerWebhook complex types for actionsand notification.MoCondition complex types for conditions. Type *string `json:"Type,omitempty"` // Used to verify the actions of the Subscription MO. For a 'webhook' type Ping event is sent to verify that the webhook server is accessible. For an 'email' type there will be a verification email sent. * `none` - No actions will be verified. Default value. * `all` - All actions will be re-verified. The previous state of the verification will be preserved. @@ -362,7 +362,7 @@ func (o *NotificationAccountSubscription) UnmarshalJSON(data []byte) (err error) // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The name of the subscription. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` // The chosen subscription type imposes it is own validation rules. When 'email' type is chosen, actions array can contain only one entry and it is entry should be of can be only notification.SendEmail; conditions can contain only notification.AlarmMoCondition and condition types should be unique. When the 'webhook' type is chosen, the actions array can contain only one entry and it is entry should be of can be only notification.TriggerWebhook; conditions can contain up to a limited amount of entries and all of them should be of type notification.MoCondition. * `email` - Email type requires usage of notification.SendEmail complex types for actionsand notification.AlarmMoCondition complex types for conditions. * `webhook` - Webhook type requires usage of notification.TriggerWebhook complex types for actionsand notification.MoCondition complex types for conditions. Type *string `json:"Type,omitempty"` // Used to verify the actions of the Subscription MO. For a 'webhook' type Ping event is sent to verify that the webhook server is accessible. For an 'email' type there will be a verification email sent. * `none` - No actions will be verified. Default value. * `all` - All actions will be re-verified. The previous state of the verification will be preserved. diff --git a/intersight_gosdk/model_notification_account_subscription_list.go b/intersight_gosdk/model_notification_account_subscription_list.go index b864da718d..56fe1bd990 100644 --- a/intersight_gosdk/model_notification_account_subscription_list.go +++ b/intersight_gosdk/model_notification_account_subscription_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_notification_account_subscription_response.go b/intersight_gosdk/model_notification_account_subscription_response.go index db51114b87..5b860405b8 100644 --- a/intersight_gosdk/model_notification_account_subscription_response.go +++ b/intersight_gosdk/model_notification_account_subscription_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_notification_action.go b/intersight_gosdk/model_notification_action.go index 9195b18740..af56c9350d 100644 --- a/intersight_gosdk/model_notification_action.go +++ b/intersight_gosdk/model_notification_action.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_notification_aggregation_settings.go b/intersight_gosdk/model_notification_aggregation_settings.go index 2087d5f9ac..f20fe82bfb 100644 --- a/intersight_gosdk/model_notification_aggregation_settings.go +++ b/intersight_gosdk/model_notification_aggregation_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_notification_alarm_mo_condition.go b/intersight_gosdk/model_notification_alarm_mo_condition.go index 52a5ac3d64..92a65540a2 100644 --- a/intersight_gosdk/model_notification_alarm_mo_condition.go +++ b/intersight_gosdk/model_notification_alarm_mo_condition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_notification_distributable_mo_condition.go b/intersight_gosdk/model_notification_distributable_mo_condition.go index 380c73391b..6c040d1679 100644 --- a/intersight_gosdk/model_notification_distributable_mo_condition.go +++ b/intersight_gosdk/model_notification_distributable_mo_condition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_notification_mo_condition.go b/intersight_gosdk/model_notification_mo_condition.go index 6a92a2a45f..36ed7a788b 100644 --- a/intersight_gosdk/model_notification_mo_condition.go +++ b/intersight_gosdk/model_notification_mo_condition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_notification_send_email.go b/intersight_gosdk/model_notification_send_email.go index 11bd4047c9..85e7ee0f62 100644 --- a/intersight_gosdk/model_notification_send_email.go +++ b/intersight_gosdk/model_notification_send_email.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_notification_software_release_meta_mo_condition.go b/intersight_gosdk/model_notification_software_release_meta_mo_condition.go index 3c24adae88..814735a767 100644 --- a/intersight_gosdk/model_notification_software_release_meta_mo_condition.go +++ b/intersight_gosdk/model_notification_software_release_meta_mo_condition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_notification_subscription.go b/intersight_gosdk/model_notification_subscription.go index ea9fb00931..51c8b5cc1b 100644 --- a/intersight_gosdk/model_notification_subscription.go +++ b/intersight_gosdk/model_notification_subscription.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_notification_trigger_webhook.go b/intersight_gosdk/model_notification_trigger_webhook.go index 94afe62998..21c2fbd43e 100644 --- a/intersight_gosdk/model_notification_trigger_webhook.go +++ b/intersight_gosdk/model_notification_trigger_webhook.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -42,7 +42,7 @@ type NotificationTriggerWebhook struct { // State of the action shows whether this action passes the verification or not. If this property holds 'Inactive' value, this action will not be executed. To verify action again, use the Verify property from the MO. * `Inactive` - Inactive state means action didn't pass the verification and it won't be executed. * `Active` - Active state means that action successfully passed the verification and it is ready to be performed. State *string `json:"State,omitempty"` // Payload URL of the recipient app, which is intended to serve the events that happens in Intersight. - Url *string `json:"Url,omitempty"` + Url *string `json:"Url,omitempty" validate:"regexp=^https:\\/\\/[\\\\w.-]+(?:\\\\.[\\\\w\\\\.-]+)+[\\\\w\\\\-\\\\._~:\\/?#[\\\\]@!\\\\$&'\\\\(\\\\)\\\\*\\\\+,;=.]+$"` AdditionalProperties map[string]interface{} } @@ -468,7 +468,7 @@ func (o *NotificationTriggerWebhook) UnmarshalJSON(data []byte) (err error) { // State of the action shows whether this action passes the verification or not. If this property holds 'Inactive' value, this action will not be executed. To verify action again, use the Verify property from the MO. * `Inactive` - Inactive state means action didn't pass the verification and it won't be executed. * `Active` - Active state means that action successfully passed the verification and it is ready to be performed. State *string `json:"State,omitempty"` // Payload URL of the recipient app, which is intended to serve the events that happens in Intersight. - Url *string `json:"Url,omitempty"` + Url *string `json:"Url,omitempty" validate:"regexp=^https:\\/\\/[\\\\w.-]+(?:\\\\.[\\\\w\\\\.-]+)+[\\\\w\\\\-\\\\._~:\\/?#[\\\\]@!\\\\$&'\\\\(\\\\)\\\\*\\\\+,;=.]+$"` } varNotificationTriggerWebhookWithoutEmbeddedStruct := NotificationTriggerWebhookWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_ntp_auth_ntp_server.go b/intersight_gosdk/model_ntp_auth_ntp_server.go index 7d0fc10118..1cb0e65c10 100644 --- a/intersight_gosdk/model_ntp_auth_ntp_server.go +++ b/intersight_gosdk/model_ntp_auth_ntp_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ntp_ntp_server.go b/intersight_gosdk/model_ntp_ntp_server.go index c6468f34a9..c3e9f7c2d0 100644 --- a/intersight_gosdk/model_ntp_ntp_server.go +++ b/intersight_gosdk/model_ntp_ntp_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ntp_ntp_server_list.go b/intersight_gosdk/model_ntp_ntp_server_list.go index 261381968f..f8c3070615 100644 --- a/intersight_gosdk/model_ntp_ntp_server_list.go +++ b/intersight_gosdk/model_ntp_ntp_server_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ntp_ntp_server_relationship.go b/intersight_gosdk/model_ntp_ntp_server_relationship.go index 177b5a7f32..5f4739f5b8 100644 --- a/intersight_gosdk/model_ntp_ntp_server_relationship.go +++ b/intersight_gosdk/model_ntp_ntp_server_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ntp_ntp_server_response.go b/intersight_gosdk/model_ntp_ntp_server_response.go index 396db646d7..69a5576cc6 100644 --- a/intersight_gosdk/model_ntp_ntp_server_response.go +++ b/intersight_gosdk/model_ntp_ntp_server_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ntp_policy.go b/intersight_gosdk/model_ntp_policy.go index 640c746584..8f16dd99a0 100644 --- a/intersight_gosdk/model_ntp_policy.go +++ b/intersight_gosdk/model_ntp_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ntp_policy_list.go b/intersight_gosdk/model_ntp_policy_list.go index cfda606f15..e740088d9c 100644 --- a/intersight_gosdk/model_ntp_policy_list.go +++ b/intersight_gosdk/model_ntp_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ntp_policy_response.go b/intersight_gosdk/model_ntp_policy_response.go index 22136c2743..05da67180e 100644 --- a/intersight_gosdk/model_ntp_policy_response.go +++ b/intersight_gosdk/model_ntp_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_oauth_access_token.go b/intersight_gosdk/model_oauth_access_token.go index 000ddfa3df..0688b6a974 100644 --- a/intersight_gosdk/model_oauth_access_token.go +++ b/intersight_gosdk/model_oauth_access_token.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_oauth_access_token_list.go b/intersight_gosdk/model_oauth_access_token_list.go index ad6fd1953b..16b27a781c 100644 --- a/intersight_gosdk/model_oauth_access_token_list.go +++ b/intersight_gosdk/model_oauth_access_token_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_oauth_access_token_relationship.go b/intersight_gosdk/model_oauth_access_token_relationship.go index cdcbe2f50b..bae9331120 100644 --- a/intersight_gosdk/model_oauth_access_token_relationship.go +++ b/intersight_gosdk/model_oauth_access_token_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_oauth_access_token_response.go b/intersight_gosdk/model_oauth_access_token_response.go index b7345e9873..5463c88280 100644 --- a/intersight_gosdk/model_oauth_access_token_response.go +++ b/intersight_gosdk/model_oauth_access_token_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_oauth_authorization.go b/intersight_gosdk/model_oauth_authorization.go index 96f7a6ccb2..6425295be7 100644 --- a/intersight_gosdk/model_oauth_authorization.go +++ b/intersight_gosdk/model_oauth_authorization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_oauth_authorization_list.go b/intersight_gosdk/model_oauth_authorization_list.go index 63334edfab..f6c25bcc82 100644 --- a/intersight_gosdk/model_oauth_authorization_list.go +++ b/intersight_gosdk/model_oauth_authorization_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_oauth_authorization_response.go b/intersight_gosdk/model_oauth_authorization_response.go index 380f4744d3..2d9bd62ca1 100644 --- a/intersight_gosdk/model_oauth_authorization_response.go +++ b/intersight_gosdk/model_oauth_authorization_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_onprem_cluster_info.go b/intersight_gosdk/model_onprem_cluster_info.go index 7f8b40c041..b5ce88a204 100644 --- a/intersight_gosdk/model_onprem_cluster_info.go +++ b/intersight_gosdk/model_onprem_cluster_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_onprem_cluster_node.go b/intersight_gosdk/model_onprem_cluster_node.go index 3d563f04d8..17ed7857f2 100644 --- a/intersight_gosdk/model_onprem_cluster_node.go +++ b/intersight_gosdk/model_onprem_cluster_node.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_onprem_image_package.go b/intersight_gosdk/model_onprem_image_package.go index 0f32107461..df8161d6f9 100644 --- a/intersight_gosdk/model_onprem_image_package.go +++ b/intersight_gosdk/model_onprem_image_package.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_onprem_resource_info.go b/intersight_gosdk/model_onprem_resource_info.go index 5b8a84c028..cfaff8d0e0 100644 --- a/intersight_gosdk/model_onprem_resource_info.go +++ b/intersight_gosdk/model_onprem_resource_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_onprem_schedule.go b/intersight_gosdk/model_onprem_schedule.go index 5fd570a746..b216ccd8a1 100644 --- a/intersight_gosdk/model_onprem_schedule.go +++ b/intersight_gosdk/model_onprem_schedule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_onprem_upgrade_note.go b/intersight_gosdk/model_onprem_upgrade_note.go index f097cc163e..5dbc8c0557 100644 --- a/intersight_gosdk/model_onprem_upgrade_note.go +++ b/intersight_gosdk/model_onprem_upgrade_note.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_onprem_upgrade_phase.go b/intersight_gosdk/model_onprem_upgrade_phase.go index 00031afa82..88959df984 100644 --- a/intersight_gosdk/model_onprem_upgrade_phase.go +++ b/intersight_gosdk/model_onprem_upgrade_phase.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_openapi_api_info.go b/intersight_gosdk/model_openapi_api_info.go index 924c39b8ab..80c43ae70f 100644 --- a/intersight_gosdk/model_openapi_api_info.go +++ b/intersight_gosdk/model_openapi_api_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_openapi_api_method_meta.go b/intersight_gosdk/model_openapi_api_method_meta.go index 35c56428ef..ea26657e3b 100644 --- a/intersight_gosdk/model_openapi_api_method_meta.go +++ b/intersight_gosdk/model_openapi_api_method_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_openapi_api_method_meta_list.go b/intersight_gosdk/model_openapi_api_method_meta_list.go index 662b743c1d..c268c53bec 100644 --- a/intersight_gosdk/model_openapi_api_method_meta_list.go +++ b/intersight_gosdk/model_openapi_api_method_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_openapi_api_method_meta_response.go b/intersight_gosdk/model_openapi_api_method_meta_response.go index 6c68b91b91..c7395060df 100644 --- a/intersight_gosdk/model_openapi_api_method_meta_response.go +++ b/intersight_gosdk/model_openapi_api_method_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_openapi_failed_task.go b/intersight_gosdk/model_openapi_failed_task.go index b8b72ad2f0..b9d8adefd8 100644 --- a/intersight_gosdk/model_openapi_failed_task.go +++ b/intersight_gosdk/model_openapi_failed_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_openapi_key_value_pair.go b/intersight_gosdk/model_openapi_key_value_pair.go index c6da586d56..f36f9a3cde 100644 --- a/intersight_gosdk/model_openapi_key_value_pair.go +++ b/intersight_gosdk/model_openapi_key_value_pair.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_openapi_open_api_specification.go b/intersight_gosdk/model_openapi_open_api_specification.go index d1d79dc8d8..27d427a4c1 100644 --- a/intersight_gosdk/model_openapi_open_api_specification.go +++ b/intersight_gosdk/model_openapi_open_api_specification.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_openapi_open_api_specification_list.go b/intersight_gosdk/model_openapi_open_api_specification_list.go index 6459d89c8c..9f879bf30e 100644 --- a/intersight_gosdk/model_openapi_open_api_specification_list.go +++ b/intersight_gosdk/model_openapi_open_api_specification_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_openapi_open_api_specification_relationship.go b/intersight_gosdk/model_openapi_open_api_specification_relationship.go index 36b332c057..9602d88290 100644 --- a/intersight_gosdk/model_openapi_open_api_specification_relationship.go +++ b/intersight_gosdk/model_openapi_open_api_specification_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_openapi_open_api_specification_response.go b/intersight_gosdk/model_openapi_open_api_specification_response.go index 6a9c581a62..c44ca1de65 100644 --- a/intersight_gosdk/model_openapi_open_api_specification_response.go +++ b/intersight_gosdk/model_openapi_open_api_specification_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_openapi_process_file.go b/intersight_gosdk/model_openapi_process_file.go index 51906bb951..205847da29 100644 --- a/intersight_gosdk/model_openapi_process_file.go +++ b/intersight_gosdk/model_openapi_process_file.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_openapi_process_file_list.go b/intersight_gosdk/model_openapi_process_file_list.go index f663aaeec9..d4b1acd2a1 100644 --- a/intersight_gosdk/model_openapi_process_file_list.go +++ b/intersight_gosdk/model_openapi_process_file_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_openapi_process_file_relationship.go b/intersight_gosdk/model_openapi_process_file_relationship.go index 1fc4cea976..5fde5c3854 100644 --- a/intersight_gosdk/model_openapi_process_file_relationship.go +++ b/intersight_gosdk/model_openapi_process_file_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_openapi_process_file_response.go b/intersight_gosdk/model_openapi_process_file_response.go index 6b3aa01ffa..1930afbc29 100644 --- a/intersight_gosdk/model_openapi_process_file_response.go +++ b/intersight_gosdk/model_openapi_process_file_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_openapi_task_generation_request.go b/intersight_gosdk/model_openapi_task_generation_request.go index 57e3c05005..686c9fc9b6 100644 --- a/intersight_gosdk/model_openapi_task_generation_request.go +++ b/intersight_gosdk/model_openapi_task_generation_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_openapi_task_generation_request_list.go b/intersight_gosdk/model_openapi_task_generation_request_list.go index 2ee6f0541e..b9950ef9b2 100644 --- a/intersight_gosdk/model_openapi_task_generation_request_list.go +++ b/intersight_gosdk/model_openapi_task_generation_request_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_openapi_task_generation_request_relationship.go b/intersight_gosdk/model_openapi_task_generation_request_relationship.go index af15d10bd5..bbc389392f 100644 --- a/intersight_gosdk/model_openapi_task_generation_request_relationship.go +++ b/intersight_gosdk/model_openapi_task_generation_request_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_openapi_task_generation_request_response.go b/intersight_gosdk/model_openapi_task_generation_request_response.go index bff2babc5e..fbb82153c1 100644 --- a/intersight_gosdk/model_openapi_task_generation_request_response.go +++ b/intersight_gosdk/model_openapi_task_generation_request_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_openapi_task_generation_result.go b/intersight_gosdk/model_openapi_task_generation_result.go index fcb41a2144..d3e52fb656 100644 --- a/intersight_gosdk/model_openapi_task_generation_result.go +++ b/intersight_gosdk/model_openapi_task_generation_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_openapi_task_generation_result_list.go b/intersight_gosdk/model_openapi_task_generation_result_list.go index 7c13aefd60..f02e91d7e5 100644 --- a/intersight_gosdk/model_openapi_task_generation_result_list.go +++ b/intersight_gosdk/model_openapi_task_generation_result_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_openapi_task_generation_result_response.go b/intersight_gosdk/model_openapi_task_generation_result_response.go index 16f8b61280..53a39a578d 100644 --- a/intersight_gosdk/model_openapi_task_generation_result_response.go +++ b/intersight_gosdk/model_openapi_task_generation_result_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_oprs_deployment.go b/intersight_gosdk/model_oprs_deployment.go index a285e55a65..881f9c75c4 100644 --- a/intersight_gosdk/model_oprs_deployment.go +++ b/intersight_gosdk/model_oprs_deployment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_oprs_deployment_list.go b/intersight_gosdk/model_oprs_deployment_list.go index 905792ea2b..ed5fb1ce19 100644 --- a/intersight_gosdk/model_oprs_deployment_list.go +++ b/intersight_gosdk/model_oprs_deployment_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_oprs_deployment_response.go b/intersight_gosdk/model_oprs_deployment_response.go index ead2be1444..6525ae3777 100644 --- a/intersight_gosdk/model_oprs_deployment_response.go +++ b/intersight_gosdk/model_oprs_deployment_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_oprs_kvpair.go b/intersight_gosdk/model_oprs_kvpair.go index 74a074b7d5..4d917a1a62 100644 --- a/intersight_gosdk/model_oprs_kvpair.go +++ b/intersight_gosdk/model_oprs_kvpair.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_oprs_sync_target_list_message.go b/intersight_gosdk/model_oprs_sync_target_list_message.go index e6f43889f4..4fe636845f 100644 --- a/intersight_gosdk/model_oprs_sync_target_list_message.go +++ b/intersight_gosdk/model_oprs_sync_target_list_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_oprs_sync_target_list_message_list.go b/intersight_gosdk/model_oprs_sync_target_list_message_list.go index c594de48be..2399d132d7 100644 --- a/intersight_gosdk/model_oprs_sync_target_list_message_list.go +++ b/intersight_gosdk/model_oprs_sync_target_list_message_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_oprs_sync_target_list_message_response.go b/intersight_gosdk/model_oprs_sync_target_list_message_response.go index 2ba703559b..6619f7ea99 100644 --- a/intersight_gosdk/model_oprs_sync_target_list_message_response.go +++ b/intersight_gosdk/model_oprs_sync_target_list_message_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_organization_organization.go b/intersight_gosdk/model_organization_organization.go index 93f1540040..519821028f 100644 --- a/intersight_gosdk/model_organization_organization.go +++ b/intersight_gosdk/model_organization_organization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type OrganizationOrganization struct { // The informative description about the usage of this organization. Description *string `json:"Description,omitempty"` // The name of the organization. There can be multiple organizations under an account. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` Account NullableIamAccountRelationship `json:"Account,omitempty"` // An array of relationships to resourceGroup resources. ResourceGroups []ResourceGroupRelationship `json:"ResourceGroups,omitempty"` @@ -395,7 +395,7 @@ func (o *OrganizationOrganization) UnmarshalJSON(data []byte) (err error) { // The informative description about the usage of this organization. Description *string `json:"Description,omitempty"` // The name of the organization. There can be multiple organizations under an account. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` Account NullableIamAccountRelationship `json:"Account,omitempty"` // An array of relationships to resourceGroup resources. ResourceGroups []ResourceGroupRelationship `json:"ResourceGroups,omitempty"` diff --git a/intersight_gosdk/model_organization_organization_list.go b/intersight_gosdk/model_organization_organization_list.go index ffedecfd5d..ae8601d2fa 100644 --- a/intersight_gosdk/model_organization_organization_list.go +++ b/intersight_gosdk/model_organization_organization_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_organization_organization_relationship.go b/intersight_gosdk/model_organization_organization_relationship.go index 37e95b5a46..c0188dad84 100644 --- a/intersight_gosdk/model_organization_organization_relationship.go +++ b/intersight_gosdk/model_organization_organization_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_organization_organization_response.go b/intersight_gosdk/model_organization_organization_response.go index 4c88116185..f2ed6114d6 100644 --- a/intersight_gosdk/model_organization_organization_response.go +++ b/intersight_gosdk/model_organization_organization_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_answers.go b/intersight_gosdk/model_os_answers.go index 019563fd12..96004a95d2 100644 --- a/intersight_gosdk/model_os_answers.go +++ b/intersight_gosdk/model_os_answers.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_base_install_config.go b/intersight_gosdk/model_os_base_install_config.go index 63f4dcc0a5..4a55e7944c 100644 --- a/intersight_gosdk/model_os_base_install_config.go +++ b/intersight_gosdk/model_os_base_install_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_bulk_install_info.go b/intersight_gosdk/model_os_bulk_install_info.go index 02fd8dd7a1..145c2788f0 100644 --- a/intersight_gosdk/model_os_bulk_install_info.go +++ b/intersight_gosdk/model_os_bulk_install_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_bulk_install_info_list.go b/intersight_gosdk/model_os_bulk_install_info_list.go index 0d5e465480..b2135fdcbd 100644 --- a/intersight_gosdk/model_os_bulk_install_info_list.go +++ b/intersight_gosdk/model_os_bulk_install_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_bulk_install_info_response.go b/intersight_gosdk/model_os_bulk_install_info_response.go index 668a4723ce..e3d2b0ff6a 100644 --- a/intersight_gosdk/model_os_bulk_install_info_response.go +++ b/intersight_gosdk/model_os_bulk_install_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_catalog.go b/intersight_gosdk/model_os_catalog.go index 7fc00ae003..7fb36e19a0 100644 --- a/intersight_gosdk/model_os_catalog.go +++ b/intersight_gosdk/model_os_catalog.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_catalog_list.go b/intersight_gosdk/model_os_catalog_list.go index 657ff6fc08..3abdb246fe 100644 --- a/intersight_gosdk/model_os_catalog_list.go +++ b/intersight_gosdk/model_os_catalog_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_catalog_relationship.go b/intersight_gosdk/model_os_catalog_relationship.go index 94cd3f1b16..9306d2cdd3 100644 --- a/intersight_gosdk/model_os_catalog_relationship.go +++ b/intersight_gosdk/model_os_catalog_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_catalog_response.go b/intersight_gosdk/model_os_catalog_response.go index f4e5bd59cc..bc8875d558 100644 --- a/intersight_gosdk/model_os_catalog_response.go +++ b/intersight_gosdk/model_os_catalog_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_configuration_file.go b/intersight_gosdk/model_os_configuration_file.go index fb4c120051..6298673573 100644 --- a/intersight_gosdk/model_os_configuration_file.go +++ b/intersight_gosdk/model_os_configuration_file.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type OsConfigurationFile struct { // The internal flag is set to true when configuration file is uploaded from OS Install wizard. Internal Configuration files will not be displayed in Answer Management Page. Internal *bool `json:"Internal,omitempty"` // The name of the OS ConfigurationFile that uniquely identifies the configuration file. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\._\\\\-]+$"` Placeholders []OsPlaceHolder `json:"Placeholders,omitempty"` // An internal property that is used to distinguish between the pre-canned OS configuration file entries and user provided entries. Supported *bool `json:"Supported,omitempty"` @@ -513,7 +513,7 @@ func (o *OsConfigurationFile) UnmarshalJSON(data []byte) (err error) { // The internal flag is set to true when configuration file is uploaded from OS Install wizard. Internal Configuration files will not be displayed in Answer Management Page. Internal *bool `json:"Internal,omitempty"` // The name of the OS ConfigurationFile that uniquely identifies the configuration file. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\._\\\\-]+$"` Placeholders []OsPlaceHolder `json:"Placeholders,omitempty"` // An internal property that is used to distinguish between the pre-canned OS configuration file entries and user provided entries. Supported *bool `json:"Supported,omitempty"` diff --git a/intersight_gosdk/model_os_configuration_file_list.go b/intersight_gosdk/model_os_configuration_file_list.go index cb30615616..f64131d0e9 100644 --- a/intersight_gosdk/model_os_configuration_file_list.go +++ b/intersight_gosdk/model_os_configuration_file_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_configuration_file_relationship.go b/intersight_gosdk/model_os_configuration_file_relationship.go index 677c2261f2..55c08b37bf 100644 --- a/intersight_gosdk/model_os_configuration_file_relationship.go +++ b/intersight_gosdk/model_os_configuration_file_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_configuration_file_response.go b/intersight_gosdk/model_os_configuration_file_response.go index 0cddf89830..d47c55c365 100644 --- a/intersight_gosdk/model_os_configuration_file_response.go +++ b/intersight_gosdk/model_os_configuration_file_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_distribution.go b/intersight_gosdk/model_os_distribution.go index 7cddde6c94..80365fd13d 100644 --- a/intersight_gosdk/model_os_distribution.go +++ b/intersight_gosdk/model_os_distribution.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_distribution_list.go b/intersight_gosdk/model_os_distribution_list.go index d2f21558f6..d366219b88 100644 --- a/intersight_gosdk/model_os_distribution_list.go +++ b/intersight_gosdk/model_os_distribution_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_distribution_relationship.go b/intersight_gosdk/model_os_distribution_relationship.go index feafca2158..7c0b8d9c88 100644 --- a/intersight_gosdk/model_os_distribution_relationship.go +++ b/intersight_gosdk/model_os_distribution_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_distribution_response.go b/intersight_gosdk/model_os_distribution_response.go index d527650c9c..6c179ea7e6 100644 --- a/intersight_gosdk/model_os_distribution_response.go +++ b/intersight_gosdk/model_os_distribution_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_fibre_channel_target.go b/intersight_gosdk/model_os_fibre_channel_target.go index fdc902425a..999fec5a10 100644 --- a/intersight_gosdk/model_os_fibre_channel_target.go +++ b/intersight_gosdk/model_os_fibre_channel_target.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,11 +29,11 @@ type OsFibreChannelTarget struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The WWPN Address of the underlying fibre channel interface at initator used for SAN boot. Value must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. For example, 20:00:D4:C9:3C:35:02:01. - InitiatorWwpn *string `json:"InitiatorWwpn,omitempty"` + InitiatorWwpn *string `json:"InitiatorWwpn,omitempty" validate:"regexp=(^([0-9a-fA-F]{2}:){7}[0-9a-fA-F]{2}$)"` // Logical Unit Number (LUN) of the install target. LunId *int64 `json:"LunId,omitempty"` // The WWPN Address of the underlying fibre channel interface at target used by the SAN boot device. Value must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. For example, 51:4F:0C:50:14:1F:AF:01. - TargetWwpn *string `json:"TargetWwpn,omitempty"` + TargetWwpn *string `json:"TargetWwpn,omitempty" validate:"regexp=(^([0-9a-fA-F]{2}:){7}[0-9a-fA-F]{2}$)"` AdditionalProperties map[string]interface{} } @@ -311,11 +311,11 @@ func (o *OsFibreChannelTarget) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The WWPN Address of the underlying fibre channel interface at initator used for SAN boot. Value must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. For example, 20:00:D4:C9:3C:35:02:01. - InitiatorWwpn *string `json:"InitiatorWwpn,omitempty"` + InitiatorWwpn *string `json:"InitiatorWwpn,omitempty" validate:"regexp=(^([0-9a-fA-F]{2}:){7}[0-9a-fA-F]{2}$)"` // Logical Unit Number (LUN) of the install target. LunId *int64 `json:"LunId,omitempty"` // The WWPN Address of the underlying fibre channel interface at target used by the SAN boot device. Value must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. For example, 51:4F:0C:50:14:1F:AF:01. - TargetWwpn *string `json:"TargetWwpn,omitempty"` + TargetWwpn *string `json:"TargetWwpn,omitempty" validate:"regexp=(^([0-9a-fA-F]{2}:){7}[0-9a-fA-F]{2}$)"` } varOsFibreChannelTargetWithoutEmbeddedStruct := OsFibreChannelTargetWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_os_global_config.go b/intersight_gosdk/model_os_global_config.go index ad263ec82f..91a1e7c20b 100644 --- a/intersight_gosdk/model_os_global_config.go +++ b/intersight_gosdk/model_os_global_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type OsGlobalConfig struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of the Configuration file. - ConfigurationFileName *string `json:"ConfigurationFileName,omitempty"` + ConfigurationFileName *string `json:"ConfigurationFileName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9\\\\._\\\\-]+$"` // Configuration source for the OS Installation. ConfigurationSource *string `json:"ConfigurationSource,omitempty"` // The install method to be used for OS installation - vMedia, iPXE. Only vMedia is supported as of now. @@ -543,7 +543,7 @@ func (o *OsGlobalConfig) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of the Configuration file. - ConfigurationFileName *string `json:"ConfigurationFileName,omitempty"` + ConfigurationFileName *string `json:"ConfigurationFileName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9\\\\._\\\\-]+$"` // Configuration source for the OS Installation. ConfigurationSource *string `json:"ConfigurationSource,omitempty"` // The install method to be used for OS installation - vMedia, iPXE. Only vMedia is supported as of now. diff --git a/intersight_gosdk/model_os_install.go b/intersight_gosdk/model_os_install.go index c94ce348fd..958915b494 100644 --- a/intersight_gosdk/model_os_install.go +++ b/intersight_gosdk/model_os_install.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_install_list.go b/intersight_gosdk/model_os_install_list.go index 6f740a512b..90e7a8a7ee 100644 --- a/intersight_gosdk/model_os_install_list.go +++ b/intersight_gosdk/model_os_install_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_install_response.go b/intersight_gosdk/model_os_install_response.go index beed6f1ce5..0e63ae399d 100644 --- a/intersight_gosdk/model_os_install_response.go +++ b/intersight_gosdk/model_os_install_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_install_target.go b/intersight_gosdk/model_os_install_target.go index 8c6e47b2e3..a26369c9cb 100644 --- a/intersight_gosdk/model_os_install_target.go +++ b/intersight_gosdk/model_os_install_target.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_install_target_response.go b/intersight_gosdk/model_os_install_target_response.go index ab8fa8a6a3..7d47d214c4 100644 --- a/intersight_gosdk/model_os_install_target_response.go +++ b/intersight_gosdk/model_os_install_target_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_ip_configuration.go b/intersight_gosdk/model_os_ip_configuration.go index eec756ce88..c78ad0027e 100644 --- a/intersight_gosdk/model_os_ip_configuration.go +++ b/intersight_gosdk/model_os_ip_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_ipv4_configuration.go b/intersight_gosdk/model_os_ipv4_configuration.go index 2f9026e968..946aed4675 100644 --- a/intersight_gosdk/model_os_ipv4_configuration.go +++ b/intersight_gosdk/model_os_ipv4_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_ipv6_configuration.go b/intersight_gosdk/model_os_ipv6_configuration.go index e3d4356b37..f1abea5747 100644 --- a/intersight_gosdk/model_os_ipv6_configuration.go +++ b/intersight_gosdk/model_os_ipv6_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_iscsi_target.go b/intersight_gosdk/model_os_iscsi_target.go index 51a870760b..1585a30484 100644 --- a/intersight_gosdk/model_os_iscsi_target.go +++ b/intersight_gosdk/model_os_iscsi_target.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,9 +31,9 @@ type OsIscsiTarget struct { // The Logical Unit Number (LUN) of the install target. LunId *int64 `json:"LunId,omitempty"` // IQN (iSCSI qualified name) of Storage iSCSI target.Can be up to 255 characters long and has the following format, iqn.yyyy-mm.naming-authority:unique_name. - TargetIqn *string `json:"TargetIqn,omitempty"` + TargetIqn *string `json:"TargetIqn,omitempty" validate:"regexp=^(iqn\\\\.(\\\\d{4}-(0[1-9]|1[0-2]))\\\\.([a-zA-Z0-9]+)([a-zA-Z0-9-.]*)(:)+([^,\\\\s']+))$"` // MAC address of the VNIC used as iSCSI initiator interface. - VnicMac *string `json:"VnicMac,omitempty"` + VnicMac *string `json:"VnicMac,omitempty" validate:"regexp=^([0-9A-Fa-f]{2}[:]){5}([0-9A-Fa-f]{2})$"` AdditionalProperties map[string]interface{} } @@ -313,9 +313,9 @@ func (o *OsIscsiTarget) UnmarshalJSON(data []byte) (err error) { // The Logical Unit Number (LUN) of the install target. LunId *int64 `json:"LunId,omitempty"` // IQN (iSCSI qualified name) of Storage iSCSI target.Can be up to 255 characters long and has the following format, iqn.yyyy-mm.naming-authority:unique_name. - TargetIqn *string `json:"TargetIqn,omitempty"` + TargetIqn *string `json:"TargetIqn,omitempty" validate:"regexp=^(iqn\\\\.(\\\\d{4}-(0[1-9]|1[0-2]))\\\\.([a-zA-Z0-9]+)([a-zA-Z0-9-.]*)(:)+([^,\\\\s']+))$"` // MAC address of the VNIC used as iSCSI initiator interface. - VnicMac *string `json:"VnicMac,omitempty"` + VnicMac *string `json:"VnicMac,omitempty" validate:"regexp=^([0-9A-Fa-f]{2}[:]){5}([0-9A-Fa-f]{2})$"` } varOsIscsiTargetWithoutEmbeddedStruct := OsIscsiTargetWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_os_operating_system_parameters.go b/intersight_gosdk/model_os_operating_system_parameters.go index 0b3fe8016e..fd31bbdb16 100644 --- a/intersight_gosdk/model_os_operating_system_parameters.go +++ b/intersight_gosdk/model_os_operating_system_parameters.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_os_support.go b/intersight_gosdk/model_os_os_support.go index d1ea4ec226..43d4494d07 100644 --- a/intersight_gosdk/model_os_os_support.go +++ b/intersight_gosdk/model_os_os_support.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_physical_disk.go b/intersight_gosdk/model_os_physical_disk.go index 61a2175cf0..c00330b989 100644 --- a/intersight_gosdk/model_os_physical_disk.go +++ b/intersight_gosdk/model_os_physical_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_physical_disk_response.go b/intersight_gosdk/model_os_physical_disk_response.go index b4b00497cd..b9b7e74317 100644 --- a/intersight_gosdk/model_os_physical_disk_response.go +++ b/intersight_gosdk/model_os_physical_disk_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_place_holder.go b/intersight_gosdk/model_os_place_holder.go index e18da80af5..aaa12a0d6c 100644 --- a/intersight_gosdk/model_os_place_holder.go +++ b/intersight_gosdk/model_os_place_holder.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_san_target.go b/intersight_gosdk/model_os_san_target.go index a46d0a17a8..d68faa6229 100644 --- a/intersight_gosdk/model_os_san_target.go +++ b/intersight_gosdk/model_os_san_target.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_server_config.go b/intersight_gosdk/model_os_server_config.go index 3419fcd3a9..afb1b062a5 100644 --- a/intersight_gosdk/model_os_server_config.go +++ b/intersight_gosdk/model_os_server_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -32,7 +32,7 @@ type OsServerConfig struct { Answers NullableOsAnswers `json:"Answers,omitempty"` ErrorMsgs []string `json:"ErrorMsgs,omitempty"` // The WWPN Address of the underlying fibre channel interface at the host side used for SAN accesss. Value must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. For example, 20:00:D4:C9:3C:35:02:01. - InitiatorWwpn *string `json:"InitiatorWwpn,omitempty"` + InitiatorWwpn *string `json:"InitiatorWwpn,omitempty" validate:"regexp=^$|(^([0-9a-fA-F]{2}:){7}[0-9a-fA-F]{2}$)"` // The target in which OS installation triggered, the value represented is StorageControllerID follwed by PhysicalDisk SerialNumber in case of Physcial disk or VirtualDriveId for virtual drive. InstallTarget *string `json:"InstallTarget,omitempty"` // The Logical Unit Number (LUN) of the install target. @@ -44,9 +44,9 @@ type OsServerConfig struct { // IQN (iSCSI qualified name) of Storage iSCSI target. Can be up to 255 characters long and has the following format, iqn.yyyy-mm.naming-authority:unique_name. TargetIqn *string `json:"TargetIqn,omitempty"` // The WWPN Address of the underlying fibre channel interface at the target used by the storage. Value must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. For example, 51:4F:0C:50:14:1F:AF:01. - TargetWwpn *string `json:"TargetWwpn,omitempty"` + TargetWwpn *string `json:"TargetWwpn,omitempty" validate:"regexp=^$|(^([0-9a-fA-F]{2}:){7}[0-9a-fA-F]{2}$)"` // MAC address of the VNIC used as iSCSI initiator interface. - VnicMac *string `json:"VnicMac,omitempty"` + VnicMac *string `json:"VnicMac,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:]){5}([0-9A-Fa-f]{2})$"` AdditionalProperties map[string]interface{} } @@ -673,7 +673,7 @@ func (o *OsServerConfig) UnmarshalJSON(data []byte) (err error) { Answers NullableOsAnswers `json:"Answers,omitempty"` ErrorMsgs []string `json:"ErrorMsgs,omitempty"` // The WWPN Address of the underlying fibre channel interface at the host side used for SAN accesss. Value must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. For example, 20:00:D4:C9:3C:35:02:01. - InitiatorWwpn *string `json:"InitiatorWwpn,omitempty"` + InitiatorWwpn *string `json:"InitiatorWwpn,omitempty" validate:"regexp=^$|(^([0-9a-fA-F]{2}:){7}[0-9a-fA-F]{2}$)"` // The target in which OS installation triggered, the value represented is StorageControllerID follwed by PhysicalDisk SerialNumber in case of Physcial disk or VirtualDriveId for virtual drive. InstallTarget *string `json:"InstallTarget,omitempty"` // The Logical Unit Number (LUN) of the install target. @@ -685,9 +685,9 @@ func (o *OsServerConfig) UnmarshalJSON(data []byte) (err error) { // IQN (iSCSI qualified name) of Storage iSCSI target. Can be up to 255 characters long and has the following format, iqn.yyyy-mm.naming-authority:unique_name. TargetIqn *string `json:"TargetIqn,omitempty"` // The WWPN Address of the underlying fibre channel interface at the target used by the storage. Value must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. For example, 51:4F:0C:50:14:1F:AF:01. - TargetWwpn *string `json:"TargetWwpn,omitempty"` + TargetWwpn *string `json:"TargetWwpn,omitempty" validate:"regexp=^$|(^([0-9a-fA-F]{2}:){7}[0-9a-fA-F]{2}$)"` // MAC address of the VNIC used as iSCSI initiator interface. - VnicMac *string `json:"VnicMac,omitempty"` + VnicMac *string `json:"VnicMac,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:]){5}([0-9A-Fa-f]{2})$"` } varOsServerConfigWithoutEmbeddedStruct := OsServerConfigWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_os_supported_version.go b/intersight_gosdk/model_os_supported_version.go index 1f7cc29de1..4af76fb1e6 100644 --- a/intersight_gosdk/model_os_supported_version.go +++ b/intersight_gosdk/model_os_supported_version.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_supported_version_list.go b/intersight_gosdk/model_os_supported_version_list.go index 4e491d1fe4..a5046121f6 100644 --- a/intersight_gosdk/model_os_supported_version_list.go +++ b/intersight_gosdk/model_os_supported_version_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_supported_version_response.go b/intersight_gosdk/model_os_supported_version_response.go index 6e8e436caa..9fdf091671 100644 --- a/intersight_gosdk/model_os_supported_version_response.go +++ b/intersight_gosdk/model_os_supported_version_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_template_file.go b/intersight_gosdk/model_os_template_file.go index 4546850773..76c3fb9b84 100644 --- a/intersight_gosdk/model_os_template_file.go +++ b/intersight_gosdk/model_os_template_file.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_valid_install_target.go b/intersight_gosdk/model_os_valid_install_target.go index a694ec6027..eb94b31659 100644 --- a/intersight_gosdk/model_os_valid_install_target.go +++ b/intersight_gosdk/model_os_valid_install_target.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_validation_information.go b/intersight_gosdk/model_os_validation_information.go index d8460803f8..370b07270f 100644 --- a/intersight_gosdk/model_os_validation_information.go +++ b/intersight_gosdk/model_os_validation_information.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_virtual_drive.go b/intersight_gosdk/model_os_virtual_drive.go index 48c31574b7..912f6a818a 100644 --- a/intersight_gosdk/model_os_virtual_drive.go +++ b/intersight_gosdk/model_os_virtual_drive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_virtual_drive_response.go b/intersight_gosdk/model_os_virtual_drive_response.go index bb814c8d1b..f697754d75 100644 --- a/intersight_gosdk/model_os_virtual_drive_response.go +++ b/intersight_gosdk/model_os_virtual_drive_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_vmware_parameters.go b/intersight_gosdk/model_os_vmware_parameters.go index a307fc0e0d..4a0a9ee7ab 100644 --- a/intersight_gosdk/model_os_vmware_parameters.go +++ b/intersight_gosdk/model_os_vmware_parameters.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_windows_parameters.go b/intersight_gosdk/model_os_windows_parameters.go index 389f07899f..2de483c8c4 100644 --- a/intersight_gosdk/model_os_windows_parameters.go +++ b/intersight_gosdk/model_os_windows_parameters.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_dc_logs.go b/intersight_gosdk/model_partnerintegration_dc_logs.go index 021c40946a..b551ef8d3e 100644 --- a/intersight_gosdk/model_partnerintegration_dc_logs.go +++ b/intersight_gosdk/model_partnerintegration_dc_logs.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_dc_logs_list.go b/intersight_gosdk/model_partnerintegration_dc_logs_list.go index 848b0c6d4d..dc143c1cc4 100644 --- a/intersight_gosdk/model_partnerintegration_dc_logs_list.go +++ b/intersight_gosdk/model_partnerintegration_dc_logs_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_dc_logs_relationship.go b/intersight_gosdk/model_partnerintegration_dc_logs_relationship.go index 65c395d904..24ce377433 100644 --- a/intersight_gosdk/model_partnerintegration_dc_logs_relationship.go +++ b/intersight_gosdk/model_partnerintegration_dc_logs_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_dc_logs_response.go b/intersight_gosdk/model_partnerintegration_dc_logs_response.go index 01ac144960..784c8bd638 100644 --- a/intersight_gosdk/model_partnerintegration_dc_logs_response.go +++ b/intersight_gosdk/model_partnerintegration_dc_logs_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_device_connector.go b/intersight_gosdk/model_partnerintegration_device_connector.go index 53f736b184..1cb25ee0ef 100644 --- a/intersight_gosdk/model_partnerintegration_device_connector.go +++ b/intersight_gosdk/model_partnerintegration_device_connector.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -37,7 +37,7 @@ type PartnerintegrationDeviceConnector struct { // Name of the docker image that is built. ImageName *string `json:"ImageName,omitempty"` // Name of the device connector recipe. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` // Name of the bucket to pick up the file from. SrcBucket *string `json:"SrcBucket,omitempty"` // Name of source file to upload. @@ -552,7 +552,7 @@ func (o *PartnerintegrationDeviceConnector) UnmarshalJSON(data []byte) (err erro // Name of the docker image that is built. ImageName *string `json:"ImageName,omitempty"` // Name of the device connector recipe. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` // Name of the bucket to pick up the file from. SrcBucket *string `json:"SrcBucket,omitempty"` // Name of source file to upload. diff --git a/intersight_gosdk/model_partnerintegration_device_connector_list.go b/intersight_gosdk/model_partnerintegration_device_connector_list.go index dd94c147b1..15ec8a43a8 100644 --- a/intersight_gosdk/model_partnerintegration_device_connector_list.go +++ b/intersight_gosdk/model_partnerintegration_device_connector_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_device_connector_relationship.go b/intersight_gosdk/model_partnerintegration_device_connector_relationship.go index 2fa8be2f85..fb81db7faf 100644 --- a/intersight_gosdk/model_partnerintegration_device_connector_relationship.go +++ b/intersight_gosdk/model_partnerintegration_device_connector_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_device_connector_response.go b/intersight_gosdk/model_partnerintegration_device_connector_response.go index c9fd9b861b..68bb5066c4 100644 --- a/intersight_gosdk/model_partnerintegration_device_connector_response.go +++ b/intersight_gosdk/model_partnerintegration_device_connector_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_doc_issues.go b/intersight_gosdk/model_partnerintegration_doc_issues.go index f1bf464731..b814ce007e 100644 --- a/intersight_gosdk/model_partnerintegration_doc_issues.go +++ b/intersight_gosdk/model_partnerintegration_doc_issues.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_doc_issues_list.go b/intersight_gosdk/model_partnerintegration_doc_issues_list.go index 31edf7aefe..812799b021 100644 --- a/intersight_gosdk/model_partnerintegration_doc_issues_list.go +++ b/intersight_gosdk/model_partnerintegration_doc_issues_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_doc_issues_relationship.go b/intersight_gosdk/model_partnerintegration_doc_issues_relationship.go index b74c67c328..65477ec385 100644 --- a/intersight_gosdk/model_partnerintegration_doc_issues_relationship.go +++ b/intersight_gosdk/model_partnerintegration_doc_issues_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_doc_issues_response.go b/intersight_gosdk/model_partnerintegration_doc_issues_response.go index 98726619a7..53587764a5 100644 --- a/intersight_gosdk/model_partnerintegration_doc_issues_response.go +++ b/intersight_gosdk/model_partnerintegration_doc_issues_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_etl.go b/intersight_gosdk/model_partnerintegration_etl.go index 06b3206740..acefe8274c 100644 --- a/intersight_gosdk/model_partnerintegration_etl.go +++ b/intersight_gosdk/model_partnerintegration_etl.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type PartnerintegrationEtl struct { // Transformation model in yaml format. Data interface{} `json:"Data,omitempty"` // Placeholder name for the ETL. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` Inventory NullablePartnerintegrationInventoryRelationship `json:"Inventory,omitempty"` AdditionalProperties map[string]interface{} } @@ -320,7 +320,7 @@ func (o *PartnerintegrationEtl) UnmarshalJSON(data []byte) (err error) { // Transformation model in yaml format. Data interface{} `json:"Data,omitempty"` // Placeholder name for the ETL. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` Inventory NullablePartnerintegrationInventoryRelationship `json:"Inventory,omitempty"` } diff --git a/intersight_gosdk/model_partnerintegration_etl_list.go b/intersight_gosdk/model_partnerintegration_etl_list.go index 3ac0f8d0e2..c7ac089676 100644 --- a/intersight_gosdk/model_partnerintegration_etl_list.go +++ b/intersight_gosdk/model_partnerintegration_etl_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_etl_relationship.go b/intersight_gosdk/model_partnerintegration_etl_relationship.go index 2f1d4c3c9f..9f0348b4c9 100644 --- a/intersight_gosdk/model_partnerintegration_etl_relationship.go +++ b/intersight_gosdk/model_partnerintegration_etl_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_etl_response.go b/intersight_gosdk/model_partnerintegration_etl_response.go index 56fc702d5c..f6babfd9d7 100644 --- a/intersight_gosdk/model_partnerintegration_etl_response.go +++ b/intersight_gosdk/model_partnerintegration_etl_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_file.go b/intersight_gosdk/model_partnerintegration_file.go index 8699ec3573..83b978bef4 100644 --- a/intersight_gosdk/model_partnerintegration_file.go +++ b/intersight_gosdk/model_partnerintegration_file.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_file_list.go b/intersight_gosdk/model_partnerintegration_file_list.go index c687d28222..139241543b 100644 --- a/intersight_gosdk/model_partnerintegration_file_list.go +++ b/intersight_gosdk/model_partnerintegration_file_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_file_response.go b/intersight_gosdk/model_partnerintegration_file_response.go index 1bd3b0524e..2e78e4fd67 100644 --- a/intersight_gosdk/model_partnerintegration_file_response.go +++ b/intersight_gosdk/model_partnerintegration_file_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_inventory.go b/intersight_gosdk/model_partnerintegration_inventory.go index 7675f670fd..9da254fe58 100644 --- a/intersight_gosdk/model_partnerintegration_inventory.go +++ b/intersight_gosdk/model_partnerintegration_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -43,7 +43,7 @@ type PartnerintegrationInventory struct { // Name of the docker image that is built. ImageName *string `json:"ImageName,omitempty"` // Name of the inventory collection. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` // Link to the generated v3 python SDK. PythonSdkUrl *string `json:"PythonSdkUrl,omitempty"` // An array of relationships to partnerintegrationDocIssues resources. @@ -793,7 +793,7 @@ func (o *PartnerintegrationInventory) UnmarshalJSON(data []byte) (err error) { // Name of the docker image that is built. ImageName *string `json:"ImageName,omitempty"` // Name of the inventory collection. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` // Link to the generated v3 python SDK. PythonSdkUrl *string `json:"PythonSdkUrl,omitempty"` // An array of relationships to partnerintegrationDocIssues resources. diff --git a/intersight_gosdk/model_partnerintegration_inventory_list.go b/intersight_gosdk/model_partnerintegration_inventory_list.go index 9729eaee6a..8889fe798e 100644 --- a/intersight_gosdk/model_partnerintegration_inventory_list.go +++ b/intersight_gosdk/model_partnerintegration_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_inventory_relationship.go b/intersight_gosdk/model_partnerintegration_inventory_relationship.go index 11f3827f9f..dee3883edd 100644 --- a/intersight_gosdk/model_partnerintegration_inventory_relationship.go +++ b/intersight_gosdk/model_partnerintegration_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_inventory_response.go b/intersight_gosdk/model_partnerintegration_inventory_response.go index 85908d7f30..4d47f05da3 100644 --- a/intersight_gosdk/model_partnerintegration_inventory_response.go +++ b/intersight_gosdk/model_partnerintegration_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_logs.go b/intersight_gosdk/model_partnerintegration_logs.go index d70e62689c..d3711519be 100644 --- a/intersight_gosdk/model_partnerintegration_logs.go +++ b/intersight_gosdk/model_partnerintegration_logs.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_logs_list.go b/intersight_gosdk/model_partnerintegration_logs_list.go index c0dd782e92..0f14c17a70 100644 --- a/intersight_gosdk/model_partnerintegration_logs_list.go +++ b/intersight_gosdk/model_partnerintegration_logs_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_logs_relationship.go b/intersight_gosdk/model_partnerintegration_logs_relationship.go index 1ee5d725c8..97f1e181f7 100644 --- a/intersight_gosdk/model_partnerintegration_logs_relationship.go +++ b/intersight_gosdk/model_partnerintegration_logs_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_logs_response.go b/intersight_gosdk/model_partnerintegration_logs_response.go index c7a8fc78fb..2730ddf764 100644 --- a/intersight_gosdk/model_partnerintegration_logs_response.go +++ b/intersight_gosdk/model_partnerintegration_logs_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_metrics.go b/intersight_gosdk/model_partnerintegration_metrics.go index 5dacfdc6d8..1d5d724378 100644 --- a/intersight_gosdk/model_partnerintegration_metrics.go +++ b/intersight_gosdk/model_partnerintegration_metrics.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,7 +30,7 @@ type PartnerintegrationMetrics struct { ObjectType string `json:"ObjectType"` Data NullablePartnerintegrationMetricsModel `json:"Data,omitempty"` // Placeholder name for the Metrics. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` Inventory NullablePartnerintegrationInventoryRelationship `json:"Inventory,omitempty"` AdditionalProperties map[string]interface{} } @@ -328,7 +328,7 @@ func (o *PartnerintegrationMetrics) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` Data NullablePartnerintegrationMetricsModel `json:"Data,omitempty"` // Placeholder name for the Metrics. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` Inventory NullablePartnerintegrationInventoryRelationship `json:"Inventory,omitempty"` } diff --git a/intersight_gosdk/model_partnerintegration_metrics_list.go b/intersight_gosdk/model_partnerintegration_metrics_list.go index 26802accb4..32e203dacf 100644 --- a/intersight_gosdk/model_partnerintegration_metrics_list.go +++ b/intersight_gosdk/model_partnerintegration_metrics_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_metrics_model.go b/intersight_gosdk/model_partnerintegration_metrics_model.go index abc44b9ee7..abf19153c3 100644 --- a/intersight_gosdk/model_partnerintegration_metrics_model.go +++ b/intersight_gosdk/model_partnerintegration_metrics_model.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_metrics_relationship.go b/intersight_gosdk/model_partnerintegration_metrics_relationship.go index 237bb283a7..cb6831de49 100644 --- a/intersight_gosdk/model_partnerintegration_metrics_relationship.go +++ b/intersight_gosdk/model_partnerintegration_metrics_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_metrics_response.go b/intersight_gosdk/model_partnerintegration_metrics_response.go index b9163218b9..3e4ebe62a4 100644 --- a/intersight_gosdk/model_partnerintegration_metrics_response.go +++ b/intersight_gosdk/model_partnerintegration_metrics_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_model.go b/intersight_gosdk/model_partnerintegration_model.go index fa18508d1e..c13b3c9487 100644 --- a/intersight_gosdk/model_partnerintegration_model.go +++ b/intersight_gosdk/model_partnerintegration_model.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type PartnerintegrationModel struct { // Endpoint model in yaml format. Data interface{} `json:"Data,omitempty"` // Placeholder name for the model. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` Inventory NullablePartnerintegrationInventoryRelationship `json:"Inventory,omitempty"` AdditionalProperties map[string]interface{} } @@ -320,7 +320,7 @@ func (o *PartnerintegrationModel) UnmarshalJSON(data []byte) (err error) { // Endpoint model in yaml format. Data interface{} `json:"Data,omitempty"` // Placeholder name for the model. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` Inventory NullablePartnerintegrationInventoryRelationship `json:"Inventory,omitempty"` } diff --git a/intersight_gosdk/model_partnerintegration_model_list.go b/intersight_gosdk/model_partnerintegration_model_list.go index 75f471e4a8..c201b0ceab 100644 --- a/intersight_gosdk/model_partnerintegration_model_list.go +++ b/intersight_gosdk/model_partnerintegration_model_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_model_relationship.go b/intersight_gosdk/model_partnerintegration_model_relationship.go index 44d249efb7..443ce252ba 100644 --- a/intersight_gosdk/model_partnerintegration_model_relationship.go +++ b/intersight_gosdk/model_partnerintegration_model_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_model_response.go b/intersight_gosdk/model_partnerintegration_model_response.go index 2576755722..d400f79b5d 100644 --- a/intersight_gosdk/model_partnerintegration_model_response.go +++ b/intersight_gosdk/model_partnerintegration_model_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_patch_document.go b/intersight_gosdk/model_patch_document.go index f9eb2fc5c9..c1624bfc52 100644 --- a/intersight_gosdk/model_patch_document.go +++ b/intersight_gosdk/model_patch_document.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_coprocessor_card.go b/intersight_gosdk/model_pci_coprocessor_card.go index 22d90fa4ec..320e34583b 100644 --- a/intersight_gosdk/model_pci_coprocessor_card.go +++ b/intersight_gosdk/model_pci_coprocessor_card.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_coprocessor_card_list.go b/intersight_gosdk/model_pci_coprocessor_card_list.go index c6a1caa3dc..c8d98e2895 100644 --- a/intersight_gosdk/model_pci_coprocessor_card_list.go +++ b/intersight_gosdk/model_pci_coprocessor_card_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_coprocessor_card_relationship.go b/intersight_gosdk/model_pci_coprocessor_card_relationship.go index b786a738f6..e8189dabc1 100644 --- a/intersight_gosdk/model_pci_coprocessor_card_relationship.go +++ b/intersight_gosdk/model_pci_coprocessor_card_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_coprocessor_card_response.go b/intersight_gosdk/model_pci_coprocessor_card_response.go index eb9883ec77..273e51a4df 100644 --- a/intersight_gosdk/model_pci_coprocessor_card_response.go +++ b/intersight_gosdk/model_pci_coprocessor_card_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_device.go b/intersight_gosdk/model_pci_device.go index 9c018921da..1240f93470 100644 --- a/intersight_gosdk/model_pci_device.go +++ b/intersight_gosdk/model_pci_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_device_list.go b/intersight_gosdk/model_pci_device_list.go index c56e9cb17d..9d798bbf98 100644 --- a/intersight_gosdk/model_pci_device_list.go +++ b/intersight_gosdk/model_pci_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_device_relationship.go b/intersight_gosdk/model_pci_device_relationship.go index 6086d8b0aa..24450916c3 100644 --- a/intersight_gosdk/model_pci_device_relationship.go +++ b/intersight_gosdk/model_pci_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_device_response.go b/intersight_gosdk/model_pci_device_response.go index 48f07bf4b7..af958314ce 100644 --- a/intersight_gosdk/model_pci_device_response.go +++ b/intersight_gosdk/model_pci_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_link.go b/intersight_gosdk/model_pci_link.go index 1ea77a46e6..04072893b0 100644 --- a/intersight_gosdk/model_pci_link.go +++ b/intersight_gosdk/model_pci_link.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_link_list.go b/intersight_gosdk/model_pci_link_list.go index b2a66556be..0452a22520 100644 --- a/intersight_gosdk/model_pci_link_list.go +++ b/intersight_gosdk/model_pci_link_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_link_relationship.go b/intersight_gosdk/model_pci_link_relationship.go index 011d6779e7..4ae4d14ea2 100644 --- a/intersight_gosdk/model_pci_link_relationship.go +++ b/intersight_gosdk/model_pci_link_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_link_response.go b/intersight_gosdk/model_pci_link_response.go index 0957c61c20..6d1c641636 100644 --- a/intersight_gosdk/model_pci_link_response.go +++ b/intersight_gosdk/model_pci_link_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_node.go b/intersight_gosdk/model_pci_node.go index 2e1f3d3ed4..cbaa8dbc9b 100644 --- a/intersight_gosdk/model_pci_node.go +++ b/intersight_gosdk/model_pci_node.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_node_list.go b/intersight_gosdk/model_pci_node_list.go index b501ca8960..8459908692 100644 --- a/intersight_gosdk/model_pci_node_list.go +++ b/intersight_gosdk/model_pci_node_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_node_relationship.go b/intersight_gosdk/model_pci_node_relationship.go index cd4dc2fbad..1df9d9044a 100644 --- a/intersight_gosdk/model_pci_node_relationship.go +++ b/intersight_gosdk/model_pci_node_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_node_response.go b/intersight_gosdk/model_pci_node_response.go index ff0513ea04..1ea6dcaf7f 100644 --- a/intersight_gosdk/model_pci_node_response.go +++ b/intersight_gosdk/model_pci_node_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_switch.go b/intersight_gosdk/model_pci_switch.go index 0f8c62c2cc..8174588aac 100644 --- a/intersight_gosdk/model_pci_switch.go +++ b/intersight_gosdk/model_pci_switch.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_switch_list.go b/intersight_gosdk/model_pci_switch_list.go index b13b61b387..5854a15323 100644 --- a/intersight_gosdk/model_pci_switch_list.go +++ b/intersight_gosdk/model_pci_switch_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_switch_relationship.go b/intersight_gosdk/model_pci_switch_relationship.go index f63e8bba32..d7a2b46717 100644 --- a/intersight_gosdk/model_pci_switch_relationship.go +++ b/intersight_gosdk/model_pci_switch_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_switch_response.go b/intersight_gosdk/model_pci_switch_response.go index e478b08e71..0547c19c06 100644 --- a/intersight_gosdk/model_pci_switch_response.go +++ b/intersight_gosdk/model_pci_switch_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pkix_distinguished_name.go b/intersight_gosdk/model_pkix_distinguished_name.go index d0310e8cbd..4561c99bb9 100644 --- a/intersight_gosdk/model_pkix_distinguished_name.go +++ b/intersight_gosdk/model_pkix_distinguished_name.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pkix_ecdsa_key_spec.go b/intersight_gosdk/model_pkix_ecdsa_key_spec.go index 3edf6748d5..f1b0c17a3b 100644 --- a/intersight_gosdk/model_pkix_ecdsa_key_spec.go +++ b/intersight_gosdk/model_pkix_ecdsa_key_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pkix_eddsa_key_spec.go b/intersight_gosdk/model_pkix_eddsa_key_spec.go index a6425b166e..2de4782294 100644 --- a/intersight_gosdk/model_pkix_eddsa_key_spec.go +++ b/intersight_gosdk/model_pkix_eddsa_key_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pkix_key_generation_spec.go b/intersight_gosdk/model_pkix_key_generation_spec.go index b5ff6b6032..6c31747838 100644 --- a/intersight_gosdk/model_pkix_key_generation_spec.go +++ b/intersight_gosdk/model_pkix_key_generation_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pkix_rsa_algorithm.go b/intersight_gosdk/model_pkix_rsa_algorithm.go index 58946cd020..9caa7e76f1 100644 --- a/intersight_gosdk/model_pkix_rsa_algorithm.go +++ b/intersight_gosdk/model_pkix_rsa_algorithm.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pkix_subject_alternate_name.go b/intersight_gosdk/model_pkix_subject_alternate_name.go index c30d236c05..d5988a5d7c 100644 --- a/intersight_gosdk/model_pkix_subject_alternate_name.go +++ b/intersight_gosdk/model_pkix_subject_alternate_name.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_abstract_config_change_detail.go b/intersight_gosdk/model_policy_abstract_config_change_detail.go index f88ad61f78..e772ffcba5 100644 --- a/intersight_gosdk/model_policy_abstract_config_change_detail.go +++ b/intersight_gosdk/model_policy_abstract_config_change_detail.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_abstract_config_profile.go b/intersight_gosdk/model_policy_abstract_config_profile.go index 2cdf17c900..75b45e25a3 100644 --- a/intersight_gosdk/model_policy_abstract_config_profile.go +++ b/intersight_gosdk/model_policy_abstract_config_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_abstract_config_profile_relationship.go b/intersight_gosdk/model_policy_abstract_config_profile_relationship.go index 08e6827acd..6d938ebc2a 100644 --- a/intersight_gosdk/model_policy_abstract_config_profile_relationship.go +++ b/intersight_gosdk/model_policy_abstract_config_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_abstract_config_result.go b/intersight_gosdk/model_policy_abstract_config_result.go index e7f42a73b5..594e3bf57c 100644 --- a/intersight_gosdk/model_policy_abstract_config_result.go +++ b/intersight_gosdk/model_policy_abstract_config_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_abstract_config_result_entry.go b/intersight_gosdk/model_policy_abstract_config_result_entry.go index 023e794cd6..af9740f073 100644 --- a/intersight_gosdk/model_policy_abstract_config_result_entry.go +++ b/intersight_gosdk/model_policy_abstract_config_result_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_abstract_configuration_object.go b/intersight_gosdk/model_policy_abstract_configuration_object.go index 67e8f05e60..0568ccd161 100644 --- a/intersight_gosdk/model_policy_abstract_configuration_object.go +++ b/intersight_gosdk/model_policy_abstract_configuration_object.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_abstract_disruption.go b/intersight_gosdk/model_policy_abstract_disruption.go index 9ba5c5a0bb..07e20a9199 100644 --- a/intersight_gosdk/model_policy_abstract_disruption.go +++ b/intersight_gosdk/model_policy_abstract_disruption.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_abstract_inventory.go b/intersight_gosdk/model_policy_abstract_inventory.go index aa28e39f49..5f00528319 100644 --- a/intersight_gosdk/model_policy_abstract_inventory.go +++ b/intersight_gosdk/model_policy_abstract_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_abstract_policy.go b/intersight_gosdk/model_policy_abstract_policy.go index 2bb6feb441..056b8fa6ef 100644 --- a/intersight_gosdk/model_policy_abstract_policy.go +++ b/intersight_gosdk/model_policy_abstract_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type PolicyAbstractPolicy struct { // 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. ObjectType string `json:"ObjectType"` // Description of the policy. - Description *string `json:"Description,omitempty"` + Description *string `json:"Description,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\x00-\\\\xFF]*$"` // Name of the concrete policy. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` AdditionalProperties map[string]interface{} } @@ -247,9 +247,9 @@ func (o *PolicyAbstractPolicy) UnmarshalJSON(data []byte) (err error) { // 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. ObjectType string `json:"ObjectType"` // Description of the policy. - Description *string `json:"Description,omitempty"` + Description *string `json:"Description,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\x00-\\\\xFF]*$"` // Name of the concrete policy. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` } varPolicyAbstractPolicyWithoutEmbeddedStruct := PolicyAbstractPolicyWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_policy_abstract_policy_inventory.go b/intersight_gosdk/model_policy_abstract_policy_inventory.go index 527cefa2eb..e9b4cf40af 100644 --- a/intersight_gosdk/model_policy_abstract_policy_inventory.go +++ b/intersight_gosdk/model_policy_abstract_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type PolicyAbstractPolicyInventory struct { // 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. ObjectType string `json:"ObjectType"` // Description of the policy. - Description *string `json:"Description,omitempty"` + Description *string `json:"Description,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_'.:-]*$"` // Name of the inventoried policy object. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,512}$"` AdditionalProperties map[string]interface{} } @@ -247,9 +247,9 @@ func (o *PolicyAbstractPolicyInventory) UnmarshalJSON(data []byte) (err error) { // 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. ObjectType string `json:"ObjectType"` // Description of the policy. - Description *string `json:"Description,omitempty"` + Description *string `json:"Description,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_'.:-]*$"` // Name of the inventoried policy object. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,512}$"` } varPolicyAbstractPolicyInventoryWithoutEmbeddedStruct := PolicyAbstractPolicyInventoryWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_policy_abstract_policy_item.go b/intersight_gosdk/model_policy_abstract_policy_item.go index a702c06eb0..16aada62d2 100644 --- a/intersight_gosdk/model_policy_abstract_policy_item.go +++ b/intersight_gosdk/model_policy_abstract_policy_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_abstract_policy_relationship.go b/intersight_gosdk/model_policy_abstract_policy_relationship.go index 1027f481ef..654ffa1d8a 100644 --- a/intersight_gosdk/model_policy_abstract_policy_relationship.go +++ b/intersight_gosdk/model_policy_abstract_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_abstract_profile.go b/intersight_gosdk/model_policy_abstract_profile.go index 3c2c880137..ae56e65517 100644 --- a/intersight_gosdk/model_policy_abstract_profile.go +++ b/intersight_gosdk/model_policy_abstract_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type PolicyAbstractProfile struct { // 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. ObjectType string `json:"ObjectType"` // Description of the profile. - Description *string `json:"Description,omitempty"` + Description *string `json:"Description,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\x00-\\\\xFF]*$"` // Name of the profile instance or profile template. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` // 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. Type *string `json:"Type,omitempty"` SrcTemplate NullablePolicyAbstractProfileRelationship `json:"SrcTemplate,omitempty"` @@ -335,9 +335,9 @@ func (o *PolicyAbstractProfile) UnmarshalJSON(data []byte) (err error) { // 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. ObjectType string `json:"ObjectType"` // Description of the profile. - Description *string `json:"Description,omitempty"` + Description *string `json:"Description,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\x00-\\\\xFF]*$"` // Name of the profile instance or profile template. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` // 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. Type *string `json:"Type,omitempty"` SrcTemplate NullablePolicyAbstractProfileRelationship `json:"SrcTemplate,omitempty"` diff --git a/intersight_gosdk/model_policy_abstract_profile_relationship.go b/intersight_gosdk/model_policy_abstract_profile_relationship.go index 4ac0e70235..02bb09d879 100644 --- a/intersight_gosdk/model_policy_abstract_profile_relationship.go +++ b/intersight_gosdk/model_policy_abstract_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_action_param.go b/intersight_gosdk/model_policy_action_param.go index a6fc8c0ff1..4b0722a50d 100644 --- a/intersight_gosdk/model_policy_action_param.go +++ b/intersight_gosdk/model_policy_action_param.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_action_qualifier.go b/intersight_gosdk/model_policy_action_qualifier.go index 8b6a99f6ef..ff9d0faf98 100644 --- a/intersight_gosdk/model_policy_action_qualifier.go +++ b/intersight_gosdk/model_policy_action_qualifier.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_config_change.go b/intersight_gosdk/model_policy_config_change.go index fe1dd05e57..06d0f0a192 100644 --- a/intersight_gosdk/model_policy_config_change.go +++ b/intersight_gosdk/model_policy_config_change.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_config_change_context.go b/intersight_gosdk/model_policy_config_change_context.go index 8f44c4c689..483312b9ac 100644 --- a/intersight_gosdk/model_policy_config_change_context.go +++ b/intersight_gosdk/model_policy_config_change_context.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_config_change_disruption_detail_type.go b/intersight_gosdk/model_policy_config_change_disruption_detail_type.go index e7050c6a92..16c081bb8b 100644 --- a/intersight_gosdk/model_policy_config_change_disruption_detail_type.go +++ b/intersight_gosdk/model_policy_config_change_disruption_detail_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_config_context.go b/intersight_gosdk/model_policy_config_context.go index cf4a3e4f6a..b9e66ac0de 100644 --- a/intersight_gosdk/model_policy_config_context.go +++ b/intersight_gosdk/model_policy_config_context.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_config_result_context.go b/intersight_gosdk/model_policy_config_result_context.go index 1b86a4c7ff..df755e362e 100644 --- a/intersight_gosdk/model_policy_config_result_context.go +++ b/intersight_gosdk/model_policy_config_result_context.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_policy_error.go b/intersight_gosdk/model_policy_policy_error.go index cdf3ccdc8f..ec6863b85a 100644 --- a/intersight_gosdk/model_policy_policy_error.go +++ b/intersight_gosdk/model_policy_policy_error.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_policy_status.go b/intersight_gosdk/model_policy_policy_status.go index a0f02b5c00..6e29ad20ca 100644 --- a/intersight_gosdk/model_policy_policy_status.go +++ b/intersight_gosdk/model_policy_policy_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_qualifier.go b/intersight_gosdk/model_policy_qualifier.go index 2b4c3bf264..db2b610299 100644 --- a/intersight_gosdk/model_policy_qualifier.go +++ b/intersight_gosdk/model_policy_qualifier.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_scheduled_action.go b/intersight_gosdk/model_policy_scheduled_action.go index a00004ab37..12198e912f 100644 --- a/intersight_gosdk/model_policy_scheduled_action.go +++ b/intersight_gosdk/model_policy_scheduled_action.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policyinventory_abstract_device_info.go b/intersight_gosdk/model_policyinventory_abstract_device_info.go index 008d2eeb55..2c063ddfd7 100644 --- a/intersight_gosdk/model_policyinventory_abstract_device_info.go +++ b/intersight_gosdk/model_policyinventory_abstract_device_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policyinventory_job_info.go b/intersight_gosdk/model_policyinventory_job_info.go index 4de8321e67..8e8482831d 100644 --- a/intersight_gosdk/model_policyinventory_job_info.go +++ b/intersight_gosdk/model_policyinventory_job_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pool_abstract_block.go b/intersight_gosdk/model_pool_abstract_block.go index a72d3d2373..71788dd8ea 100644 --- a/intersight_gosdk/model_pool_abstract_block.go +++ b/intersight_gosdk/model_pool_abstract_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pool_abstract_block_lease.go b/intersight_gosdk/model_pool_abstract_block_lease.go index 2950df25ea..c76f266ecf 100644 --- a/intersight_gosdk/model_pool_abstract_block_lease.go +++ b/intersight_gosdk/model_pool_abstract_block_lease.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pool_abstract_block_type.go b/intersight_gosdk/model_pool_abstract_block_type.go index feea3e9e63..4f8f8a402f 100644 --- a/intersight_gosdk/model_pool_abstract_block_type.go +++ b/intersight_gosdk/model_pool_abstract_block_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pool_abstract_id_pool_member.go b/intersight_gosdk/model_pool_abstract_id_pool_member.go index c8df1c2898..ff8ba8ae12 100644 --- a/intersight_gosdk/model_pool_abstract_id_pool_member.go +++ b/intersight_gosdk/model_pool_abstract_id_pool_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pool_abstract_lease.go b/intersight_gosdk/model_pool_abstract_lease.go index 71428277cc..adbc04f238 100644 --- a/intersight_gosdk/model_pool_abstract_lease.go +++ b/intersight_gosdk/model_pool_abstract_lease.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pool_abstract_pool.go b/intersight_gosdk/model_pool_abstract_pool.go index 67da97cc17..6c31f3f2ab 100644 --- a/intersight_gosdk/model_pool_abstract_pool.go +++ b/intersight_gosdk/model_pool_abstract_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pool_abstract_pool_member.go b/intersight_gosdk/model_pool_abstract_pool_member.go index cf2059e2ac..ef3dfd4b3d 100644 --- a/intersight_gosdk/model_pool_abstract_pool_member.go +++ b/intersight_gosdk/model_pool_abstract_pool_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pool_reservation.go b/intersight_gosdk/model_pool_reservation.go index 8f9c4d01dd..9946e3ce9f 100644 --- a/intersight_gosdk/model_pool_reservation.go +++ b/intersight_gosdk/model_pool_reservation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pool_reservation_reference.go b/intersight_gosdk/model_pool_reservation_reference.go index fa34e2e82c..284b7133b8 100644 --- a/intersight_gosdk/model_pool_reservation_reference.go +++ b/intersight_gosdk/model_pool_reservation_reference.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_port_group.go b/intersight_gosdk/model_port_group.go index e871dadff9..17097bae9e 100644 --- a/intersight_gosdk/model_port_group.go +++ b/intersight_gosdk/model_port_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_port_group_list.go b/intersight_gosdk/model_port_group_list.go index d2640555be..164e925940 100644 --- a/intersight_gosdk/model_port_group_list.go +++ b/intersight_gosdk/model_port_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_port_group_relationship.go b/intersight_gosdk/model_port_group_relationship.go index 7f537b0238..1851d69416 100644 --- a/intersight_gosdk/model_port_group_relationship.go +++ b/intersight_gosdk/model_port_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_port_group_response.go b/intersight_gosdk/model_port_group_response.go index cc9fec10d1..f6fa0c8d2d 100644 --- a/intersight_gosdk/model_port_group_response.go +++ b/intersight_gosdk/model_port_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_port_interface_base.go b/intersight_gosdk/model_port_interface_base.go index c833f2bc2e..ee3db4e0f1 100644 --- a/intersight_gosdk/model_port_interface_base.go +++ b/intersight_gosdk/model_port_interface_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_port_interface_base_relationship.go b/intersight_gosdk/model_port_interface_base_relationship.go index 1c28ecb0ad..08a67406cf 100644 --- a/intersight_gosdk/model_port_interface_base_relationship.go +++ b/intersight_gosdk/model_port_interface_base_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_port_mac_binding.go b/intersight_gosdk/model_port_mac_binding.go index e58c8df47b..5628fd9663 100644 --- a/intersight_gosdk/model_port_mac_binding.go +++ b/intersight_gosdk/model_port_mac_binding.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_port_mac_binding_list.go b/intersight_gosdk/model_port_mac_binding_list.go index a693afb614..6dcd1a09c5 100644 --- a/intersight_gosdk/model_port_mac_binding_list.go +++ b/intersight_gosdk/model_port_mac_binding_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_port_mac_binding_relationship.go b/intersight_gosdk/model_port_mac_binding_relationship.go index 57812be67e..e3081577b4 100644 --- a/intersight_gosdk/model_port_mac_binding_relationship.go +++ b/intersight_gosdk/model_port_mac_binding_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_port_mac_binding_response.go b/intersight_gosdk/model_port_mac_binding_response.go index fb28f7e949..fb43ae4e6b 100644 --- a/intersight_gosdk/model_port_mac_binding_response.go +++ b/intersight_gosdk/model_port_mac_binding_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_port_physical.go b/intersight_gosdk/model_port_physical.go index 3992530d85..998246946d 100644 --- a/intersight_gosdk/model_port_physical.go +++ b/intersight_gosdk/model_port_physical.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_port_sub_group.go b/intersight_gosdk/model_port_sub_group.go index f10aeec196..671aa6cf86 100644 --- a/intersight_gosdk/model_port_sub_group.go +++ b/intersight_gosdk/model_port_sub_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_port_sub_group_list.go b/intersight_gosdk/model_port_sub_group_list.go index 627639e4f0..2d2874bf95 100644 --- a/intersight_gosdk/model_port_sub_group_list.go +++ b/intersight_gosdk/model_port_sub_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_port_sub_group_relationship.go b/intersight_gosdk/model_port_sub_group_relationship.go index 7cad2e05b5..1e65adb59a 100644 --- a/intersight_gosdk/model_port_sub_group_relationship.go +++ b/intersight_gosdk/model_port_sub_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_port_sub_group_response.go b/intersight_gosdk/model_port_sub_group_response.go index 8e38cf86c6..cd2dbeb32c 100644 --- a/intersight_gosdk/model_port_sub_group_response.go +++ b/intersight_gosdk/model_port_sub_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_power_control_state.go b/intersight_gosdk/model_power_control_state.go index 89cdf75e9c..e93a207bb1 100644 --- a/intersight_gosdk/model_power_control_state.go +++ b/intersight_gosdk/model_power_control_state.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_power_control_state_list.go b/intersight_gosdk/model_power_control_state_list.go index e76a10fbf9..a7451491e3 100644 --- a/intersight_gosdk/model_power_control_state_list.go +++ b/intersight_gosdk/model_power_control_state_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_power_control_state_relationship.go b/intersight_gosdk/model_power_control_state_relationship.go index 83cfb1b769..d05d59df95 100644 --- a/intersight_gosdk/model_power_control_state_relationship.go +++ b/intersight_gosdk/model_power_control_state_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_power_control_state_response.go b/intersight_gosdk/model_power_control_state_response.go index 34f8a0f589..ad15f8e455 100644 --- a/intersight_gosdk/model_power_control_state_response.go +++ b/intersight_gosdk/model_power_control_state_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_power_policy.go b/intersight_gosdk/model_power_policy.go index 6da68e9f4e..43c1b493e3 100644 --- a/intersight_gosdk/model_power_policy.go +++ b/intersight_gosdk/model_power_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_power_policy_inventory.go b/intersight_gosdk/model_power_policy_inventory.go index 97bfc5ce8d..f55787e235 100644 --- a/intersight_gosdk/model_power_policy_inventory.go +++ b/intersight_gosdk/model_power_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_power_policy_inventory_list.go b/intersight_gosdk/model_power_policy_inventory_list.go index 698670a1b8..976d78d43a 100644 --- a/intersight_gosdk/model_power_policy_inventory_list.go +++ b/intersight_gosdk/model_power_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_power_policy_inventory_response.go b/intersight_gosdk/model_power_policy_inventory_response.go index 2eb02a91c0..83f1eb6ee3 100644 --- a/intersight_gosdk/model_power_policy_inventory_response.go +++ b/intersight_gosdk/model_power_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_power_policy_list.go b/intersight_gosdk/model_power_policy_list.go index ab46afe7e6..4b7d39022f 100644 --- a/intersight_gosdk/model_power_policy_list.go +++ b/intersight_gosdk/model_power_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_power_policy_response.go b/intersight_gosdk/model_power_policy_response.go index 2a8fd271f4..6f7c958333 100644 --- a/intersight_gosdk/model_power_policy_response.go +++ b/intersight_gosdk/model_power_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_processor_unit.go b/intersight_gosdk/model_processor_unit.go index 4af1061c23..d30788203e 100644 --- a/intersight_gosdk/model_processor_unit.go +++ b/intersight_gosdk/model_processor_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_processor_unit_list.go b/intersight_gosdk/model_processor_unit_list.go index 0f4b0dd1b3..4663c4b94d 100644 --- a/intersight_gosdk/model_processor_unit_list.go +++ b/intersight_gosdk/model_processor_unit_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_processor_unit_relationship.go b/intersight_gosdk/model_processor_unit_relationship.go index 5b44b23757..97e72cf649 100644 --- a/intersight_gosdk/model_processor_unit_relationship.go +++ b/intersight_gosdk/model_processor_unit_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_processor_unit_response.go b/intersight_gosdk/model_processor_unit_response.go index 6c92e455ea..d773f736d9 100644 --- a/intersight_gosdk/model_processor_unit_response.go +++ b/intersight_gosdk/model_processor_unit_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_rack_unit_personality.go b/intersight_gosdk/model_rack_unit_personality.go index 2d2f2cded8..a1a9b14224 100644 --- a/intersight_gosdk/model_rack_unit_personality.go +++ b/intersight_gosdk/model_rack_unit_personality.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_rack_unit_personality_list.go b/intersight_gosdk/model_rack_unit_personality_list.go index c1d320ae4c..659414779d 100644 --- a/intersight_gosdk/model_rack_unit_personality_list.go +++ b/intersight_gosdk/model_rack_unit_personality_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_rack_unit_personality_relationship.go b/intersight_gosdk/model_rack_unit_personality_relationship.go index 00ffaac9df..aabe796bf1 100644 --- a/intersight_gosdk/model_rack_unit_personality_relationship.go +++ b/intersight_gosdk/model_rack_unit_personality_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_rack_unit_personality_response.go b/intersight_gosdk/model_rack_unit_personality_response.go index 335ae09161..ebbbb6b192 100644 --- a/intersight_gosdk/model_rack_unit_personality_response.go +++ b/intersight_gosdk/model_rack_unit_personality_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_abstract_item.go b/intersight_gosdk/model_recommendation_abstract_item.go index 868754cec4..9d821f519d 100644 --- a/intersight_gosdk/model_recommendation_abstract_item.go +++ b/intersight_gosdk/model_recommendation_abstract_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_base.go b/intersight_gosdk/model_recommendation_base.go index 1f7f7751e7..356841372b 100644 --- a/intersight_gosdk/model_recommendation_base.go +++ b/intersight_gosdk/model_recommendation_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_capacity_runway.go b/intersight_gosdk/model_recommendation_capacity_runway.go index 472d31a3fc..28b497c17c 100644 --- a/intersight_gosdk/model_recommendation_capacity_runway.go +++ b/intersight_gosdk/model_recommendation_capacity_runway.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_capacity_runway_list.go b/intersight_gosdk/model_recommendation_capacity_runway_list.go index f8b4d6598b..6e83f5bf06 100644 --- a/intersight_gosdk/model_recommendation_capacity_runway_list.go +++ b/intersight_gosdk/model_recommendation_capacity_runway_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_capacity_runway_relationship.go b/intersight_gosdk/model_recommendation_capacity_runway_relationship.go index 9121e3b631..822e39ce7c 100644 --- a/intersight_gosdk/model_recommendation_capacity_runway_relationship.go +++ b/intersight_gosdk/model_recommendation_capacity_runway_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_capacity_runway_response.go b/intersight_gosdk/model_recommendation_capacity_runway_response.go index d9c42169dd..b942c329ab 100644 --- a/intersight_gosdk/model_recommendation_capacity_runway_response.go +++ b/intersight_gosdk/model_recommendation_capacity_runway_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_cluster_expansion.go b/intersight_gosdk/model_recommendation_cluster_expansion.go index 98f4ddab69..c18943ad00 100644 --- a/intersight_gosdk/model_recommendation_cluster_expansion.go +++ b/intersight_gosdk/model_recommendation_cluster_expansion.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_cluster_expansion_list.go b/intersight_gosdk/model_recommendation_cluster_expansion_list.go index bbeadfd570..0f414dbffd 100644 --- a/intersight_gosdk/model_recommendation_cluster_expansion_list.go +++ b/intersight_gosdk/model_recommendation_cluster_expansion_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_cluster_expansion_relationship.go b/intersight_gosdk/model_recommendation_cluster_expansion_relationship.go index 23493a7ddc..e197e02b73 100644 --- a/intersight_gosdk/model_recommendation_cluster_expansion_relationship.go +++ b/intersight_gosdk/model_recommendation_cluster_expansion_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_cluster_expansion_response.go b/intersight_gosdk/model_recommendation_cluster_expansion_response.go index 70705c9076..8b08a02734 100644 --- a/intersight_gosdk/model_recommendation_cluster_expansion_response.go +++ b/intersight_gosdk/model_recommendation_cluster_expansion_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_expansion_request.go b/intersight_gosdk/model_recommendation_expansion_request.go index 27818d4707..7c06a59b02 100644 --- a/intersight_gosdk/model_recommendation_expansion_request.go +++ b/intersight_gosdk/model_recommendation_expansion_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_hardware_expansion_request.go b/intersight_gosdk/model_recommendation_hardware_expansion_request.go index bf00891c7e..2e3ca0e77b 100644 --- a/intersight_gosdk/model_recommendation_hardware_expansion_request.go +++ b/intersight_gosdk/model_recommendation_hardware_expansion_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_hardware_expansion_request_item.go b/intersight_gosdk/model_recommendation_hardware_expansion_request_item.go index be72fb673b..dbe49453e7 100644 --- a/intersight_gosdk/model_recommendation_hardware_expansion_request_item.go +++ b/intersight_gosdk/model_recommendation_hardware_expansion_request_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_hardware_expansion_request_item_list.go b/intersight_gosdk/model_recommendation_hardware_expansion_request_item_list.go index a70c28dbc7..0445982992 100644 --- a/intersight_gosdk/model_recommendation_hardware_expansion_request_item_list.go +++ b/intersight_gosdk/model_recommendation_hardware_expansion_request_item_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_hardware_expansion_request_item_relationship.go b/intersight_gosdk/model_recommendation_hardware_expansion_request_item_relationship.go index 89cf712157..d0ffdbe8df 100644 --- a/intersight_gosdk/model_recommendation_hardware_expansion_request_item_relationship.go +++ b/intersight_gosdk/model_recommendation_hardware_expansion_request_item_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_hardware_expansion_request_item_response.go b/intersight_gosdk/model_recommendation_hardware_expansion_request_item_response.go index 826d832adb..5efa7e99e6 100644 --- a/intersight_gosdk/model_recommendation_hardware_expansion_request_item_response.go +++ b/intersight_gosdk/model_recommendation_hardware_expansion_request_item_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_hardware_expansion_request_list.go b/intersight_gosdk/model_recommendation_hardware_expansion_request_list.go index 4f94c471c1..70431aef3b 100644 --- a/intersight_gosdk/model_recommendation_hardware_expansion_request_list.go +++ b/intersight_gosdk/model_recommendation_hardware_expansion_request_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_hardware_expansion_request_relationship.go b/intersight_gosdk/model_recommendation_hardware_expansion_request_relationship.go index 2c6a26b670..efebed0fef 100644 --- a/intersight_gosdk/model_recommendation_hardware_expansion_request_relationship.go +++ b/intersight_gosdk/model_recommendation_hardware_expansion_request_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_hardware_expansion_request_response.go b/intersight_gosdk/model_recommendation_hardware_expansion_request_response.go index 62b46b369a..c8ff9fcd01 100644 --- a/intersight_gosdk/model_recommendation_hardware_expansion_request_response.go +++ b/intersight_gosdk/model_recommendation_hardware_expansion_request_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_physical_item.go b/intersight_gosdk/model_recommendation_physical_item.go index 8847898f8c..0c53392b76 100644 --- a/intersight_gosdk/model_recommendation_physical_item.go +++ b/intersight_gosdk/model_recommendation_physical_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_physical_item_list.go b/intersight_gosdk/model_recommendation_physical_item_list.go index 57592d4c2f..52c09e0187 100644 --- a/intersight_gosdk/model_recommendation_physical_item_list.go +++ b/intersight_gosdk/model_recommendation_physical_item_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_physical_item_relationship.go b/intersight_gosdk/model_recommendation_physical_item_relationship.go index 15c64d02b2..79ee2b81ff 100644 --- a/intersight_gosdk/model_recommendation_physical_item_relationship.go +++ b/intersight_gosdk/model_recommendation_physical_item_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_physical_item_response.go b/intersight_gosdk/model_recommendation_physical_item_response.go index 92e44069e3..a586339ebe 100644 --- a/intersight_gosdk/model_recommendation_physical_item_response.go +++ b/intersight_gosdk/model_recommendation_physical_item_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_purchase_order_estimate.go b/intersight_gosdk/model_recommendation_purchase_order_estimate.go index 31dae44971..ca7887c4fe 100644 --- a/intersight_gosdk/model_recommendation_purchase_order_estimate.go +++ b/intersight_gosdk/model_recommendation_purchase_order_estimate.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_purchase_order_estimate_list.go b/intersight_gosdk/model_recommendation_purchase_order_estimate_list.go index a6e6798cde..d9a9a44572 100644 --- a/intersight_gosdk/model_recommendation_purchase_order_estimate_list.go +++ b/intersight_gosdk/model_recommendation_purchase_order_estimate_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_purchase_order_estimate_response.go b/intersight_gosdk/model_recommendation_purchase_order_estimate_response.go index 3034af70f1..f201beb692 100644 --- a/intersight_gosdk/model_recommendation_purchase_order_estimate_response.go +++ b/intersight_gosdk/model_recommendation_purchase_order_estimate_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_purchase_order_list.go b/intersight_gosdk/model_recommendation_purchase_order_list.go index c6b9345552..9c02b947e0 100644 --- a/intersight_gosdk/model_recommendation_purchase_order_list.go +++ b/intersight_gosdk/model_recommendation_purchase_order_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_purchase_order_list_list.go b/intersight_gosdk/model_recommendation_purchase_order_list_list.go index 5c15e36cc5..13d0399dd6 100644 --- a/intersight_gosdk/model_recommendation_purchase_order_list_list.go +++ b/intersight_gosdk/model_recommendation_purchase_order_list_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_purchase_order_list_response.go b/intersight_gosdk/model_recommendation_purchase_order_list_response.go index 366aba99d8..ddf2a53ce1 100644 --- a/intersight_gosdk/model_recommendation_purchase_order_list_response.go +++ b/intersight_gosdk/model_recommendation_purchase_order_list_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_software_item.go b/intersight_gosdk/model_recommendation_software_item.go index b38792f57a..f2c88ddee7 100644 --- a/intersight_gosdk/model_recommendation_software_item.go +++ b/intersight_gosdk/model_recommendation_software_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_software_item_list.go b/intersight_gosdk/model_recommendation_software_item_list.go index 516b5acef7..4fbf680584 100644 --- a/intersight_gosdk/model_recommendation_software_item_list.go +++ b/intersight_gosdk/model_recommendation_software_item_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_software_item_relationship.go b/intersight_gosdk/model_recommendation_software_item_relationship.go index ba798d4b2c..7da9750810 100644 --- a/intersight_gosdk/model_recommendation_software_item_relationship.go +++ b/intersight_gosdk/model_recommendation_software_item_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_software_item_response.go b/intersight_gosdk/model_recommendation_software_item_response.go index 2044993b4a..49dc7703b8 100644 --- a/intersight_gosdk/model_recommendation_software_item_response.go +++ b/intersight_gosdk/model_recommendation_software_item_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_abstract_backup_config.go b/intersight_gosdk/model_recovery_abstract_backup_config.go index e6360ea170..ce04941eff 100644 --- a/intersight_gosdk/model_recovery_abstract_backup_config.go +++ b/intersight_gosdk/model_recovery_abstract_backup_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_abstract_backup_info.go b/intersight_gosdk/model_recovery_abstract_backup_info.go index af3e8d0fdd..be0ed4eddf 100644 --- a/intersight_gosdk/model_recovery_abstract_backup_info.go +++ b/intersight_gosdk/model_recovery_abstract_backup_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_abstract_backup_info_relationship.go b/intersight_gosdk/model_recovery_abstract_backup_info_relationship.go index 664ff969ae..8a010cb284 100644 --- a/intersight_gosdk/model_recovery_abstract_backup_info_relationship.go +++ b/intersight_gosdk/model_recovery_abstract_backup_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_backup_config_policy.go b/intersight_gosdk/model_recovery_backup_config_policy.go index fa5b6e4279..7e398b6755 100644 --- a/intersight_gosdk/model_recovery_backup_config_policy.go +++ b/intersight_gosdk/model_recovery_backup_config_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_backup_config_policy_list.go b/intersight_gosdk/model_recovery_backup_config_policy_list.go index 30316939bb..49a6da9de9 100644 --- a/intersight_gosdk/model_recovery_backup_config_policy_list.go +++ b/intersight_gosdk/model_recovery_backup_config_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_backup_config_policy_relationship.go b/intersight_gosdk/model_recovery_backup_config_policy_relationship.go index 255e61937d..f8912f5ea0 100644 --- a/intersight_gosdk/model_recovery_backup_config_policy_relationship.go +++ b/intersight_gosdk/model_recovery_backup_config_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_backup_config_policy_response.go b/intersight_gosdk/model_recovery_backup_config_policy_response.go index 5af48ba42b..29ba6a9124 100644 --- a/intersight_gosdk/model_recovery_backup_config_policy_response.go +++ b/intersight_gosdk/model_recovery_backup_config_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_backup_profile.go b/intersight_gosdk/model_recovery_backup_profile.go index 27432f2e84..8ca5214b42 100644 --- a/intersight_gosdk/model_recovery_backup_profile.go +++ b/intersight_gosdk/model_recovery_backup_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_backup_profile_list.go b/intersight_gosdk/model_recovery_backup_profile_list.go index f41062f353..def31144cc 100644 --- a/intersight_gosdk/model_recovery_backup_profile_list.go +++ b/intersight_gosdk/model_recovery_backup_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_backup_profile_relationship.go b/intersight_gosdk/model_recovery_backup_profile_relationship.go index 33c75ca959..e58864dcac 100644 --- a/intersight_gosdk/model_recovery_backup_profile_relationship.go +++ b/intersight_gosdk/model_recovery_backup_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_backup_profile_response.go b/intersight_gosdk/model_recovery_backup_profile_response.go index e8937f04d6..62b4c07f0c 100644 --- a/intersight_gosdk/model_recovery_backup_profile_response.go +++ b/intersight_gosdk/model_recovery_backup_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_backup_schedule.go b/intersight_gosdk/model_recovery_backup_schedule.go index 563ee28322..bb6092c88d 100644 --- a/intersight_gosdk/model_recovery_backup_schedule.go +++ b/intersight_gosdk/model_recovery_backup_schedule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_config_params.go b/intersight_gosdk/model_recovery_config_params.go index 34a0fb7b44..a9115f4c21 100644 --- a/intersight_gosdk/model_recovery_config_params.go +++ b/intersight_gosdk/model_recovery_config_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_config_result.go b/intersight_gosdk/model_recovery_config_result.go index 2036f88f35..80ff1f8a03 100644 --- a/intersight_gosdk/model_recovery_config_result.go +++ b/intersight_gosdk/model_recovery_config_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_config_result_entry.go b/intersight_gosdk/model_recovery_config_result_entry.go index 0cae9fa7b5..846f8e358f 100644 --- a/intersight_gosdk/model_recovery_config_result_entry.go +++ b/intersight_gosdk/model_recovery_config_result_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_config_result_entry_list.go b/intersight_gosdk/model_recovery_config_result_entry_list.go index 5beb256ce4..b0ff5dd471 100644 --- a/intersight_gosdk/model_recovery_config_result_entry_list.go +++ b/intersight_gosdk/model_recovery_config_result_entry_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_config_result_entry_relationship.go b/intersight_gosdk/model_recovery_config_result_entry_relationship.go index 51e3598a93..8ae6b398e8 100644 --- a/intersight_gosdk/model_recovery_config_result_entry_relationship.go +++ b/intersight_gosdk/model_recovery_config_result_entry_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_config_result_entry_response.go b/intersight_gosdk/model_recovery_config_result_entry_response.go index c63b5e4016..967033e9b2 100644 --- a/intersight_gosdk/model_recovery_config_result_entry_response.go +++ b/intersight_gosdk/model_recovery_config_result_entry_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_config_result_list.go b/intersight_gosdk/model_recovery_config_result_list.go index 1803f7a530..5d851fc323 100644 --- a/intersight_gosdk/model_recovery_config_result_list.go +++ b/intersight_gosdk/model_recovery_config_result_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_config_result_relationship.go b/intersight_gosdk/model_recovery_config_result_relationship.go index c705dae879..59cb6db2f1 100644 --- a/intersight_gosdk/model_recovery_config_result_relationship.go +++ b/intersight_gosdk/model_recovery_config_result_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_config_result_response.go b/intersight_gosdk/model_recovery_config_result_response.go index cf6d45799f..321cb9a38e 100644 --- a/intersight_gosdk/model_recovery_config_result_response.go +++ b/intersight_gosdk/model_recovery_config_result_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_on_demand_backup.go b/intersight_gosdk/model_recovery_on_demand_backup.go index f8e39c3896..e60fd30780 100644 --- a/intersight_gosdk/model_recovery_on_demand_backup.go +++ b/intersight_gosdk/model_recovery_on_demand_backup.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_on_demand_backup_list.go b/intersight_gosdk/model_recovery_on_demand_backup_list.go index ac2f730c38..46d11e82c7 100644 --- a/intersight_gosdk/model_recovery_on_demand_backup_list.go +++ b/intersight_gosdk/model_recovery_on_demand_backup_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_on_demand_backup_response.go b/intersight_gosdk/model_recovery_on_demand_backup_response.go index d0001d01d7..a87643b461 100644 --- a/intersight_gosdk/model_recovery_on_demand_backup_response.go +++ b/intersight_gosdk/model_recovery_on_demand_backup_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_restore.go b/intersight_gosdk/model_recovery_restore.go index dc933bd270..814efc7696 100644 --- a/intersight_gosdk/model_recovery_restore.go +++ b/intersight_gosdk/model_recovery_restore.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_restore_list.go b/intersight_gosdk/model_recovery_restore_list.go index 871500a693..fa08f71add 100644 --- a/intersight_gosdk/model_recovery_restore_list.go +++ b/intersight_gosdk/model_recovery_restore_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_restore_response.go b/intersight_gosdk/model_recovery_restore_response.go index c4853a0bce..4cacae81dd 100644 --- a/intersight_gosdk/model_recovery_restore_response.go +++ b/intersight_gosdk/model_recovery_restore_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_schedule_config_policy.go b/intersight_gosdk/model_recovery_schedule_config_policy.go index af9e76cbdb..aa1f82dc38 100644 --- a/intersight_gosdk/model_recovery_schedule_config_policy.go +++ b/intersight_gosdk/model_recovery_schedule_config_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_schedule_config_policy_list.go b/intersight_gosdk/model_recovery_schedule_config_policy_list.go index 17d306c3d1..b55b2c744e 100644 --- a/intersight_gosdk/model_recovery_schedule_config_policy_list.go +++ b/intersight_gosdk/model_recovery_schedule_config_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_schedule_config_policy_relationship.go b/intersight_gosdk/model_recovery_schedule_config_policy_relationship.go index 649581b934..031068812f 100644 --- a/intersight_gosdk/model_recovery_schedule_config_policy_relationship.go +++ b/intersight_gosdk/model_recovery_schedule_config_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_schedule_config_policy_response.go b/intersight_gosdk/model_recovery_schedule_config_policy_response.go index 0e69a49634..9966ad82a7 100644 --- a/intersight_gosdk/model_recovery_schedule_config_policy_response.go +++ b/intersight_gosdk/model_recovery_schedule_config_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_abstract_reservation.go b/intersight_gosdk/model_resource_abstract_reservation.go index d9bcf6ad17..5aa6c0b1a5 100644 --- a/intersight_gosdk/model_resource_abstract_reservation.go +++ b/intersight_gosdk/model_resource_abstract_reservation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_group.go b/intersight_gosdk/model_resource_group.go index 5603165749..325d800b75 100644 --- a/intersight_gosdk/model_resource_group.go +++ b/intersight_gosdk/model_resource_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type ResourceGroup struct { // The informative description about the usage of this Resource Group. Description *string `json:"Description,omitempty"` // The name of this resource group. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,128}$"` PerTypeCombinedSelector []ResourcePerTypeCombinedSelector `json:"PerTypeCombinedSelector,omitempty"` // Qualifier shall be used to specify if we want to organize resources using multiple resource group or single For an account, resource groups can be of only one of the above types. (Both the types are mutually exclusive for an account.). * `Allow-Selectors` - Resources will be added to resource groups based on ODATA filter. Multiple resource group can be created to organize resources. * `Allow-All` - All resources will become part of the Resource Group. Only one resource group can be created to organize resources. Qualifier *string `json:"Qualifier,omitempty"` @@ -546,7 +546,7 @@ func (o *ResourceGroup) UnmarshalJSON(data []byte) (err error) { // The informative description about the usage of this Resource Group. Description *string `json:"Description,omitempty"` // The name of this resource group. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,128}$"` PerTypeCombinedSelector []ResourcePerTypeCombinedSelector `json:"PerTypeCombinedSelector,omitempty"` // Qualifier shall be used to specify if we want to organize resources using multiple resource group or single For an account, resource groups can be of only one of the above types. (Both the types are mutually exclusive for an account.). * `Allow-Selectors` - Resources will be added to resource groups based on ODATA filter. Multiple resource group can be created to organize resources. * `Allow-All` - All resources will become part of the Resource Group. Only one resource group can be created to organize resources. Qualifier *string `json:"Qualifier,omitempty"` diff --git a/intersight_gosdk/model_resource_group_list.go b/intersight_gosdk/model_resource_group_list.go index a06be20a64..71b22eed1e 100644 --- a/intersight_gosdk/model_resource_group_list.go +++ b/intersight_gosdk/model_resource_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_group_member.go b/intersight_gosdk/model_resource_group_member.go index 9b0ae77928..6d4a8c8764 100644 --- a/intersight_gosdk/model_resource_group_member.go +++ b/intersight_gosdk/model_resource_group_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_group_member_list.go b/intersight_gosdk/model_resource_group_member_list.go index 1dcca9f690..0790afb5b1 100644 --- a/intersight_gosdk/model_resource_group_member_list.go +++ b/intersight_gosdk/model_resource_group_member_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_group_member_response.go b/intersight_gosdk/model_resource_group_member_response.go index c6b6e8e1a0..2d73bccf90 100644 --- a/intersight_gosdk/model_resource_group_member_response.go +++ b/intersight_gosdk/model_resource_group_member_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_group_relationship.go b/intersight_gosdk/model_resource_group_relationship.go index 80adbf386d..e128323f77 100644 --- a/intersight_gosdk/model_resource_group_relationship.go +++ b/intersight_gosdk/model_resource_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_group_response.go b/intersight_gosdk/model_resource_group_response.go index 9e6cf8e672..f393f168a2 100644 --- a/intersight_gosdk/model_resource_group_response.go +++ b/intersight_gosdk/model_resource_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_license_resource_count.go b/intersight_gosdk/model_resource_license_resource_count.go index 2e4354661f..3437a28929 100644 --- a/intersight_gosdk/model_resource_license_resource_count.go +++ b/intersight_gosdk/model_resource_license_resource_count.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_license_resource_count_list.go b/intersight_gosdk/model_resource_license_resource_count_list.go index 72b36b4683..85aa036986 100644 --- a/intersight_gosdk/model_resource_license_resource_count_list.go +++ b/intersight_gosdk/model_resource_license_resource_count_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_license_resource_count_response.go b/intersight_gosdk/model_resource_license_resource_count_response.go index cb7dc29e0e..856b677a9f 100644 --- a/intersight_gosdk/model_resource_license_resource_count_response.go +++ b/intersight_gosdk/model_resource_license_resource_count_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_membership.go b/intersight_gosdk/model_resource_membership.go index f2b64cd6a2..e8ab7704bf 100644 --- a/intersight_gosdk/model_resource_membership.go +++ b/intersight_gosdk/model_resource_membership.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_membership_holder.go b/intersight_gosdk/model_resource_membership_holder.go index 58e8a0619f..3a94d3480d 100644 --- a/intersight_gosdk/model_resource_membership_holder.go +++ b/intersight_gosdk/model_resource_membership_holder.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_membership_holder_list.go b/intersight_gosdk/model_resource_membership_holder_list.go index 5044f6d11c..2073ab9ce3 100644 --- a/intersight_gosdk/model_resource_membership_holder_list.go +++ b/intersight_gosdk/model_resource_membership_holder_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_membership_holder_relationship.go b/intersight_gosdk/model_resource_membership_holder_relationship.go index b4a8c9160e..6a42122e40 100644 --- a/intersight_gosdk/model_resource_membership_holder_relationship.go +++ b/intersight_gosdk/model_resource_membership_holder_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_membership_holder_response.go b/intersight_gosdk/model_resource_membership_holder_response.go index 65ec9a51f9..9ea5f24838 100644 --- a/intersight_gosdk/model_resource_membership_holder_response.go +++ b/intersight_gosdk/model_resource_membership_holder_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_membership_list.go b/intersight_gosdk/model_resource_membership_list.go index dd639bdb56..5d36c2344f 100644 --- a/intersight_gosdk/model_resource_membership_list.go +++ b/intersight_gosdk/model_resource_membership_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_membership_response.go b/intersight_gosdk/model_resource_membership_response.go index 5d77ed2df9..b025b56316 100644 --- a/intersight_gosdk/model_resource_membership_response.go +++ b/intersight_gosdk/model_resource_membership_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_per_type_combined_selector.go b/intersight_gosdk/model_resource_per_type_combined_selector.go index 436cebc9cf..13b9c2fd54 100644 --- a/intersight_gosdk/model_resource_per_type_combined_selector.go +++ b/intersight_gosdk/model_resource_per_type_combined_selector.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_reservation.go b/intersight_gosdk/model_resource_reservation.go index bc59543a88..02c5f37b3e 100644 --- a/intersight_gosdk/model_resource_reservation.go +++ b/intersight_gosdk/model_resource_reservation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_reservation_list.go b/intersight_gosdk/model_resource_reservation_list.go index d9e8f3614c..9e8283d277 100644 --- a/intersight_gosdk/model_resource_reservation_list.go +++ b/intersight_gosdk/model_resource_reservation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_reservation_relationship.go b/intersight_gosdk/model_resource_reservation_relationship.go index 58a6310a4f..65e7b1023e 100644 --- a/intersight_gosdk/model_resource_reservation_relationship.go +++ b/intersight_gosdk/model_resource_reservation_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_reservation_response.go b/intersight_gosdk/model_resource_reservation_response.go index 964da96ad0..3702983a9c 100644 --- a/intersight_gosdk/model_resource_reservation_response.go +++ b/intersight_gosdk/model_resource_reservation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_selection_criteria.go b/intersight_gosdk/model_resource_selection_criteria.go index c1f5428da3..7d87044194 100644 --- a/intersight_gosdk/model_resource_selection_criteria.go +++ b/intersight_gosdk/model_resource_selection_criteria.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type ResourceSelectionCriteria struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The description of the Resource Selection Criteria. - Description *string `json:"Description,omitempty"` + Description *string `json:"Description,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\x00-\\\\xFF]*$"` // Name of the Resource Selection Criteria. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,128}$"` PlaceHolders []string `json:"PlaceHolders,omitempty"` Selectors []ResourceSelector `json:"Selectors,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` @@ -391,9 +391,9 @@ func (o *ResourceSelectionCriteria) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The description of the Resource Selection Criteria. - Description *string `json:"Description,omitempty"` + Description *string `json:"Description,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\x00-\\\\xFF]*$"` // Name of the Resource Selection Criteria. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,128}$"` PlaceHolders []string `json:"PlaceHolders,omitempty"` Selectors []ResourceSelector `json:"Selectors,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` diff --git a/intersight_gosdk/model_resource_selection_criteria_list.go b/intersight_gosdk/model_resource_selection_criteria_list.go index 76126a40d2..8a3d8c9dce 100644 --- a/intersight_gosdk/model_resource_selection_criteria_list.go +++ b/intersight_gosdk/model_resource_selection_criteria_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_selection_criteria_response.go b/intersight_gosdk/model_resource_selection_criteria_response.go index cc21f8e4dc..e58eb192ab 100644 --- a/intersight_gosdk/model_resource_selection_criteria_response.go +++ b/intersight_gosdk/model_resource_selection_criteria_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_selector.go b/intersight_gosdk/model_resource_selector.go index e371b9b994..1a516999b0 100644 --- a/intersight_gosdk/model_resource_selector.go +++ b/intersight_gosdk/model_resource_selector.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type ResourceSelector struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // ODATA filter to select resources. The group selector may include URLs of individual resource, or OData query with filters that match multiple queries. The URLs must be relative (i.e. do not include the host). - Selector *string `json:"Selector,omitempty"` + Selector *string `json:"Selector,omitempty" validate:"regexp=^$|\\/api\\/v1\\/.*"` AdditionalProperties map[string]interface{} } @@ -233,7 +233,7 @@ func (o *ResourceSelector) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // ODATA filter to select resources. The group selector may include URLs of individual resource, or OData query with filters that match multiple queries. The URLs must be relative (i.e. do not include the host). - Selector *string `json:"Selector,omitempty"` + Selector *string `json:"Selector,omitempty" validate:"regexp=^$|\\/api\\/v1\\/.*"` } varResourceSelectorWithoutEmbeddedStruct := ResourceSelectorWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_resource_shared_resources_info_holder.go b/intersight_gosdk/model_resource_shared_resources_info_holder.go index 3e65180849..6eb58aac66 100644 --- a/intersight_gosdk/model_resource_shared_resources_info_holder.go +++ b/intersight_gosdk/model_resource_shared_resources_info_holder.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_shared_resources_info_holder_list.go b/intersight_gosdk/model_resource_shared_resources_info_holder_list.go index 991002855c..391baf173f 100644 --- a/intersight_gosdk/model_resource_shared_resources_info_holder_list.go +++ b/intersight_gosdk/model_resource_shared_resources_info_holder_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_shared_resources_info_holder_response.go b/intersight_gosdk/model_resource_shared_resources_info_holder_response.go index b61240db93..373ef283ef 100644 --- a/intersight_gosdk/model_resource_shared_resources_info_holder_response.go +++ b/intersight_gosdk/model_resource_shared_resources_info_holder_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_source_to_permission_resources.go b/intersight_gosdk/model_resource_source_to_permission_resources.go index 4fab5e1faa..e465e93c96 100644 --- a/intersight_gosdk/model_resource_source_to_permission_resources.go +++ b/intersight_gosdk/model_resource_source_to_permission_resources.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_source_to_permission_resources_holder.go b/intersight_gosdk/model_resource_source_to_permission_resources_holder.go index 4a73186069..5dba8fcac4 100644 --- a/intersight_gosdk/model_resource_source_to_permission_resources_holder.go +++ b/intersight_gosdk/model_resource_source_to_permission_resources_holder.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_lease.go b/intersight_gosdk/model_resourcepool_lease.go index ee97b15afb..0b7cbab345 100644 --- a/intersight_gosdk/model_resourcepool_lease.go +++ b/intersight_gosdk/model_resourcepool_lease.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_lease_list.go b/intersight_gosdk/model_resourcepool_lease_list.go index da60f2aef9..eea445dc0b 100644 --- a/intersight_gosdk/model_resourcepool_lease_list.go +++ b/intersight_gosdk/model_resourcepool_lease_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_lease_parameters.go b/intersight_gosdk/model_resourcepool_lease_parameters.go index 02a7c4a87f..02af3a8417 100644 --- a/intersight_gosdk/model_resourcepool_lease_parameters.go +++ b/intersight_gosdk/model_resourcepool_lease_parameters.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_lease_relationship.go b/intersight_gosdk/model_resourcepool_lease_relationship.go index d9a0e604f7..4398745617 100644 --- a/intersight_gosdk/model_resourcepool_lease_relationship.go +++ b/intersight_gosdk/model_resourcepool_lease_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_lease_resource.go b/intersight_gosdk/model_resourcepool_lease_resource.go index 2c52ce1346..ca2e4adae6 100644 --- a/intersight_gosdk/model_resourcepool_lease_resource.go +++ b/intersight_gosdk/model_resourcepool_lease_resource.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_lease_resource_list.go b/intersight_gosdk/model_resourcepool_lease_resource_list.go index 392a973020..bf5f4ab38a 100644 --- a/intersight_gosdk/model_resourcepool_lease_resource_list.go +++ b/intersight_gosdk/model_resourcepool_lease_resource_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_lease_resource_relationship.go b/intersight_gosdk/model_resourcepool_lease_resource_relationship.go index d7a3c68f08..d4b53aece2 100644 --- a/intersight_gosdk/model_resourcepool_lease_resource_relationship.go +++ b/intersight_gosdk/model_resourcepool_lease_resource_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_lease_resource_response.go b/intersight_gosdk/model_resourcepool_lease_resource_response.go index 53c29644a1..64bcb91b9b 100644 --- a/intersight_gosdk/model_resourcepool_lease_resource_response.go +++ b/intersight_gosdk/model_resourcepool_lease_resource_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_lease_response.go b/intersight_gosdk/model_resourcepool_lease_response.go index f9fff7a71d..c68ca0599b 100644 --- a/intersight_gosdk/model_resourcepool_lease_response.go +++ b/intersight_gosdk/model_resourcepool_lease_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_membership_reservation.go b/intersight_gosdk/model_resourcepool_membership_reservation.go index f04b7ffd5e..1795a5ffd4 100644 --- a/intersight_gosdk/model_resourcepool_membership_reservation.go +++ b/intersight_gosdk/model_resourcepool_membership_reservation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_membership_reservation_list.go b/intersight_gosdk/model_resourcepool_membership_reservation_list.go index 0ae9d26be6..4e479cce11 100644 --- a/intersight_gosdk/model_resourcepool_membership_reservation_list.go +++ b/intersight_gosdk/model_resourcepool_membership_reservation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_membership_reservation_response.go b/intersight_gosdk/model_resourcepool_membership_reservation_response.go index 97d285de85..fa8bfecb85 100644 --- a/intersight_gosdk/model_resourcepool_membership_reservation_response.go +++ b/intersight_gosdk/model_resourcepool_membership_reservation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_pool.go b/intersight_gosdk/model_resourcepool_pool.go index 8f662920f6..20cd579fba 100644 --- a/intersight_gosdk/model_resourcepool_pool.go +++ b/intersight_gosdk/model_resourcepool_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_pool_list.go b/intersight_gosdk/model_resourcepool_pool_list.go index 2139121d22..a9debb2f26 100644 --- a/intersight_gosdk/model_resourcepool_pool_list.go +++ b/intersight_gosdk/model_resourcepool_pool_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_pool_member.go b/intersight_gosdk/model_resourcepool_pool_member.go index fb0dccbfe1..e8abbe99c5 100644 --- a/intersight_gosdk/model_resourcepool_pool_member.go +++ b/intersight_gosdk/model_resourcepool_pool_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_pool_member_list.go b/intersight_gosdk/model_resourcepool_pool_member_list.go index a9d40be430..9a7cd4032a 100644 --- a/intersight_gosdk/model_resourcepool_pool_member_list.go +++ b/intersight_gosdk/model_resourcepool_pool_member_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_pool_member_relationship.go b/intersight_gosdk/model_resourcepool_pool_member_relationship.go index 17f2018bdf..069044f186 100644 --- a/intersight_gosdk/model_resourcepool_pool_member_relationship.go +++ b/intersight_gosdk/model_resourcepool_pool_member_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_pool_member_response.go b/intersight_gosdk/model_resourcepool_pool_member_response.go index 8c0e12b54e..aa468e0e8c 100644 --- a/intersight_gosdk/model_resourcepool_pool_member_response.go +++ b/intersight_gosdk/model_resourcepool_pool_member_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_pool_relationship.go b/intersight_gosdk/model_resourcepool_pool_relationship.go index 3d4d41e663..865e32017f 100644 --- a/intersight_gosdk/model_resourcepool_pool_relationship.go +++ b/intersight_gosdk/model_resourcepool_pool_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_pool_response.go b/intersight_gosdk/model_resourcepool_pool_response.go index afe55df031..6677e73994 100644 --- a/intersight_gosdk/model_resourcepool_pool_response.go +++ b/intersight_gosdk/model_resourcepool_pool_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_resource_pool_parameters.go b/intersight_gosdk/model_resourcepool_resource_pool_parameters.go index 450c69eba5..457f6f51bb 100644 --- a/intersight_gosdk/model_resourcepool_resource_pool_parameters.go +++ b/intersight_gosdk/model_resourcepool_resource_pool_parameters.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_server_lease_parameters.go b/intersight_gosdk/model_resourcepool_server_lease_parameters.go index 4181823d9e..94ff09afa9 100644 --- a/intersight_gosdk/model_resourcepool_server_lease_parameters.go +++ b/intersight_gosdk/model_resourcepool_server_lease_parameters.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_server_pool_parameters.go b/intersight_gosdk/model_resourcepool_server_pool_parameters.go index a21a5abe4b..89a9ffb1ae 100644 --- a/intersight_gosdk/model_resourcepool_server_pool_parameters.go +++ b/intersight_gosdk/model_resourcepool_server_pool_parameters.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_universe.go b/intersight_gosdk/model_resourcepool_universe.go index ed1cfd7d47..80a6405382 100644 --- a/intersight_gosdk/model_resourcepool_universe.go +++ b/intersight_gosdk/model_resourcepool_universe.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_universe_list.go b/intersight_gosdk/model_resourcepool_universe_list.go index 3d7e816a84..a1321c7776 100644 --- a/intersight_gosdk/model_resourcepool_universe_list.go +++ b/intersight_gosdk/model_resourcepool_universe_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_universe_relationship.go b/intersight_gosdk/model_resourcepool_universe_relationship.go index 36fe793a67..359390db87 100644 --- a/intersight_gosdk/model_resourcepool_universe_relationship.go +++ b/intersight_gosdk/model_resourcepool_universe_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_universe_response.go b/intersight_gosdk/model_resourcepool_universe_response.go index 5c70911108..cc8e60ec41 100644 --- a/intersight_gosdk/model_resourcepool_universe_response.go +++ b/intersight_gosdk/model_resourcepool_universe_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_rproxy_reverse_proxy.go b/intersight_gosdk/model_rproxy_reverse_proxy.go index a3b4b5e0ff..4944210a89 100644 --- a/intersight_gosdk/model_rproxy_reverse_proxy.go +++ b/intersight_gosdk/model_rproxy_reverse_proxy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_scheduler_abstract_scheduling_params.go b/intersight_gosdk/model_scheduler_abstract_scheduling_params.go index 82405857d2..8b42984e94 100644 --- a/intersight_gosdk/model_scheduler_abstract_scheduling_params.go +++ b/intersight_gosdk/model_scheduler_abstract_scheduling_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_scheduler_abstract_task_request.go b/intersight_gosdk/model_scheduler_abstract_task_request.go index b2c0481a92..bf8557b619 100644 --- a/intersight_gosdk/model_scheduler_abstract_task_request.go +++ b/intersight_gosdk/model_scheduler_abstract_task_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_scheduler_base_cadence_params.go b/intersight_gosdk/model_scheduler_base_cadence_params.go index cab911c755..ec6f3733e9 100644 --- a/intersight_gosdk/model_scheduler_base_cadence_params.go +++ b/intersight_gosdk/model_scheduler_base_cadence_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_scheduler_base_monthly_cadence_params.go b/intersight_gosdk/model_scheduler_base_monthly_cadence_params.go index c77c437fd5..26ef905188 100644 --- a/intersight_gosdk/model_scheduler_base_monthly_cadence_params.go +++ b/intersight_gosdk/model_scheduler_base_monthly_cadence_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_scheduler_base_schedule_params.go b/intersight_gosdk/model_scheduler_base_schedule_params.go index 994840a838..fb96e24db1 100644 --- a/intersight_gosdk/model_scheduler_base_schedule_params.go +++ b/intersight_gosdk/model_scheduler_base_schedule_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_scheduler_daily_cadence_params.go b/intersight_gosdk/model_scheduler_daily_cadence_params.go index 417efb559e..ef8d1a2abe 100644 --- a/intersight_gosdk/model_scheduler_daily_cadence_params.go +++ b/intersight_gosdk/model_scheduler_daily_cadence_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_scheduler_every_cadence_params.go b/intersight_gosdk/model_scheduler_every_cadence_params.go index 21fff905d4..7802f9624f 100644 --- a/intersight_gosdk/model_scheduler_every_cadence_params.go +++ b/intersight_gosdk/model_scheduler_every_cadence_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_scheduler_monthly_cadence_params.go b/intersight_gosdk/model_scheduler_monthly_cadence_params.go index 46af307c57..8c36ae9cfd 100644 --- a/intersight_gosdk/model_scheduler_monthly_cadence_params.go +++ b/intersight_gosdk/model_scheduler_monthly_cadence_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_scheduler_monthly_week_day_format.go b/intersight_gosdk/model_scheduler_monthly_week_day_format.go index a74b4df626..dc8c1eacb1 100644 --- a/intersight_gosdk/model_scheduler_monthly_week_day_format.go +++ b/intersight_gosdk/model_scheduler_monthly_week_day_format.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_scheduler_one_time_schedule_params.go b/intersight_gosdk/model_scheduler_one_time_schedule_params.go index 5c7bc00f29..0134864801 100644 --- a/intersight_gosdk/model_scheduler_one_time_schedule_params.go +++ b/intersight_gosdk/model_scheduler_one_time_schedule_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_scheduler_recurring_schedule_params.go b/intersight_gosdk/model_scheduler_recurring_schedule_params.go index 5a2bf986f3..bc66ec9a8e 100644 --- a/intersight_gosdk/model_scheduler_recurring_schedule_params.go +++ b/intersight_gosdk/model_scheduler_recurring_schedule_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_scheduler_rest_stim_task_request.go b/intersight_gosdk/model_scheduler_rest_stim_task_request.go index 139c5a41b7..4a2562f45f 100644 --- a/intersight_gosdk/model_scheduler_rest_stim_task_request.go +++ b/intersight_gosdk/model_scheduler_rest_stim_task_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_scheduler_task_result.go b/intersight_gosdk/model_scheduler_task_result.go index 4a272115a5..aad025f436 100644 --- a/intersight_gosdk/model_scheduler_task_result.go +++ b/intersight_gosdk/model_scheduler_task_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_scheduler_task_result_list.go b/intersight_gosdk/model_scheduler_task_result_list.go index 05701aa291..b3ac414c2f 100644 --- a/intersight_gosdk/model_scheduler_task_result_list.go +++ b/intersight_gosdk/model_scheduler_task_result_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_scheduler_task_result_response.go b/intersight_gosdk/model_scheduler_task_result_response.go index e09d9d6da6..fd26738efd 100644 --- a/intersight_gosdk/model_scheduler_task_result_response.go +++ b/intersight_gosdk/model_scheduler_task_result_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_scheduler_task_result_status.go b/intersight_gosdk/model_scheduler_task_result_status.go index 77f03727d2..26386d67c1 100644 --- a/intersight_gosdk/model_scheduler_task_result_status.go +++ b/intersight_gosdk/model_scheduler_task_result_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_scheduler_task_schedule.go b/intersight_gosdk/model_scheduler_task_schedule.go index c681a2774a..0776d65b23 100644 --- a/intersight_gosdk/model_scheduler_task_schedule.go +++ b/intersight_gosdk/model_scheduler_task_schedule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_scheduler_task_schedule_list.go b/intersight_gosdk/model_scheduler_task_schedule_list.go index c0bc9c22db..9f95e28b9a 100644 --- a/intersight_gosdk/model_scheduler_task_schedule_list.go +++ b/intersight_gosdk/model_scheduler_task_schedule_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_scheduler_task_schedule_relationship.go b/intersight_gosdk/model_scheduler_task_schedule_relationship.go index 51f12293d0..088a36fd25 100644 --- a/intersight_gosdk/model_scheduler_task_schedule_relationship.go +++ b/intersight_gosdk/model_scheduler_task_schedule_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_scheduler_task_schedule_response.go b/intersight_gosdk/model_scheduler_task_schedule_response.go index 97779d5944..2806e1bb32 100644 --- a/intersight_gosdk/model_scheduler_task_schedule_response.go +++ b/intersight_gosdk/model_scheduler_task_schedule_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_scheduler_task_schedule_status.go b/intersight_gosdk/model_scheduler_task_schedule_status.go index d7835f7b2b..4a18b37441 100644 --- a/intersight_gosdk/model_scheduler_task_schedule_status.go +++ b/intersight_gosdk/model_scheduler_task_schedule_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_scheduler_weekly_cadence_params.go b/intersight_gosdk/model_scheduler_weekly_cadence_params.go index 1b42cf7ce0..e90304125c 100644 --- a/intersight_gosdk/model_scheduler_weekly_cadence_params.go +++ b/intersight_gosdk/model_scheduler_weekly_cadence_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_scheduler_yearly_cadence_params.go b/intersight_gosdk/model_scheduler_yearly_cadence_params.go index 36c107aeae..81c08f608b 100644 --- a/intersight_gosdk/model_scheduler_yearly_cadence_params.go +++ b/intersight_gosdk/model_scheduler_yearly_cadence_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdaaci_connection.go b/intersight_gosdk/model_sdaaci_connection.go index e8f51eb974..7b0ce3fc97 100644 --- a/intersight_gosdk/model_sdaaci_connection.go +++ b/intersight_gosdk/model_sdaaci_connection.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -39,7 +39,7 @@ type SdaaciConnection struct { // Application EPG Name of this connection. Epg *string `json:"Epg,omitempty"` // EPG Subnet Ipv4Cidr which is configured on APIC. - EpgSubnet *string `json:"EpgSubnet,omitempty"` + EpgSubnet *string `json:"EpgSubnet,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Device within the selected domain used to configure Firewall. FirewallDevice *string `json:"FirewallDevice,omitempty"` // Domain used to configure Firewall. @@ -916,7 +916,7 @@ func (o *SdaaciConnection) UnmarshalJSON(data []byte) (err error) { // Application EPG Name of this connection. Epg *string `json:"Epg,omitempty"` // EPG Subnet Ipv4Cidr which is configured on APIC. - EpgSubnet *string `json:"EpgSubnet,omitempty"` + EpgSubnet *string `json:"EpgSubnet,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Device within the selected domain used to configure Firewall. FirewallDevice *string `json:"FirewallDevice,omitempty"` // Domain used to configure Firewall. diff --git a/intersight_gosdk/model_sdaaci_connection_detail.go b/intersight_gosdk/model_sdaaci_connection_detail.go index fc54f61e90..a35a4dcf11 100644 --- a/intersight_gosdk/model_sdaaci_connection_detail.go +++ b/intersight_gosdk/model_sdaaci_connection_detail.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -37,7 +37,7 @@ type SdaaciConnectionDetail struct { // Interface id configured on Peer A. PeerAinterface *string `json:"PeerAinterface,omitempty"` // The IP Address of the device used as the local peer. - PeerAipAddress *string `json:"PeerAipAddress,omitempty"` + PeerAipAddress *string `json:"PeerAipAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Type of device used as Peer A for this peer connection. PeerAtype *string `json:"PeerAtype,omitempty"` // Interface id configured on Peer B. @@ -736,7 +736,7 @@ func (o *SdaaciConnectionDetail) UnmarshalJSON(data []byte) (err error) { // Interface id configured on Peer A. PeerAinterface *string `json:"PeerAinterface,omitempty"` // The IP Address of the device used as the local peer. - PeerAipAddress *string `json:"PeerAipAddress,omitempty"` + PeerAipAddress *string `json:"PeerAipAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Type of device used as Peer A for this peer connection. PeerAtype *string `json:"PeerAtype,omitempty"` // Interface id configured on Peer B. diff --git a/intersight_gosdk/model_sdaaci_connection_detail_list.go b/intersight_gosdk/model_sdaaci_connection_detail_list.go index f0afb0de2b..c285f08fb3 100644 --- a/intersight_gosdk/model_sdaaci_connection_detail_list.go +++ b/intersight_gosdk/model_sdaaci_connection_detail_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdaaci_connection_detail_response.go b/intersight_gosdk/model_sdaaci_connection_detail_response.go index d48996eb27..bda99fcedc 100644 --- a/intersight_gosdk/model_sdaaci_connection_detail_response.go +++ b/intersight_gosdk/model_sdaaci_connection_detail_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdaaci_connection_list.go b/intersight_gosdk/model_sdaaci_connection_list.go index 67926478ad..910c0be91c 100644 --- a/intersight_gosdk/model_sdaaci_connection_list.go +++ b/intersight_gosdk/model_sdaaci_connection_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdaaci_connection_relationship.go b/intersight_gosdk/model_sdaaci_connection_relationship.go index 7efa40dd02..787d8c3b50 100644 --- a/intersight_gosdk/model_sdaaci_connection_relationship.go +++ b/intersight_gosdk/model_sdaaci_connection_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdaaci_connection_response.go b/intersight_gosdk/model_sdaaci_connection_response.go index 4607e3f22f..bbea4c99a2 100644 --- a/intersight_gosdk/model_sdaaci_connection_response.go +++ b/intersight_gosdk/model_sdaaci_connection_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdcard_diagnostics.go b/intersight_gosdk/model_sdcard_diagnostics.go index 5ef837eacc..99d66f96c0 100644 --- a/intersight_gosdk/model_sdcard_diagnostics.go +++ b/intersight_gosdk/model_sdcard_diagnostics.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdcard_drivers.go b/intersight_gosdk/model_sdcard_drivers.go index 48ffac058f..341a36042c 100644 --- a/intersight_gosdk/model_sdcard_drivers.go +++ b/intersight_gosdk/model_sdcard_drivers.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdcard_host_upgrade_utility.go b/intersight_gosdk/model_sdcard_host_upgrade_utility.go index 3f2b112250..48aed978da 100644 --- a/intersight_gosdk/model_sdcard_host_upgrade_utility.go +++ b/intersight_gosdk/model_sdcard_host_upgrade_utility.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdcard_operating_system.go b/intersight_gosdk/model_sdcard_operating_system.go index 7d0b015294..88082541aa 100644 --- a/intersight_gosdk/model_sdcard_operating_system.go +++ b/intersight_gosdk/model_sdcard_operating_system.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdcard_partition.go b/intersight_gosdk/model_sdcard_partition.go index 3e0f98923c..2ab5b1aed2 100644 --- a/intersight_gosdk/model_sdcard_partition.go +++ b/intersight_gosdk/model_sdcard_partition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdcard_policy.go b/intersight_gosdk/model_sdcard_policy.go index 548e0454b7..4cd076146d 100644 --- a/intersight_gosdk/model_sdcard_policy.go +++ b/intersight_gosdk/model_sdcard_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdcard_policy_inventory.go b/intersight_gosdk/model_sdcard_policy_inventory.go index 773c27f8ed..2039502cc9 100644 --- a/intersight_gosdk/model_sdcard_policy_inventory.go +++ b/intersight_gosdk/model_sdcard_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdcard_policy_inventory_list.go b/intersight_gosdk/model_sdcard_policy_inventory_list.go index 8db8b96005..3ef0e449d4 100644 --- a/intersight_gosdk/model_sdcard_policy_inventory_list.go +++ b/intersight_gosdk/model_sdcard_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdcard_policy_inventory_response.go b/intersight_gosdk/model_sdcard_policy_inventory_response.go index 4ec89e7fed..7c7efa1346 100644 --- a/intersight_gosdk/model_sdcard_policy_inventory_response.go +++ b/intersight_gosdk/model_sdcard_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdcard_policy_list.go b/intersight_gosdk/model_sdcard_policy_list.go index b0abec83b8..f2243a79b5 100644 --- a/intersight_gosdk/model_sdcard_policy_list.go +++ b/intersight_gosdk/model_sdcard_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdcard_policy_response.go b/intersight_gosdk/model_sdcard_policy_response.go index bd58341783..294466ca3e 100644 --- a/intersight_gosdk/model_sdcard_policy_response.go +++ b/intersight_gosdk/model_sdcard_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdcard_server_configuration_utility.go b/intersight_gosdk/model_sdcard_server_configuration_utility.go index 8fdf708301..0e1f2da1b3 100644 --- a/intersight_gosdk/model_sdcard_server_configuration_utility.go +++ b/intersight_gosdk/model_sdcard_server_configuration_utility.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdcard_user_partition.go b/intersight_gosdk/model_sdcard_user_partition.go index 812283d0a8..6063800b51 100644 --- a/intersight_gosdk/model_sdcard_user_partition.go +++ b/intersight_gosdk/model_sdcard_user_partition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdcard_virtual_drive.go b/intersight_gosdk/model_sdcard_virtual_drive.go index bc01c8d693..b24d11647c 100644 --- a/intersight_gosdk/model_sdcard_virtual_drive.go +++ b/intersight_gosdk/model_sdcard_virtual_drive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_search_search_item.go b/intersight_gosdk/model_search_search_item.go index d6f4e30ed5..32f52f94c8 100644 --- a/intersight_gosdk/model_search_search_item.go +++ b/intersight_gosdk/model_search_search_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_search_search_item_list.go b/intersight_gosdk/model_search_search_item_list.go index 04de7259f0..80d9e2d3d9 100644 --- a/intersight_gosdk/model_search_search_item_list.go +++ b/intersight_gosdk/model_search_search_item_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_search_search_item_response.go b/intersight_gosdk/model_search_search_item_response.go index 3839d44b28..70aa8c16ac 100644 --- a/intersight_gosdk/model_search_search_item_response.go +++ b/intersight_gosdk/model_search_search_item_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_search_suggest_item.go b/intersight_gosdk/model_search_suggest_item.go index 7727179966..2482998a7c 100644 --- a/intersight_gosdk/model_search_suggest_item.go +++ b/intersight_gosdk/model_search_suggest_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_search_suggest_item_list.go b/intersight_gosdk/model_search_suggest_item_list.go index 83852c4e30..d91929c7bd 100644 --- a/intersight_gosdk/model_search_suggest_item_list.go +++ b/intersight_gosdk/model_search_suggest_item_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_search_suggest_item_response.go b/intersight_gosdk/model_search_suggest_item_response.go index d83acdfbe8..af8f5e322e 100644 --- a/intersight_gosdk/model_search_suggest_item_response.go +++ b/intersight_gosdk/model_search_suggest_item_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_search_tag_item.go b/intersight_gosdk/model_search_tag_item.go index 8583861523..8d977c6920 100644 --- a/intersight_gosdk/model_search_tag_item.go +++ b/intersight_gosdk/model_search_tag_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_search_tag_item_list.go b/intersight_gosdk/model_search_tag_item_list.go index 54a76a930d..a87c1cf8a3 100644 --- a/intersight_gosdk/model_search_tag_item_list.go +++ b/intersight_gosdk/model_search_tag_item_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_search_tag_item_response.go b/intersight_gosdk/model_search_tag_item_response.go index 027a9ea825..d296785b97 100644 --- a/intersight_gosdk/model_search_tag_item_response.go +++ b/intersight_gosdk/model_search_tag_item_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_security_unit.go b/intersight_gosdk/model_security_unit.go index 69b7340db1..2129beac3f 100644 --- a/intersight_gosdk/model_security_unit.go +++ b/intersight_gosdk/model_security_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_security_unit_list.go b/intersight_gosdk/model_security_unit_list.go index ea9e37b815..454edadabc 100644 --- a/intersight_gosdk/model_security_unit_list.go +++ b/intersight_gosdk/model_security_unit_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_security_unit_relationship.go b/intersight_gosdk/model_security_unit_relationship.go index 79abe4aa16..3bbf38942a 100644 --- a/intersight_gosdk/model_security_unit_relationship.go +++ b/intersight_gosdk/model_security_unit_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_security_unit_response.go b/intersight_gosdk/model_security_unit_response.go index ddd59437df..d6a7b3e319 100644 --- a/intersight_gosdk/model_security_unit_response.go +++ b/intersight_gosdk/model_security_unit_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_base_profile.go b/intersight_gosdk/model_server_base_profile.go index 72ad26c81e..cf4641ecdb 100644 --- a/intersight_gosdk/model_server_base_profile.go +++ b/intersight_gosdk/model_server_base_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_base_profile_relationship.go b/intersight_gosdk/model_server_base_profile_relationship.go index bee0b95634..cef75e8121 100644 --- a/intersight_gosdk/model_server_base_profile_relationship.go +++ b/intersight_gosdk/model_server_base_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_config_change_detail.go b/intersight_gosdk/model_server_config_change_detail.go index 2fdbf76c5a..fcd5e3e86a 100644 --- a/intersight_gosdk/model_server_config_change_detail.go +++ b/intersight_gosdk/model_server_config_change_detail.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_config_change_detail_list.go b/intersight_gosdk/model_server_config_change_detail_list.go index b55a4f498b..52c5e07e1a 100644 --- a/intersight_gosdk/model_server_config_change_detail_list.go +++ b/intersight_gosdk/model_server_config_change_detail_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_config_change_detail_relationship.go b/intersight_gosdk/model_server_config_change_detail_relationship.go index 8f07b2de70..7db9a4ea51 100644 --- a/intersight_gosdk/model_server_config_change_detail_relationship.go +++ b/intersight_gosdk/model_server_config_change_detail_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_config_change_detail_response.go b/intersight_gosdk/model_server_config_change_detail_response.go index 4a6494905f..6c41c30c7b 100644 --- a/intersight_gosdk/model_server_config_change_detail_response.go +++ b/intersight_gosdk/model_server_config_change_detail_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_config_import.go b/intersight_gosdk/model_server_config_import.go index 31ac8cdc70..35b17920e6 100644 --- a/intersight_gosdk/model_server_config_import.go +++ b/intersight_gosdk/model_server_config_import.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,10 +31,10 @@ type ServerConfigImport struct { // Description of the imported profile. Description *string `json:"Description,omitempty"` // Policy prefix for the policies of the imported server profile. - PolicyPrefix *string `json:"PolicyPrefix,omitempty"` + PolicyPrefix *string `json:"PolicyPrefix,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,32}$"` PolicyTypes []string `json:"PolicyTypes,omitempty"` // Profile name for the imported server profile. - ProfileName *string `json:"ProfileName,omitempty"` + ProfileName *string `json:"ProfileName,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` Server NullableComputeRackUnitRelationship `json:"Server,omitempty"` ServerProfile NullableServerProfileRelationship `json:"ServerProfile,omitempty"` @@ -487,10 +487,10 @@ func (o *ServerConfigImport) UnmarshalJSON(data []byte) (err error) { // Description of the imported profile. Description *string `json:"Description,omitempty"` // Policy prefix for the policies of the imported server profile. - PolicyPrefix *string `json:"PolicyPrefix,omitempty"` + PolicyPrefix *string `json:"PolicyPrefix,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,32}$"` PolicyTypes []string `json:"PolicyTypes,omitempty"` // Profile name for the imported server profile. - ProfileName *string `json:"ProfileName,omitempty"` + ProfileName *string `json:"ProfileName,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` Server NullableComputeRackUnitRelationship `json:"Server,omitempty"` ServerProfile NullableServerProfileRelationship `json:"ServerProfile,omitempty"` diff --git a/intersight_gosdk/model_server_config_import_list.go b/intersight_gosdk/model_server_config_import_list.go index 9175b571ed..70ce768a09 100644 --- a/intersight_gosdk/model_server_config_import_list.go +++ b/intersight_gosdk/model_server_config_import_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_config_import_response.go b/intersight_gosdk/model_server_config_import_response.go index d9b93d096d..4d9b1ab036 100644 --- a/intersight_gosdk/model_server_config_import_response.go +++ b/intersight_gosdk/model_server_config_import_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_config_result.go b/intersight_gosdk/model_server_config_result.go index 37e78558e3..eec66e8455 100644 --- a/intersight_gosdk/model_server_config_result.go +++ b/intersight_gosdk/model_server_config_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_config_result_entry.go b/intersight_gosdk/model_server_config_result_entry.go index 1928fbacb8..3794f84f00 100644 --- a/intersight_gosdk/model_server_config_result_entry.go +++ b/intersight_gosdk/model_server_config_result_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_config_result_entry_list.go b/intersight_gosdk/model_server_config_result_entry_list.go index feb6274627..6bed895291 100644 --- a/intersight_gosdk/model_server_config_result_entry_list.go +++ b/intersight_gosdk/model_server_config_result_entry_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_config_result_entry_relationship.go b/intersight_gosdk/model_server_config_result_entry_relationship.go index f06c3915a4..f303954e3a 100644 --- a/intersight_gosdk/model_server_config_result_entry_relationship.go +++ b/intersight_gosdk/model_server_config_result_entry_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_config_result_entry_response.go b/intersight_gosdk/model_server_config_result_entry_response.go index cc0a648808..c56bddd577 100644 --- a/intersight_gosdk/model_server_config_result_entry_response.go +++ b/intersight_gosdk/model_server_config_result_entry_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_config_result_list.go b/intersight_gosdk/model_server_config_result_list.go index 1232affad0..f40ed223bc 100644 --- a/intersight_gosdk/model_server_config_result_list.go +++ b/intersight_gosdk/model_server_config_result_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_config_result_relationship.go b/intersight_gosdk/model_server_config_result_relationship.go index de39122153..2ea229df70 100644 --- a/intersight_gosdk/model_server_config_result_relationship.go +++ b/intersight_gosdk/model_server_config_result_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_config_result_response.go b/intersight_gosdk/model_server_config_result_response.go index 9d85ca7be9..029ce2415c 100644 --- a/intersight_gosdk/model_server_config_result_response.go +++ b/intersight_gosdk/model_server_config_result_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_disruption.go b/intersight_gosdk/model_server_disruption.go index 4b12094843..cecc75048d 100644 --- a/intersight_gosdk/model_server_disruption.go +++ b/intersight_gosdk/model_server_disruption.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_disruption_list.go b/intersight_gosdk/model_server_disruption_list.go index 47bd609fda..673fc4f92e 100644 --- a/intersight_gosdk/model_server_disruption_list.go +++ b/intersight_gosdk/model_server_disruption_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_disruption_response.go b/intersight_gosdk/model_server_disruption_response.go index a81c79c1bb..657ab69e0f 100644 --- a/intersight_gosdk/model_server_disruption_response.go +++ b/intersight_gosdk/model_server_disruption_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_pending_workflow_trigger.go b/intersight_gosdk/model_server_pending_workflow_trigger.go index d8cd8a19ba..69c9e3c39f 100644 --- a/intersight_gosdk/model_server_pending_workflow_trigger.go +++ b/intersight_gosdk/model_server_pending_workflow_trigger.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_profile.go b/intersight_gosdk/model_server_profile.go index dea307a0ab..483375e3ac 100644 --- a/intersight_gosdk/model_server_profile.go +++ b/intersight_gosdk/model_server_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -43,12 +43,12 @@ type ServerProfile struct { // 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 a Server Profile. Pool is used if a resource pool is attached to a Server Profile. None is used if no server or resource pool is attached to a Server Profile. Slot or Serial pre-assignment is also considered to be None as it is different form of Assign Later. * `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. ServerAssignmentMode *string `json:"ServerAssignmentMode,omitempty"` // Serial number of the server that would be assigned to this pre-assigned Server Profile. It can be any string that adheres to the following constraints: It should start and end with an alphanumeric character. It cannot be more than 20 characters. - ServerPreAssignBySerial *string `json:"ServerPreAssignBySerial,omitempty"` + ServerPreAssignBySerial *string `json:"ServerPreAssignBySerial,omitempty" validate:"regexp=^[a-zA-Z0-9]{0,20}$"` ServerPreAssignBySlot NullableServerServerAssignTypeSlot `json:"ServerPreAssignBySlot,omitempty"` // The UUID address for the server must include UUID prefix xxxxxxxx-xxxx-xxxx along with the UUID suffix of format xxxx-xxxxxxxxxxxx. - StaticUuidAddress *string `json:"StaticUuidAddress,omitempty"` + StaticUuidAddress *string `json:"StaticUuidAddress,omitempty" validate:"regexp=^$|^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"` // User label assigned to the server profile. - UserLabel *string `json:"UserLabel,omitempty"` + UserLabel *string `json:"UserLabel,omitempty" validate:"regexp=^[ !#$%&\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}~a-zA-Z0-9]*$"` // The UUID address that is assigned to the server based on the UUID pool. Uuid *string `json:"Uuid,omitempty"` AssignedServer NullableComputePhysicalRelationship `json:"AssignedServer,omitempty"` @@ -1222,12 +1222,12 @@ func (o *ServerProfile) UnmarshalJSON(data []byte) (err error) { // 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 a Server Profile. Pool is used if a resource pool is attached to a Server Profile. None is used if no server or resource pool is attached to a Server Profile. Slot or Serial pre-assignment is also considered to be None as it is different form of Assign Later. * `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. ServerAssignmentMode *string `json:"ServerAssignmentMode,omitempty"` // Serial number of the server that would be assigned to this pre-assigned Server Profile. It can be any string that adheres to the following constraints: It should start and end with an alphanumeric character. It cannot be more than 20 characters. - ServerPreAssignBySerial *string `json:"ServerPreAssignBySerial,omitempty"` + ServerPreAssignBySerial *string `json:"ServerPreAssignBySerial,omitempty" validate:"regexp=^[a-zA-Z0-9]{0,20}$"` ServerPreAssignBySlot NullableServerServerAssignTypeSlot `json:"ServerPreAssignBySlot,omitempty"` // The UUID address for the server must include UUID prefix xxxxxxxx-xxxx-xxxx along with the UUID suffix of format xxxx-xxxxxxxxxxxx. - StaticUuidAddress *string `json:"StaticUuidAddress,omitempty"` + StaticUuidAddress *string `json:"StaticUuidAddress,omitempty" validate:"regexp=^$|^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"` // User label assigned to the server profile. - UserLabel *string `json:"UserLabel,omitempty"` + UserLabel *string `json:"UserLabel,omitempty" validate:"regexp=^[ !#$%&\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}~a-zA-Z0-9]*$"` // The UUID address that is assigned to the server based on the UUID pool. Uuid *string `json:"Uuid,omitempty"` AssignedServer NullableComputePhysicalRelationship `json:"AssignedServer,omitempty"` diff --git a/intersight_gosdk/model_server_profile_list.go b/intersight_gosdk/model_server_profile_list.go index 9be8ef1fb9..02fc751ba3 100644 --- a/intersight_gosdk/model_server_profile_list.go +++ b/intersight_gosdk/model_server_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_profile_relationship.go b/intersight_gosdk/model_server_profile_relationship.go index bfe3d06ac2..d19e5df4c1 100644 --- a/intersight_gosdk/model_server_profile_relationship.go +++ b/intersight_gosdk/model_server_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_profile_response.go b/intersight_gosdk/model_server_profile_response.go index 9329ab248c..43222ec843 100644 --- a/intersight_gosdk/model_server_profile_response.go +++ b/intersight_gosdk/model_server_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_profile_template.go b/intersight_gosdk/model_server_profile_template.go index 8d02e09d3f..753bd15c67 100644 --- a/intersight_gosdk/model_server_profile_template.go +++ b/intersight_gosdk/model_server_profile_template.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_profile_template_list.go b/intersight_gosdk/model_server_profile_template_list.go index d3bfe825ff..7ff168ac96 100644 --- a/intersight_gosdk/model_server_profile_template_list.go +++ b/intersight_gosdk/model_server_profile_template_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_profile_template_response.go b/intersight_gosdk/model_server_profile_template_response.go index 1efb35044c..eaebf8a86b 100644 --- a/intersight_gosdk/model_server_profile_template_response.go +++ b/intersight_gosdk/model_server_profile_template_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_server_assign_type_slot.go b/intersight_gosdk/model_server_server_assign_type_slot.go index 8c8759eae4..5d6fac6ce1 100644 --- a/intersight_gosdk/model_server_server_assign_type_slot.go +++ b/intersight_gosdk/model_server_server_assign_type_slot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type ServerServerAssignTypeSlot struct { // Chassis-id of the slot that would be assigned to this pre-assigned server profile. ChassisId *int64 `json:"ChassisId,omitempty"` // Domain name of the Fabric Interconnect to which the chassis is or to be connected. It can be any string that adheres to the following constraints: It should start and end with an alphanumeric character. It can have underscores and hyphens. It cannot be more than 30 characters. - DomainName *string `json:"DomainName,omitempty"` + DomainName *string `json:"DomainName,omitempty" validate:"regexp=^[a-zA-Z0-9_\\\\-]{0,30}$"` // Slot-id of the server that would be assigned to this pre-assigned server profile. SlotId *int64 `json:"SlotId,omitempty"` AdditionalProperties map[string]interface{} @@ -317,7 +317,7 @@ func (o *ServerServerAssignTypeSlot) UnmarshalJSON(data []byte) (err error) { // Chassis-id of the slot that would be assigned to this pre-assigned server profile. ChassisId *int64 `json:"ChassisId,omitempty"` // Domain name of the Fabric Interconnect to which the chassis is or to be connected. It can be any string that adheres to the following constraints: It should start and end with an alphanumeric character. It can have underscores and hyphens. It cannot be more than 30 characters. - DomainName *string `json:"DomainName,omitempty"` + DomainName *string `json:"DomainName,omitempty" validate:"regexp=^[a-zA-Z0-9_\\\\-]{0,30}$"` // Slot-id of the server that would be assigned to this pre-assigned server profile. SlotId *int64 `json:"SlotId,omitempty"` } diff --git a/intersight_gosdk/model_serviceitem_base_message.go b/intersight_gosdk/model_serviceitem_base_message.go index 363161d280..f68e1daf64 100644 --- a/intersight_gosdk/model_serviceitem_base_message.go +++ b/intersight_gosdk/model_serviceitem_base_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_serviceitem_health_check_error_element.go b/intersight_gosdk/model_serviceitem_health_check_error_element.go index 882e1fd1ce..5640e02ce4 100644 --- a/intersight_gosdk/model_serviceitem_health_check_error_element.go +++ b/intersight_gosdk/model_serviceitem_health_check_error_element.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_serviceitem_message.go b/intersight_gosdk/model_serviceitem_message.go index c6480b38ac..f3fec8dbe3 100644 --- a/intersight_gosdk/model_serviceitem_message.go +++ b/intersight_gosdk/model_serviceitem_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_serviceitem_selection_criteria_input.go b/intersight_gosdk/model_serviceitem_selection_criteria_input.go index 27381d2f9a..4066fd68d3 100644 --- a/intersight_gosdk/model_serviceitem_selection_criteria_input.go +++ b/intersight_gosdk/model_serviceitem_selection_criteria_input.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_servicenow_change_request.go b/intersight_gosdk/model_servicenow_change_request.go index 80a5faadea..57872ced7c 100644 --- a/intersight_gosdk/model_servicenow_change_request.go +++ b/intersight_gosdk/model_servicenow_change_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_servicenow_change_request_list.go b/intersight_gosdk/model_servicenow_change_request_list.go index e78e663573..3e2ac41400 100644 --- a/intersight_gosdk/model_servicenow_change_request_list.go +++ b/intersight_gosdk/model_servicenow_change_request_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_servicenow_change_request_response.go b/intersight_gosdk/model_servicenow_change_request_response.go index 7e8dacb580..726b95fdc3 100644 --- a/intersight_gosdk/model_servicenow_change_request_response.go +++ b/intersight_gosdk/model_servicenow_change_request_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_servicenow_incident.go b/intersight_gosdk/model_servicenow_incident.go index e0f316fbdd..58e74a0c0f 100644 --- a/intersight_gosdk/model_servicenow_incident.go +++ b/intersight_gosdk/model_servicenow_incident.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_servicenow_incident_list.go b/intersight_gosdk/model_servicenow_incident_list.go index 8487458623..9119a6cf1f 100644 --- a/intersight_gosdk/model_servicenow_incident_list.go +++ b/intersight_gosdk/model_servicenow_incident_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_servicenow_incident_response.go b/intersight_gosdk/model_servicenow_incident_response.go index 0a8cbf22ed..77accbbea0 100644 --- a/intersight_gosdk/model_servicenow_incident_response.go +++ b/intersight_gosdk/model_servicenow_incident_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_servicenow_inventory_entity.go b/intersight_gosdk/model_servicenow_inventory_entity.go index 5c0d2ebc1d..954cb02e0b 100644 --- a/intersight_gosdk/model_servicenow_inventory_entity.go +++ b/intersight_gosdk/model_servicenow_inventory_entity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_servicerequest_message.go b/intersight_gosdk/model_servicerequest_message.go index 9031b71d39..30622c1f45 100644 --- a/intersight_gosdk/model_servicerequest_message.go +++ b/intersight_gosdk/model_servicerequest_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_session_abstract_session.go b/intersight_gosdk/model_session_abstract_session.go index 6a022787a2..df2070aca7 100644 --- a/intersight_gosdk/model_session_abstract_session.go +++ b/intersight_gosdk/model_session_abstract_session.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_session_abstract_session_relationship.go b/intersight_gosdk/model_session_abstract_session_relationship.go index 96eb61a8d8..8f412e22af 100644 --- a/intersight_gosdk/model_session_abstract_session_relationship.go +++ b/intersight_gosdk/model_session_abstract_session_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_session_abstract_sub_session.go b/intersight_gosdk/model_session_abstract_sub_session.go index 7a382de71d..f8c9454a55 100644 --- a/intersight_gosdk/model_session_abstract_sub_session.go +++ b/intersight_gosdk/model_session_abstract_sub_session.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_smtp_policy.go b/intersight_gosdk/model_smtp_policy.go index 194cc263f9..364f886aa9 100644 --- a/intersight_gosdk/model_smtp_policy.go +++ b/intersight_gosdk/model_smtp_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type SmtpPolicy struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Authorization password for the process. - AuthPassword *string `json:"AuthPassword,omitempty"` + AuthPassword *string `json:"AuthPassword,omitempty" validate:"regexp=^[\\\\S+]{0,254}$"` // If enabled, lets user input username and password. EnableAuth *bool `json:"EnableAuth,omitempty"` // If enabled, lets user input valid CA certificates for authorization. @@ -41,7 +41,7 @@ type SmtpPolicy struct { // Minimum fault severity level to receive email notifications. Email notifications are sent for all faults whose severity is equal to or greater than the chosen level. * `critical` - Minimum severity to report is critical. * `condition` - Minimum severity to report is informational. * `warning` - Minimum severity to report is warning. * `minor` - Minimum severity to report is minor. * `major` - Minimum severity to report is major. MinSeverity *string `json:"MinSeverity,omitempty"` // The email address entered here will be displayed as the from address (mail received from address) of all the SMTP mail alerts that are received. If not configured, the hostname of the server is used in the from address field. - SenderEmail *string `json:"SenderEmail,omitempty"` + SenderEmail *string "json:\"SenderEmail,omitempty\" validate:\"regexp=^$|^[a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$\"" // Port number used by the SMTP server for outgoing SMTP communication. SmtpPort *int64 `json:"SmtpPort,omitempty"` SmtpRecipients []string `json:"SmtpRecipients,omitempty"` @@ -802,7 +802,7 @@ func (o *SmtpPolicy) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Authorization password for the process. - AuthPassword *string `json:"AuthPassword,omitempty"` + AuthPassword *string `json:"AuthPassword,omitempty" validate:"regexp=^[\\\\S+]{0,254}$"` // If enabled, lets user input username and password. EnableAuth *bool `json:"EnableAuth,omitempty"` // If enabled, lets user input valid CA certificates for authorization. @@ -814,7 +814,7 @@ func (o *SmtpPolicy) UnmarshalJSON(data []byte) (err error) { // Minimum fault severity level to receive email notifications. Email notifications are sent for all faults whose severity is equal to or greater than the chosen level. * `critical` - Minimum severity to report is critical. * `condition` - Minimum severity to report is informational. * `warning` - Minimum severity to report is warning. * `minor` - Minimum severity to report is minor. * `major` - Minimum severity to report is major. MinSeverity *string `json:"MinSeverity,omitempty"` // The email address entered here will be displayed as the from address (mail received from address) of all the SMTP mail alerts that are received. If not configured, the hostname of the server is used in the from address field. - SenderEmail *string `json:"SenderEmail,omitempty"` + SenderEmail *string "json:\"SenderEmail,omitempty\" validate:\"regexp=^$|^[a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$\"" // Port number used by the SMTP server for outgoing SMTP communication. SmtpPort *int64 `json:"SmtpPort,omitempty"` SmtpRecipients []string `json:"SmtpRecipients,omitempty"` diff --git a/intersight_gosdk/model_smtp_policy_list.go b/intersight_gosdk/model_smtp_policy_list.go index 41d19d6522..c885aadecd 100644 --- a/intersight_gosdk/model_smtp_policy_list.go +++ b/intersight_gosdk/model_smtp_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_smtp_policy_response.go b/intersight_gosdk/model_smtp_policy_response.go index 7c0a2b40c5..bb8b822b24 100644 --- a/intersight_gosdk/model_smtp_policy_response.go +++ b/intersight_gosdk/model_smtp_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_snmp_policy.go b/intersight_gosdk/model_snmp_policy.go index 542c535099..e61dca6cb9 100644 --- a/intersight_gosdk/model_snmp_policy.go +++ b/intersight_gosdk/model_snmp_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type SnmpPolicy struct { // State of the SNMP Policy on the endpoint. If enabled, the endpoint sends SNMP traps to the designated host. Enabled *bool `json:"Enabled,omitempty"` // User-defined unique identification of the static engine. - EngineId *string `json:"EngineId,omitempty"` + EngineId *string `json:"EngineId,omitempty" validate:"regexp=^[^#!&]*$"` // Port on which Cisco IMC SNMP agent runs. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269). SnmpPort *int64 `json:"SnmpPort,omitempty"` SnmpTraps []SnmpTrap `json:"SnmpTraps,omitempty"` @@ -751,7 +751,7 @@ func (o *SnmpPolicy) UnmarshalJSON(data []byte) (err error) { // State of the SNMP Policy on the endpoint. If enabled, the endpoint sends SNMP traps to the designated host. Enabled *bool `json:"Enabled,omitempty"` // User-defined unique identification of the static engine. - EngineId *string `json:"EngineId,omitempty"` + EngineId *string `json:"EngineId,omitempty" validate:"regexp=^[^#!&]*$"` // Port on which Cisco IMC SNMP agent runs. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269). SnmpPort *int64 `json:"SnmpPort,omitempty"` SnmpTraps []SnmpTrap `json:"SnmpTraps,omitempty"` diff --git a/intersight_gosdk/model_snmp_policy_inventory.go b/intersight_gosdk/model_snmp_policy_inventory.go index ed1db55b39..f6c76f9658 100644 --- a/intersight_gosdk/model_snmp_policy_inventory.go +++ b/intersight_gosdk/model_snmp_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type SnmpPolicyInventory struct { // State of the SNMP Policy on the endpoint. If enabled, the endpoint sends SNMP traps to the designated host. Enabled *bool `json:"Enabled,omitempty"` // User-defined unique identification of the static engine. - EngineId *string `json:"EngineId,omitempty"` + EngineId *string `json:"EngineId,omitempty" validate:"regexp=^[^#!&]*$"` // Port on which Cisco IMC SNMP agent runs. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269). SnmpPort *int64 `json:"SnmpPort,omitempty"` SnmpTraps []SnmpTrap `json:"SnmpTraps,omitempty"` @@ -693,7 +693,7 @@ func (o *SnmpPolicyInventory) UnmarshalJSON(data []byte) (err error) { // State of the SNMP Policy on the endpoint. If enabled, the endpoint sends SNMP traps to the designated host. Enabled *bool `json:"Enabled,omitempty"` // User-defined unique identification of the static engine. - EngineId *string `json:"EngineId,omitempty"` + EngineId *string `json:"EngineId,omitempty" validate:"regexp=^[^#!&]*$"` // Port on which Cisco IMC SNMP agent runs. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269). SnmpPort *int64 `json:"SnmpPort,omitempty"` SnmpTraps []SnmpTrap `json:"SnmpTraps,omitempty"` diff --git a/intersight_gosdk/model_snmp_policy_inventory_list.go b/intersight_gosdk/model_snmp_policy_inventory_list.go index c4960c63e6..7b66bfacad 100644 --- a/intersight_gosdk/model_snmp_policy_inventory_list.go +++ b/intersight_gosdk/model_snmp_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_snmp_policy_inventory_response.go b/intersight_gosdk/model_snmp_policy_inventory_response.go index c75c8066a0..f298bc6e0f 100644 --- a/intersight_gosdk/model_snmp_policy_inventory_response.go +++ b/intersight_gosdk/model_snmp_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_snmp_policy_list.go b/intersight_gosdk/model_snmp_policy_list.go index 50245406a6..b98933ef3d 100644 --- a/intersight_gosdk/model_snmp_policy_list.go +++ b/intersight_gosdk/model_snmp_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_snmp_policy_response.go b/intersight_gosdk/model_snmp_policy_response.go index eaa91fe2b2..ffa637eae6 100644 --- a/intersight_gosdk/model_snmp_policy_response.go +++ b/intersight_gosdk/model_snmp_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_snmp_trap.go b/intersight_gosdk/model_snmp_trap.go index 9a77eb7e08..e7e135af20 100644 --- a/intersight_gosdk/model_snmp_trap.go +++ b/intersight_gosdk/model_snmp_trap.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_snmp_user.go b/intersight_gosdk/model_snmp_user.go index 6ccec1074d..266e37d5be 100644 --- a/intersight_gosdk/model_snmp_user.go +++ b/intersight_gosdk/model_snmp_user.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_appliance_distributable.go b/intersight_gosdk/model_software_appliance_distributable.go index 4d7d4440f0..767bcda7c5 100644 --- a/intersight_gosdk/model_software_appliance_distributable.go +++ b/intersight_gosdk/model_software_appliance_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_appliance_distributable_list.go b/intersight_gosdk/model_software_appliance_distributable_list.go index afadc0d768..f26d8ab35c 100644 --- a/intersight_gosdk/model_software_appliance_distributable_list.go +++ b/intersight_gosdk/model_software_appliance_distributable_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_appliance_distributable_response.go b/intersight_gosdk/model_software_appliance_distributable_response.go index 237d4c6173..ee43eb0d7f 100644 --- a/intersight_gosdk/model_software_appliance_distributable_response.go +++ b/intersight_gosdk/model_software_appliance_distributable_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_download_history.go b/intersight_gosdk/model_software_download_history.go index 80cd9521fc..c58d90cf0c 100644 --- a/intersight_gosdk/model_software_download_history.go +++ b/intersight_gosdk/model_software_download_history.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_download_history_list.go b/intersight_gosdk/model_software_download_history_list.go index f7800f78be..ce9adabe01 100644 --- a/intersight_gosdk/model_software_download_history_list.go +++ b/intersight_gosdk/model_software_download_history_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_download_history_response.go b/intersight_gosdk/model_software_download_history_response.go index 12725818e0..6043755f9d 100644 --- a/intersight_gosdk/model_software_download_history_response.go +++ b/intersight_gosdk/model_software_download_history_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_hci_bundle_distributable.go b/intersight_gosdk/model_software_hci_bundle_distributable.go index ec1763d1f1..12af7097d6 100644 --- a/intersight_gosdk/model_software_hci_bundle_distributable.go +++ b/intersight_gosdk/model_software_hci_bundle_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_hci_bundle_distributable_list.go b/intersight_gosdk/model_software_hci_bundle_distributable_list.go index 1c7755cdaf..d1ad2ef227 100644 --- a/intersight_gosdk/model_software_hci_bundle_distributable_list.go +++ b/intersight_gosdk/model_software_hci_bundle_distributable_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_hci_bundle_distributable_response.go b/intersight_gosdk/model_software_hci_bundle_distributable_response.go index 6de6e7b0f6..f7a79fe5e9 100644 --- a/intersight_gosdk/model_software_hci_bundle_distributable_response.go +++ b/intersight_gosdk/model_software_hci_bundle_distributable_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_hci_distributable.go b/intersight_gosdk/model_software_hci_distributable.go index 2a3ec28210..588a8da118 100644 --- a/intersight_gosdk/model_software_hci_distributable.go +++ b/intersight_gosdk/model_software_hci_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_hci_distributable_list.go b/intersight_gosdk/model_software_hci_distributable_list.go index 9baec29604..19da8d680d 100644 --- a/intersight_gosdk/model_software_hci_distributable_list.go +++ b/intersight_gosdk/model_software_hci_distributable_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_hci_distributable_relationship.go b/intersight_gosdk/model_software_hci_distributable_relationship.go index 01a481ab4c..e83077563f 100644 --- a/intersight_gosdk/model_software_hci_distributable_relationship.go +++ b/intersight_gosdk/model_software_hci_distributable_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_hci_distributable_response.go b/intersight_gosdk/model_software_hci_distributable_response.go index ff88ebd773..caa8501e78 100644 --- a/intersight_gosdk/model_software_hci_distributable_response.go +++ b/intersight_gosdk/model_software_hci_distributable_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_hcl_meta.go b/intersight_gosdk/model_software_hcl_meta.go index 7704574e17..aa14f1be48 100644 --- a/intersight_gosdk/model_software_hcl_meta.go +++ b/intersight_gosdk/model_software_hcl_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_hcl_meta_list.go b/intersight_gosdk/model_software_hcl_meta_list.go index 95d013023e..28bbe12e24 100644 --- a/intersight_gosdk/model_software_hcl_meta_list.go +++ b/intersight_gosdk/model_software_hcl_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_hcl_meta_response.go b/intersight_gosdk/model_software_hcl_meta_response.go index 92590d4c3e..d6a75c6eda 100644 --- a/intersight_gosdk/model_software_hcl_meta_response.go +++ b/intersight_gosdk/model_software_hcl_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_hyperflex_bundle_distributable.go b/intersight_gosdk/model_software_hyperflex_bundle_distributable.go index 6558ac4fc0..0f2443b54b 100644 --- a/intersight_gosdk/model_software_hyperflex_bundle_distributable.go +++ b/intersight_gosdk/model_software_hyperflex_bundle_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_hyperflex_bundle_distributable_list.go b/intersight_gosdk/model_software_hyperflex_bundle_distributable_list.go index 5ffaa35ddd..dcc8f583d2 100644 --- a/intersight_gosdk/model_software_hyperflex_bundle_distributable_list.go +++ b/intersight_gosdk/model_software_hyperflex_bundle_distributable_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_hyperflex_bundle_distributable_response.go b/intersight_gosdk/model_software_hyperflex_bundle_distributable_response.go index 4510e351b3..8d968dc7f2 100644 --- a/intersight_gosdk/model_software_hyperflex_bundle_distributable_response.go +++ b/intersight_gosdk/model_software_hyperflex_bundle_distributable_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_hyperflex_distributable.go b/intersight_gosdk/model_software_hyperflex_distributable.go index 41bbbbcdc7..6bd5a09093 100644 --- a/intersight_gosdk/model_software_hyperflex_distributable.go +++ b/intersight_gosdk/model_software_hyperflex_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_hyperflex_distributable_list.go b/intersight_gosdk/model_software_hyperflex_distributable_list.go index 8dc345d6dd..084243aec3 100644 --- a/intersight_gosdk/model_software_hyperflex_distributable_list.go +++ b/intersight_gosdk/model_software_hyperflex_distributable_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_hyperflex_distributable_relationship.go b/intersight_gosdk/model_software_hyperflex_distributable_relationship.go index 1c0fa1aa24..736e90dd66 100644 --- a/intersight_gosdk/model_software_hyperflex_distributable_relationship.go +++ b/intersight_gosdk/model_software_hyperflex_distributable_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_hyperflex_distributable_response.go b/intersight_gosdk/model_software_hyperflex_distributable_response.go index 7d551cf79f..a909584bef 100644 --- a/intersight_gosdk/model_software_hyperflex_distributable_response.go +++ b/intersight_gosdk/model_software_hyperflex_distributable_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_iks_bundle_distributable.go b/intersight_gosdk/model_software_iks_bundle_distributable.go index 50c1f390e4..9e46007b1e 100644 --- a/intersight_gosdk/model_software_iks_bundle_distributable.go +++ b/intersight_gosdk/model_software_iks_bundle_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_iks_bundle_distributable_list.go b/intersight_gosdk/model_software_iks_bundle_distributable_list.go index ebc401715e..73cd7968b1 100644 --- a/intersight_gosdk/model_software_iks_bundle_distributable_list.go +++ b/intersight_gosdk/model_software_iks_bundle_distributable_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_iks_bundle_distributable_response.go b/intersight_gosdk/model_software_iks_bundle_distributable_response.go index cdbc161b0b..9f6b44d5f5 100644 --- a/intersight_gosdk/model_software_iks_bundle_distributable_response.go +++ b/intersight_gosdk/model_software_iks_bundle_distributable_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_release_meta.go b/intersight_gosdk/model_software_release_meta.go index 33ee44c616..58ba6e3b6e 100644 --- a/intersight_gosdk/model_software_release_meta.go +++ b/intersight_gosdk/model_software_release_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_release_meta_list.go b/intersight_gosdk/model_software_release_meta_list.go index d46dcf18e8..ff181e530b 100644 --- a/intersight_gosdk/model_software_release_meta_list.go +++ b/intersight_gosdk/model_software_release_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_release_meta_response.go b/intersight_gosdk/model_software_release_meta_response.go index ddce5282ed..1570180320 100644 --- a/intersight_gosdk/model_software_release_meta_response.go +++ b/intersight_gosdk/model_software_release_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_solution_distributable.go b/intersight_gosdk/model_software_solution_distributable.go index b65ea766fc..aa95de0032 100644 --- a/intersight_gosdk/model_software_solution_distributable.go +++ b/intersight_gosdk/model_software_solution_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_solution_distributable_list.go b/intersight_gosdk/model_software_solution_distributable_list.go index 3e66f1a5bc..10be281666 100644 --- a/intersight_gosdk/model_software_solution_distributable_list.go +++ b/intersight_gosdk/model_software_solution_distributable_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_solution_distributable_relationship.go b/intersight_gosdk/model_software_solution_distributable_relationship.go index f016bea014..ed46a70f0a 100644 --- a/intersight_gosdk/model_software_solution_distributable_relationship.go +++ b/intersight_gosdk/model_software_solution_distributable_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_solution_distributable_response.go b/intersight_gosdk/model_software_solution_distributable_response.go index fd06c9d4c8..9afc1dab45 100644 --- a/intersight_gosdk/model_software_solution_distributable_response.go +++ b/intersight_gosdk/model_software_solution_distributable_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_ucsd_bundle_distributable.go b/intersight_gosdk/model_software_ucsd_bundle_distributable.go index fe5cc076cf..15ff52fccf 100644 --- a/intersight_gosdk/model_software_ucsd_bundle_distributable.go +++ b/intersight_gosdk/model_software_ucsd_bundle_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_ucsd_bundle_distributable_list.go b/intersight_gosdk/model_software_ucsd_bundle_distributable_list.go index 5f7e3cbcb6..b73bfc3c58 100644 --- a/intersight_gosdk/model_software_ucsd_bundle_distributable_list.go +++ b/intersight_gosdk/model_software_ucsd_bundle_distributable_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_ucsd_bundle_distributable_response.go b/intersight_gosdk/model_software_ucsd_bundle_distributable_response.go index b82e3324cd..46fe5ea4a7 100644 --- a/intersight_gosdk/model_software_ucsd_bundle_distributable_response.go +++ b/intersight_gosdk/model_software_ucsd_bundle_distributable_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_ucsd_distributable.go b/intersight_gosdk/model_software_ucsd_distributable.go index 29a8bd8492..9a6e0ee1a2 100644 --- a/intersight_gosdk/model_software_ucsd_distributable.go +++ b/intersight_gosdk/model_software_ucsd_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_ucsd_distributable_list.go b/intersight_gosdk/model_software_ucsd_distributable_list.go index ad64a7a1ca..52493985ad 100644 --- a/intersight_gosdk/model_software_ucsd_distributable_list.go +++ b/intersight_gosdk/model_software_ucsd_distributable_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_ucsd_distributable_relationship.go b/intersight_gosdk/model_software_ucsd_distributable_relationship.go index a6b1279133..a226a66e89 100644 --- a/intersight_gosdk/model_software_ucsd_distributable_relationship.go +++ b/intersight_gosdk/model_software_ucsd_distributable_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_ucsd_distributable_response.go b/intersight_gosdk/model_software_ucsd_distributable_response.go index 3954f84c14..c4e02ac2ff 100644 --- a/intersight_gosdk/model_software_ucsd_distributable_response.go +++ b/intersight_gosdk/model_software_ucsd_distributable_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_appliance_upload.go b/intersight_gosdk/model_softwarerepository_appliance_upload.go index 92761e20f7..4cf06c5c03 100644 --- a/intersight_gosdk/model_softwarerepository_appliance_upload.go +++ b/intersight_gosdk/model_softwarerepository_appliance_upload.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_authorization.go b/intersight_gosdk/model_softwarerepository_authorization.go index 3344ac6e99..df5153afb6 100644 --- a/intersight_gosdk/model_softwarerepository_authorization.go +++ b/intersight_gosdk/model_softwarerepository_authorization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_authorization_list.go b/intersight_gosdk/model_softwarerepository_authorization_list.go index b2efcb81cc..c9f4b71682 100644 --- a/intersight_gosdk/model_softwarerepository_authorization_list.go +++ b/intersight_gosdk/model_softwarerepository_authorization_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_authorization_response.go b/intersight_gosdk/model_softwarerepository_authorization_response.go index 23073a4225..5aa7c95300 100644 --- a/intersight_gosdk/model_softwarerepository_authorization_response.go +++ b/intersight_gosdk/model_softwarerepository_authorization_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_cached_image.go b/intersight_gosdk/model_softwarerepository_cached_image.go index 039aa891d2..0dfc352d46 100644 --- a/intersight_gosdk/model_softwarerepository_cached_image.go +++ b/intersight_gosdk/model_softwarerepository_cached_image.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_cached_image_list.go b/intersight_gosdk/model_softwarerepository_cached_image_list.go index 2ab4463c69..9ab69fce64 100644 --- a/intersight_gosdk/model_softwarerepository_cached_image_list.go +++ b/intersight_gosdk/model_softwarerepository_cached_image_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_cached_image_response.go b/intersight_gosdk/model_softwarerepository_cached_image_response.go index 385e2b2140..d04c43bfe3 100644 --- a/intersight_gosdk/model_softwarerepository_cached_image_response.go +++ b/intersight_gosdk/model_softwarerepository_cached_image_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_catalog.go b/intersight_gosdk/model_softwarerepository_catalog.go index 6bb24904e1..7ecf985b42 100644 --- a/intersight_gosdk/model_softwarerepository_catalog.go +++ b/intersight_gosdk/model_softwarerepository_catalog.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_catalog_list.go b/intersight_gosdk/model_softwarerepository_catalog_list.go index c68a4b23b8..8ab65415bd 100644 --- a/intersight_gosdk/model_softwarerepository_catalog_list.go +++ b/intersight_gosdk/model_softwarerepository_catalog_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_catalog_relationship.go b/intersight_gosdk/model_softwarerepository_catalog_relationship.go index 34a9377a9f..89fb212ff3 100644 --- a/intersight_gosdk/model_softwarerepository_catalog_relationship.go +++ b/intersight_gosdk/model_softwarerepository_catalog_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_catalog_response.go b/intersight_gosdk/model_softwarerepository_catalog_response.go index 09f96c4cc2..e911d1a995 100644 --- a/intersight_gosdk/model_softwarerepository_catalog_response.go +++ b/intersight_gosdk/model_softwarerepository_catalog_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_category_mapper.go b/intersight_gosdk/model_softwarerepository_category_mapper.go index fc720920ab..4af5435683 100644 --- a/intersight_gosdk/model_softwarerepository_category_mapper.go +++ b/intersight_gosdk/model_softwarerepository_category_mapper.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_category_mapper_list.go b/intersight_gosdk/model_softwarerepository_category_mapper_list.go index fa96665ef2..c7e1157a10 100644 --- a/intersight_gosdk/model_softwarerepository_category_mapper_list.go +++ b/intersight_gosdk/model_softwarerepository_category_mapper_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_category_mapper_model.go b/intersight_gosdk/model_softwarerepository_category_mapper_model.go index c67d5c259a..22281cc7b3 100644 --- a/intersight_gosdk/model_softwarerepository_category_mapper_model.go +++ b/intersight_gosdk/model_softwarerepository_category_mapper_model.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_category_mapper_model_list.go b/intersight_gosdk/model_softwarerepository_category_mapper_model_list.go index ad4c93e58a..029e947d99 100644 --- a/intersight_gosdk/model_softwarerepository_category_mapper_model_list.go +++ b/intersight_gosdk/model_softwarerepository_category_mapper_model_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_category_mapper_model_response.go b/intersight_gosdk/model_softwarerepository_category_mapper_model_response.go index 5b59e6124e..64473670e4 100644 --- a/intersight_gosdk/model_softwarerepository_category_mapper_model_response.go +++ b/intersight_gosdk/model_softwarerepository_category_mapper_model_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_category_mapper_response.go b/intersight_gosdk/model_softwarerepository_category_mapper_response.go index 939f58b040..881443b5b1 100644 --- a/intersight_gosdk/model_softwarerepository_category_mapper_response.go +++ b/intersight_gosdk/model_softwarerepository_category_mapper_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_category_support_constraint.go b/intersight_gosdk/model_softwarerepository_category_support_constraint.go index 7ed1b42a55..57b2506799 100644 --- a/intersight_gosdk/model_softwarerepository_category_support_constraint.go +++ b/intersight_gosdk/model_softwarerepository_category_support_constraint.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_category_support_constraint_list.go b/intersight_gosdk/model_softwarerepository_category_support_constraint_list.go index bbd0b2a416..37a4b23614 100644 --- a/intersight_gosdk/model_softwarerepository_category_support_constraint_list.go +++ b/intersight_gosdk/model_softwarerepository_category_support_constraint_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_category_support_constraint_response.go b/intersight_gosdk/model_softwarerepository_category_support_constraint_response.go index ccd61624d1..6c80962a23 100644 --- a/intersight_gosdk/model_softwarerepository_category_support_constraint_response.go +++ b/intersight_gosdk/model_softwarerepository_category_support_constraint_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_category_unsupported_models.go b/intersight_gosdk/model_softwarerepository_category_unsupported_models.go index 4cc1909fa0..925d634be7 100644 --- a/intersight_gosdk/model_softwarerepository_category_unsupported_models.go +++ b/intersight_gosdk/model_softwarerepository_category_unsupported_models.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_category_unsupported_models_list.go b/intersight_gosdk/model_softwarerepository_category_unsupported_models_list.go index fbc805c324..eadd04dada 100644 --- a/intersight_gosdk/model_softwarerepository_category_unsupported_models_list.go +++ b/intersight_gosdk/model_softwarerepository_category_unsupported_models_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_category_unsupported_models_response.go b/intersight_gosdk/model_softwarerepository_category_unsupported_models_response.go index 86d9a38ad8..3665c68b99 100644 --- a/intersight_gosdk/model_softwarerepository_category_unsupported_models_response.go +++ b/intersight_gosdk/model_softwarerepository_category_unsupported_models_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_cifs_server.go b/intersight_gosdk/model_softwarerepository_cifs_server.go index 408920f8d8..c1be8777a6 100644 --- a/intersight_gosdk/model_softwarerepository_cifs_server.go +++ b/intersight_gosdk/model_softwarerepository_cifs_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_constraint_models.go b/intersight_gosdk/model_softwarerepository_constraint_models.go index 5a23a84544..bbb3e512b3 100644 --- a/intersight_gosdk/model_softwarerepository_constraint_models.go +++ b/intersight_gosdk/model_softwarerepository_constraint_models.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_download_spec.go b/intersight_gosdk/model_softwarerepository_download_spec.go index e3c7ec701d..a1d3caeb4e 100644 --- a/intersight_gosdk/model_softwarerepository_download_spec.go +++ b/intersight_gosdk/model_softwarerepository_download_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_download_spec_list.go b/intersight_gosdk/model_softwarerepository_download_spec_list.go index c5658bc3e9..55ea6de399 100644 --- a/intersight_gosdk/model_softwarerepository_download_spec_list.go +++ b/intersight_gosdk/model_softwarerepository_download_spec_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_download_spec_response.go b/intersight_gosdk/model_softwarerepository_download_spec_response.go index 239c409892..c2f5be82c2 100644 --- a/intersight_gosdk/model_softwarerepository_download_spec_response.go +++ b/intersight_gosdk/model_softwarerepository_download_spec_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_file.go b/intersight_gosdk/model_softwarerepository_file.go index e5fb71c3b4..c160e0fedc 100644 --- a/intersight_gosdk/model_softwarerepository_file.go +++ b/intersight_gosdk/model_softwarerepository_file.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_file_relationship.go b/intersight_gosdk/model_softwarerepository_file_relationship.go index 9111d678e7..7581bd46c4 100644 --- a/intersight_gosdk/model_softwarerepository_file_relationship.go +++ b/intersight_gosdk/model_softwarerepository_file_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_file_server.go b/intersight_gosdk/model_softwarerepository_file_server.go index 4406890a32..137385a060 100644 --- a/intersight_gosdk/model_softwarerepository_file_server.go +++ b/intersight_gosdk/model_softwarerepository_file_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_http_server.go b/intersight_gosdk/model_softwarerepository_http_server.go index 82c9ff4d44..28b8b5dce5 100644 --- a/intersight_gosdk/model_softwarerepository_http_server.go +++ b/intersight_gosdk/model_softwarerepository_http_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_import_result.go b/intersight_gosdk/model_softwarerepository_import_result.go index afe95c14dc..950e53ee27 100644 --- a/intersight_gosdk/model_softwarerepository_import_result.go +++ b/intersight_gosdk/model_softwarerepository_import_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_local_machine.go b/intersight_gosdk/model_softwarerepository_local_machine.go index c87f66477b..fb61fbc6fd 100644 --- a/intersight_gosdk/model_softwarerepository_local_machine.go +++ b/intersight_gosdk/model_softwarerepository_local_machine.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_nfs_server.go b/intersight_gosdk/model_softwarerepository_nfs_server.go index 356e5b0dc1..4a26d7a54b 100644 --- a/intersight_gosdk/model_softwarerepository_nfs_server.go +++ b/intersight_gosdk/model_softwarerepository_nfs_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_operating_system_file.go b/intersight_gosdk/model_softwarerepository_operating_system_file.go index b89737de43..c60a156432 100644 --- a/intersight_gosdk/model_softwarerepository_operating_system_file.go +++ b/intersight_gosdk/model_softwarerepository_operating_system_file.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_operating_system_file_list.go b/intersight_gosdk/model_softwarerepository_operating_system_file_list.go index dad42deb97..56b66d90e9 100644 --- a/intersight_gosdk/model_softwarerepository_operating_system_file_list.go +++ b/intersight_gosdk/model_softwarerepository_operating_system_file_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_operating_system_file_relationship.go b/intersight_gosdk/model_softwarerepository_operating_system_file_relationship.go index ea7e5cab92..5e5cd4e1cf 100644 --- a/intersight_gosdk/model_softwarerepository_operating_system_file_relationship.go +++ b/intersight_gosdk/model_softwarerepository_operating_system_file_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_operating_system_file_response.go b/intersight_gosdk/model_softwarerepository_operating_system_file_response.go index 085ce2626a..05fff7bc05 100644 --- a/intersight_gosdk/model_softwarerepository_operating_system_file_response.go +++ b/intersight_gosdk/model_softwarerepository_operating_system_file_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_release.go b/intersight_gosdk/model_softwarerepository_release.go index 25505db67e..938b06ce43 100644 --- a/intersight_gosdk/model_softwarerepository_release.go +++ b/intersight_gosdk/model_softwarerepository_release.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_release_list.go b/intersight_gosdk/model_softwarerepository_release_list.go index a45cd672ec..6527d58501 100644 --- a/intersight_gosdk/model_softwarerepository_release_list.go +++ b/intersight_gosdk/model_softwarerepository_release_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_release_relationship.go b/intersight_gosdk/model_softwarerepository_release_relationship.go index d89f26f870..b3e3e41491 100644 --- a/intersight_gosdk/model_softwarerepository_release_relationship.go +++ b/intersight_gosdk/model_softwarerepository_release_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_release_response.go b/intersight_gosdk/model_softwarerepository_release_response.go index 6db002a150..45ce7cb139 100644 --- a/intersight_gosdk/model_softwarerepository_release_response.go +++ b/intersight_gosdk/model_softwarerepository_release_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_unsupported_model_constraint.go b/intersight_gosdk/model_softwarerepository_unsupported_model_constraint.go index 2657c9d246..d0480551bc 100644 --- a/intersight_gosdk/model_softwarerepository_unsupported_model_constraint.go +++ b/intersight_gosdk/model_softwarerepository_unsupported_model_constraint.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sol_policy.go b/intersight_gosdk/model_sol_policy.go index f016971645..1910b4ea67 100644 --- a/intersight_gosdk/model_sol_policy.go +++ b/intersight_gosdk/model_sol_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sol_policy_inventory.go b/intersight_gosdk/model_sol_policy_inventory.go index 9e0ab2d95c..1f5b9dc0a7 100644 --- a/intersight_gosdk/model_sol_policy_inventory.go +++ b/intersight_gosdk/model_sol_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sol_policy_inventory_list.go b/intersight_gosdk/model_sol_policy_inventory_list.go index 8319f1e8e6..45ad4a9dd2 100644 --- a/intersight_gosdk/model_sol_policy_inventory_list.go +++ b/intersight_gosdk/model_sol_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sol_policy_inventory_response.go b/intersight_gosdk/model_sol_policy_inventory_response.go index f0ccf50fb7..4af710b6ea 100644 --- a/intersight_gosdk/model_sol_policy_inventory_response.go +++ b/intersight_gosdk/model_sol_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sol_policy_list.go b/intersight_gosdk/model_sol_policy_list.go index 364b85c351..36785f59a0 100644 --- a/intersight_gosdk/model_sol_policy_list.go +++ b/intersight_gosdk/model_sol_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sol_policy_response.go b/intersight_gosdk/model_sol_policy_response.go index 0a86bb9e73..868f71ba95 100644 --- a/intersight_gosdk/model_sol_policy_response.go +++ b/intersight_gosdk/model_sol_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ssh_policy.go b/intersight_gosdk/model_ssh_policy.go index 4e3afb6c92..95d58f2130 100644 --- a/intersight_gosdk/model_ssh_policy.go +++ b/intersight_gosdk/model_ssh_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ssh_policy_inventory.go b/intersight_gosdk/model_ssh_policy_inventory.go index 679711fb7a..d50bcc9f79 100644 --- a/intersight_gosdk/model_ssh_policy_inventory.go +++ b/intersight_gosdk/model_ssh_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ssh_policy_inventory_list.go b/intersight_gosdk/model_ssh_policy_inventory_list.go index f39f694406..c322da1726 100644 --- a/intersight_gosdk/model_ssh_policy_inventory_list.go +++ b/intersight_gosdk/model_ssh_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ssh_policy_inventory_response.go b/intersight_gosdk/model_ssh_policy_inventory_response.go index c1e709e159..b04bec89be 100644 --- a/intersight_gosdk/model_ssh_policy_inventory_response.go +++ b/intersight_gosdk/model_ssh_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ssh_policy_list.go b/intersight_gosdk/model_ssh_policy_list.go index 7595a277f4..8831f213a6 100644 --- a/intersight_gosdk/model_ssh_policy_list.go +++ b/intersight_gosdk/model_ssh_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ssh_policy_response.go b/intersight_gosdk/model_ssh_policy_response.go index 8ffd491297..a6ce6ccc8f 100644 --- a/intersight_gosdk/model_ssh_policy_response.go +++ b/intersight_gosdk/model_ssh_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_automatic_drive_group.go b/intersight_gosdk/model_storage_automatic_drive_group.go index c17d02e978..50e2412edc 100644 --- a/intersight_gosdk/model_storage_automatic_drive_group.go +++ b/intersight_gosdk/model_storage_automatic_drive_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type StorageAutomaticDriveGroup struct { // Minimum size of the drive to be used for creating this RAID group. MinimumDriveSize *int64 `json:"MinimumDriveSize,omitempty"` // Number of dedicated hot spare disks for this RAID group. Allowed value is a comma or hyphen separated number range. - NumDedicatedHotSpares *string `json:"NumDedicatedHotSpares,omitempty"` + NumDedicatedHotSpares *string `json:"NumDedicatedHotSpares,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // Number of span groups to be created for this RAID group. Non-nested RAID levels have a single span. NumberOfSpans *int64 `json:"NumberOfSpans,omitempty"` // This flag enables the drive group to use all the remaining drives on the server. @@ -436,7 +436,7 @@ func (o *StorageAutomaticDriveGroup) UnmarshalJSON(data []byte) (err error) { // Minimum size of the drive to be used for creating this RAID group. MinimumDriveSize *int64 `json:"MinimumDriveSize,omitempty"` // Number of dedicated hot spare disks for this RAID group. Allowed value is a comma or hyphen separated number range. - NumDedicatedHotSpares *string `json:"NumDedicatedHotSpares,omitempty"` + NumDedicatedHotSpares *string `json:"NumDedicatedHotSpares,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // Number of span groups to be created for this RAID group. Non-nested RAID levels have a single span. NumberOfSpans *int64 `json:"NumberOfSpans,omitempty"` // This flag enables the drive group to use all the remaining drives on the server. diff --git a/intersight_gosdk/model_storage_base_array.go b/intersight_gosdk/model_storage_base_array.go index b5bf20810c..62bf4b6b9a 100644 --- a/intersight_gosdk/model_storage_base_array.go +++ b/intersight_gosdk/model_storage_base_array.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_array_controller.go b/intersight_gosdk/model_storage_base_array_controller.go index b213cc36a0..dee1e18475 100644 --- a/intersight_gosdk/model_storage_base_array_controller.go +++ b/intersight_gosdk/model_storage_base_array_controller.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_array_disk.go b/intersight_gosdk/model_storage_base_array_disk.go index 8a34bec9ff..ce623481cf 100644 --- a/intersight_gosdk/model_storage_base_array_disk.go +++ b/intersight_gosdk/model_storage_base_array_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_array_relationship.go b/intersight_gosdk/model_storage_base_array_relationship.go index 24a580d3e8..cc7a2a9155 100644 --- a/intersight_gosdk/model_storage_base_array_relationship.go +++ b/intersight_gosdk/model_storage_base_array_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_capacity.go b/intersight_gosdk/model_storage_base_capacity.go index e7311cd17a..ac36750266 100644 --- a/intersight_gosdk/model_storage_base_capacity.go +++ b/intersight_gosdk/model_storage_base_capacity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_cluster.go b/intersight_gosdk/model_storage_base_cluster.go index ef546074d1..445e7b8b4d 100644 --- a/intersight_gosdk/model_storage_base_cluster.go +++ b/intersight_gosdk/model_storage_base_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_cluster_relationship.go b/intersight_gosdk/model_storage_base_cluster_relationship.go index ea76a85d8f..46708ebee7 100644 --- a/intersight_gosdk/model_storage_base_cluster_relationship.go +++ b/intersight_gosdk/model_storage_base_cluster_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_disk_pool.go b/intersight_gosdk/model_storage_base_disk_pool.go index dc69f4a591..637e0a841c 100644 --- a/intersight_gosdk/model_storage_base_disk_pool.go +++ b/intersight_gosdk/model_storage_base_disk_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_host.go b/intersight_gosdk/model_storage_base_host.go index bf8e95b49d..22f1f0480d 100644 --- a/intersight_gosdk/model_storage_base_host.go +++ b/intersight_gosdk/model_storage_base_host.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_host_group.go b/intersight_gosdk/model_storage_base_host_group.go index 82d1f3cd29..f401105f74 100644 --- a/intersight_gosdk/model_storage_base_host_group.go +++ b/intersight_gosdk/model_storage_base_host_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_host_lun.go b/intersight_gosdk/model_storage_base_host_lun.go index b01f487090..da15c9aa90 100644 --- a/intersight_gosdk/model_storage_base_host_lun.go +++ b/intersight_gosdk/model_storage_base_host_lun.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_initiator.go b/intersight_gosdk/model_storage_base_initiator.go index 6104afec2a..054dca45eb 100644 --- a/intersight_gosdk/model_storage_base_initiator.go +++ b/intersight_gosdk/model_storage_base_initiator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_nfs_export.go b/intersight_gosdk/model_storage_base_nfs_export.go index e9ee05a2ae..fce7058202 100644 --- a/intersight_gosdk/model_storage_base_nfs_export.go +++ b/intersight_gosdk/model_storage_base_nfs_export.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type StorageBaseNfsExport struct { // Name of the NFS export in storage array. Name *string `json:"Name,omitempty"` // The uuid of this NFS export. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` AdditionalProperties map[string]interface{} } @@ -272,7 +272,7 @@ func (o *StorageBaseNfsExport) UnmarshalJSON(data []byte) (err error) { // Name of the NFS export in storage array. Name *string `json:"Name,omitempty"` // The uuid of this NFS export. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` } varStorageBaseNfsExportWithoutEmbeddedStruct := StorageBaseNfsExportWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_storage_base_performance_metrics_average.go b/intersight_gosdk/model_storage_base_performance_metrics_average.go index 0d04c0f1ec..028af9beb1 100644 --- a/intersight_gosdk/model_storage_base_performance_metrics_average.go +++ b/intersight_gosdk/model_storage_base_performance_metrics_average.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_physical_port.go b/intersight_gosdk/model_storage_base_physical_port.go index 427d661c6e..298d763b9d 100644 --- a/intersight_gosdk/model_storage_base_physical_port.go +++ b/intersight_gosdk/model_storage_base_physical_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_protection_group.go b/intersight_gosdk/model_storage_base_protection_group.go index 5112af97f2..c8801aade5 100644 --- a/intersight_gosdk/model_storage_base_protection_group.go +++ b/intersight_gosdk/model_storage_base_protection_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_protection_group_snapshot.go b/intersight_gosdk/model_storage_base_protection_group_snapshot.go index 5ff84acdbe..4154399da7 100644 --- a/intersight_gosdk/model_storage_base_protection_group_snapshot.go +++ b/intersight_gosdk/model_storage_base_protection_group_snapshot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_raid_group.go b/intersight_gosdk/model_storage_base_raid_group.go index c1c432eb37..e0296604f6 100644 --- a/intersight_gosdk/model_storage_base_raid_group.go +++ b/intersight_gosdk/model_storage_base_raid_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_replication_blackout.go b/intersight_gosdk/model_storage_base_replication_blackout.go index 4b77c5b4de..74191bf11b 100644 --- a/intersight_gosdk/model_storage_base_replication_blackout.go +++ b/intersight_gosdk/model_storage_base_replication_blackout.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_replication_schedule.go b/intersight_gosdk/model_storage_base_replication_schedule.go index 256df580b3..93d642765a 100644 --- a/intersight_gosdk/model_storage_base_replication_schedule.go +++ b/intersight_gosdk/model_storage_base_replication_schedule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_snapshot.go b/intersight_gosdk/model_storage_base_snapshot.go index f5a1d4fbc9..407ad55178 100644 --- a/intersight_gosdk/model_storage_base_snapshot.go +++ b/intersight_gosdk/model_storage_base_snapshot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_snapshot_schedule.go b/intersight_gosdk/model_storage_base_snapshot_schedule.go index 756af6b3c2..f51c33bf5d 100644 --- a/intersight_gosdk/model_storage_base_snapshot_schedule.go +++ b/intersight_gosdk/model_storage_base_snapshot_schedule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_storage_container.go b/intersight_gosdk/model_storage_base_storage_container.go index 5465b00272..5fd909e87e 100644 --- a/intersight_gosdk/model_storage_base_storage_container.go +++ b/intersight_gosdk/model_storage_base_storage_container.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_target.go b/intersight_gosdk/model_storage_base_target.go index d1ec90466e..31199f18ce 100644 --- a/intersight_gosdk/model_storage_base_target.go +++ b/intersight_gosdk/model_storage_base_target.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_tenant.go b/intersight_gosdk/model_storage_base_tenant.go index db09a86db2..5f3e8a1087 100644 --- a/intersight_gosdk/model_storage_base_tenant.go +++ b/intersight_gosdk/model_storage_base_tenant.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type StorageBaseTenant struct { // The state of this tenant. * `Unknown` - Component state is not available. * `Starting` - Component is being started. * `Running` - Component is currently running. * `Stopping` - Component is being stopped. * `Stopped` - Component has been stopped. * `Deleting` - Component deletion is in progress. State *string `json:"State,omitempty"` // The uuid of this tenant in storage array. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` AdditionalProperties map[string]interface{} } @@ -311,7 +311,7 @@ func (o *StorageBaseTenant) UnmarshalJSON(data []byte) (err error) { // The state of this tenant. * `Unknown` - Component state is not available. * `Starting` - Component is being started. * `Running` - Component is currently running. * `Stopping` - Component is being stopped. * `Stopped` - Component has been stopped. * `Deleting` - Component deletion is in progress. State *string `json:"State,omitempty"` // The uuid of this tenant in storage array. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` } varStorageBaseTenantWithoutEmbeddedStruct := StorageBaseTenantWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_storage_base_volume.go b/intersight_gosdk/model_storage_base_volume.go index 5fd080cfac..21b9d5cc38 100644 --- a/intersight_gosdk/model_storage_base_volume.go +++ b/intersight_gosdk/model_storage_base_volume.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_battery_backup_unit.go b/intersight_gosdk/model_storage_battery_backup_unit.go index 345ba39cf6..089cf9d42c 100644 --- a/intersight_gosdk/model_storage_battery_backup_unit.go +++ b/intersight_gosdk/model_storage_battery_backup_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_battery_backup_unit_list.go b/intersight_gosdk/model_storage_battery_backup_unit_list.go index afde4e1983..a21ffacbc9 100644 --- a/intersight_gosdk/model_storage_battery_backup_unit_list.go +++ b/intersight_gosdk/model_storage_battery_backup_unit_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_battery_backup_unit_relationship.go b/intersight_gosdk/model_storage_battery_backup_unit_relationship.go index c5b9008281..868aa354c2 100644 --- a/intersight_gosdk/model_storage_battery_backup_unit_relationship.go +++ b/intersight_gosdk/model_storage_battery_backup_unit_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_battery_backup_unit_response.go b/intersight_gosdk/model_storage_battery_backup_unit_response.go index ad8f3e1da5..1a1eb4fc9b 100644 --- a/intersight_gosdk/model_storage_battery_backup_unit_response.go +++ b/intersight_gosdk/model_storage_battery_backup_unit_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_controller.go b/intersight_gosdk/model_storage_controller.go index a785059c63..4f1c1d800a 100644 --- a/intersight_gosdk/model_storage_controller.go +++ b/intersight_gosdk/model_storage_controller.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_controller_drive.go b/intersight_gosdk/model_storage_controller_drive.go index 83692fde37..e7bdebd16b 100644 --- a/intersight_gosdk/model_storage_controller_drive.go +++ b/intersight_gosdk/model_storage_controller_drive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_controller_drive_list.go b/intersight_gosdk/model_storage_controller_drive_list.go index 957f3a234b..b089f46bc5 100644 --- a/intersight_gosdk/model_storage_controller_drive_list.go +++ b/intersight_gosdk/model_storage_controller_drive_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_controller_drive_relationship.go b/intersight_gosdk/model_storage_controller_drive_relationship.go index c1492d7830..adc5e49235 100644 --- a/intersight_gosdk/model_storage_controller_drive_relationship.go +++ b/intersight_gosdk/model_storage_controller_drive_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_controller_drive_response.go b/intersight_gosdk/model_storage_controller_drive_response.go index 1185ecbb24..d32284282f 100644 --- a/intersight_gosdk/model_storage_controller_drive_response.go +++ b/intersight_gosdk/model_storage_controller_drive_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_controller_list.go b/intersight_gosdk/model_storage_controller_list.go index 05c136daea..b4c0017748 100644 --- a/intersight_gosdk/model_storage_controller_list.go +++ b/intersight_gosdk/model_storage_controller_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_controller_relationship.go b/intersight_gosdk/model_storage_controller_relationship.go index a40335d79a..eeaeb611b5 100644 --- a/intersight_gosdk/model_storage_controller_relationship.go +++ b/intersight_gosdk/model_storage_controller_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_controller_response.go b/intersight_gosdk/model_storage_controller_response.go index 93f9817204..09b96094ac 100644 --- a/intersight_gosdk/model_storage_controller_response.go +++ b/intersight_gosdk/model_storage_controller_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_disk_group.go b/intersight_gosdk/model_storage_disk_group.go index 7ac0456d1b..ee8b5c9d3e 100644 --- a/intersight_gosdk/model_storage_disk_group.go +++ b/intersight_gosdk/model_storage_disk_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_disk_group_list.go b/intersight_gosdk/model_storage_disk_group_list.go index 70b3409ba9..7dd753cfb5 100644 --- a/intersight_gosdk/model_storage_disk_group_list.go +++ b/intersight_gosdk/model_storage_disk_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_disk_group_relationship.go b/intersight_gosdk/model_storage_disk_group_relationship.go index e50e0fee44..f4594eefc4 100644 --- a/intersight_gosdk/model_storage_disk_group_relationship.go +++ b/intersight_gosdk/model_storage_disk_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_disk_group_response.go b/intersight_gosdk/model_storage_disk_group_response.go index f63888d110..f28c4e57ba 100644 --- a/intersight_gosdk/model_storage_disk_group_response.go +++ b/intersight_gosdk/model_storage_disk_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_disk_slot.go b/intersight_gosdk/model_storage_disk_slot.go index ae17beeef8..df1981cac6 100644 --- a/intersight_gosdk/model_storage_disk_slot.go +++ b/intersight_gosdk/model_storage_disk_slot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_disk_slot_list.go b/intersight_gosdk/model_storage_disk_slot_list.go index e87a007d60..97c6fd89c0 100644 --- a/intersight_gosdk/model_storage_disk_slot_list.go +++ b/intersight_gosdk/model_storage_disk_slot_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_disk_slot_relationship.go b/intersight_gosdk/model_storage_disk_slot_relationship.go index 5a4c8bb00e..dbb73a0cde 100644 --- a/intersight_gosdk/model_storage_disk_slot_relationship.go +++ b/intersight_gosdk/model_storage_disk_slot_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_disk_slot_response.go b/intersight_gosdk/model_storage_disk_slot_response.go index 46c07b5822..35f731fd76 100644 --- a/intersight_gosdk/model_storage_disk_slot_response.go +++ b/intersight_gosdk/model_storage_disk_slot_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_drive_group.go b/intersight_gosdk/model_storage_drive_group.go index 109023177a..8a7075ea48 100644 --- a/intersight_gosdk/model_storage_drive_group.go +++ b/intersight_gosdk/model_storage_drive_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type StorageDriveGroup struct { AutomaticDriveGroup NullableStorageAutomaticDriveGroup `json:"AutomaticDriveGroup,omitempty"` ManualDriveGroup NullableStorageManualDriveGroup `json:"ManualDriveGroup,omitempty"` // The name of the drive group. The name can be between 1 and 64 alphanumeric characters. Spaces or any special characters other than - (hyphen), _ (underscore), : (colon), and . (period) are not allowed. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // The supported RAID level for the disk group. * `Raid0` - RAID 0 Stripe Raid Level. * `Raid1` - RAID 1 Mirror Raid Level. * `Raid5` - RAID 5 Mirror Raid Level. * `Raid6` - RAID 6 Mirror Raid Level. * `Raid10` - RAID 10 Mirror Raid Level. * `Raid50` - RAID 50 Mirror Raid Level. * `Raid60` - RAID 60 Mirror Raid Level. RaidLevel *string `json:"RaidLevel,omitempty"` // Enables/disables the drive encryption on all the drives used in this policy. This flag just enables the drive security and only after remote key setting configured, the actual encryption will be done. @@ -528,7 +528,7 @@ func (o *StorageDriveGroup) UnmarshalJSON(data []byte) (err error) { AutomaticDriveGroup NullableStorageAutomaticDriveGroup `json:"AutomaticDriveGroup,omitempty"` ManualDriveGroup NullableStorageManualDriveGroup `json:"ManualDriveGroup,omitempty"` // The name of the drive group. The name can be between 1 and 64 alphanumeric characters. Spaces or any special characters other than - (hyphen), _ (underscore), : (colon), and . (period) are not allowed. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // The supported RAID level for the disk group. * `Raid0` - RAID 0 Stripe Raid Level. * `Raid1` - RAID 1 Mirror Raid Level. * `Raid5` - RAID 5 Mirror Raid Level. * `Raid6` - RAID 6 Mirror Raid Level. * `Raid10` - RAID 10 Mirror Raid Level. * `Raid50` - RAID 50 Mirror Raid Level. * `Raid60` - RAID 60 Mirror Raid Level. RaidLevel *string `json:"RaidLevel,omitempty"` // Enables/disables the drive encryption on all the drives used in this policy. This flag just enables the drive security and only after remote key setting configured, the actual encryption will be done. diff --git a/intersight_gosdk/model_storage_drive_group_list.go b/intersight_gosdk/model_storage_drive_group_list.go index be2cc495a3..ed0e8b1b31 100644 --- a/intersight_gosdk/model_storage_drive_group_list.go +++ b/intersight_gosdk/model_storage_drive_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_drive_group_relationship.go b/intersight_gosdk/model_storage_drive_group_relationship.go index ea2075bc84..94e8a452e0 100644 --- a/intersight_gosdk/model_storage_drive_group_relationship.go +++ b/intersight_gosdk/model_storage_drive_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_drive_group_response.go b/intersight_gosdk/model_storage_drive_group_response.go index 05edda0cb6..214c3cd63f 100644 --- a/intersight_gosdk/model_storage_drive_group_response.go +++ b/intersight_gosdk/model_storage_drive_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_drive_security_policy.go b/intersight_gosdk/model_storage_drive_security_policy.go index fddb2d8507..8ef9b82e3a 100644 --- a/intersight_gosdk/model_storage_drive_security_policy.go +++ b/intersight_gosdk/model_storage_drive_security_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_drive_security_policy_list.go b/intersight_gosdk/model_storage_drive_security_policy_list.go index 2b12d51a0b..798feccfe9 100644 --- a/intersight_gosdk/model_storage_drive_security_policy_list.go +++ b/intersight_gosdk/model_storage_drive_security_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_drive_security_policy_response.go b/intersight_gosdk/model_storage_drive_security_policy_response.go index ba33cf96c5..f47b34eecc 100644 --- a/intersight_gosdk/model_storage_drive_security_policy_response.go +++ b/intersight_gosdk/model_storage_drive_security_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_enclosure.go b/intersight_gosdk/model_storage_enclosure.go index 2abf836164..ae9c9bf4dd 100644 --- a/intersight_gosdk/model_storage_enclosure.go +++ b/intersight_gosdk/model_storage_enclosure.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_enclosure_disk.go b/intersight_gosdk/model_storage_enclosure_disk.go index 5b8cf8d1d0..7ca1265c89 100644 --- a/intersight_gosdk/model_storage_enclosure_disk.go +++ b/intersight_gosdk/model_storage_enclosure_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_enclosure_disk_list.go b/intersight_gosdk/model_storage_enclosure_disk_list.go index 74fe4b19a4..c63100913b 100644 --- a/intersight_gosdk/model_storage_enclosure_disk_list.go +++ b/intersight_gosdk/model_storage_enclosure_disk_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_enclosure_disk_relationship.go b/intersight_gosdk/model_storage_enclosure_disk_relationship.go index c8cbc15f94..ea1376b3ba 100644 --- a/intersight_gosdk/model_storage_enclosure_disk_relationship.go +++ b/intersight_gosdk/model_storage_enclosure_disk_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_enclosure_disk_response.go b/intersight_gosdk/model_storage_enclosure_disk_response.go index 73e4c9766c..d4f8fcc8e2 100644 --- a/intersight_gosdk/model_storage_enclosure_disk_response.go +++ b/intersight_gosdk/model_storage_enclosure_disk_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_enclosure_disk_slot_ep.go b/intersight_gosdk/model_storage_enclosure_disk_slot_ep.go index 459941f79d..f20ec953a6 100644 --- a/intersight_gosdk/model_storage_enclosure_disk_slot_ep.go +++ b/intersight_gosdk/model_storage_enclosure_disk_slot_ep.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_enclosure_disk_slot_ep_list.go b/intersight_gosdk/model_storage_enclosure_disk_slot_ep_list.go index 2df0303b4f..74fd613e16 100644 --- a/intersight_gosdk/model_storage_enclosure_disk_slot_ep_list.go +++ b/intersight_gosdk/model_storage_enclosure_disk_slot_ep_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_enclosure_disk_slot_ep_relationship.go b/intersight_gosdk/model_storage_enclosure_disk_slot_ep_relationship.go index ecf86e7383..8f54dbea07 100644 --- a/intersight_gosdk/model_storage_enclosure_disk_slot_ep_relationship.go +++ b/intersight_gosdk/model_storage_enclosure_disk_slot_ep_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_enclosure_disk_slot_ep_response.go b/intersight_gosdk/model_storage_enclosure_disk_slot_ep_response.go index 8e2f2791ff..ced3b9635c 100644 --- a/intersight_gosdk/model_storage_enclosure_disk_slot_ep_response.go +++ b/intersight_gosdk/model_storage_enclosure_disk_slot_ep_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_enclosure_list.go b/intersight_gosdk/model_storage_enclosure_list.go index 0d7db2a4b8..9ceb074021 100644 --- a/intersight_gosdk/model_storage_enclosure_list.go +++ b/intersight_gosdk/model_storage_enclosure_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_enclosure_relationship.go b/intersight_gosdk/model_storage_enclosure_relationship.go index a8f760eac6..e83a537038 100644 --- a/intersight_gosdk/model_storage_enclosure_relationship.go +++ b/intersight_gosdk/model_storage_enclosure_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_enclosure_response.go b/intersight_gosdk/model_storage_enclosure_response.go index 25dee26bfa..71e1daca15 100644 --- a/intersight_gosdk/model_storage_enclosure_response.go +++ b/intersight_gosdk/model_storage_enclosure_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_external_lun.go b/intersight_gosdk/model_storage_external_lun.go index de64d09035..b14a2c48f6 100644 --- a/intersight_gosdk/model_storage_external_lun.go +++ b/intersight_gosdk/model_storage_external_lun.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_external_parity_group.go b/intersight_gosdk/model_storage_external_parity_group.go index ad21e1252e..1af812e3a6 100644 --- a/intersight_gosdk/model_storage_external_parity_group.go +++ b/intersight_gosdk/model_storage_external_parity_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_external_path.go b/intersight_gosdk/model_storage_external_path.go index 2407c113be..d5fa2d1101 100644 --- a/intersight_gosdk/model_storage_external_path.go +++ b/intersight_gosdk/model_storage_external_path.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_file_item.go b/intersight_gosdk/model_storage_file_item.go index 6d0b82a552..36cae9bfe7 100644 --- a/intersight_gosdk/model_storage_file_item.go +++ b/intersight_gosdk/model_storage_file_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_file_item_list.go b/intersight_gosdk/model_storage_file_item_list.go index 8d6e7b4857..c7748e64fe 100644 --- a/intersight_gosdk/model_storage_file_item_list.go +++ b/intersight_gosdk/model_storage_file_item_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_file_item_relationship.go b/intersight_gosdk/model_storage_file_item_relationship.go index 4e7c77d245..dce350ba2c 100644 --- a/intersight_gosdk/model_storage_file_item_relationship.go +++ b/intersight_gosdk/model_storage_file_item_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_file_item_response.go b/intersight_gosdk/model_storage_file_item_response.go index b308dbd931..8508faf1bf 100644 --- a/intersight_gosdk/model_storage_file_item_response.go +++ b/intersight_gosdk/model_storage_file_item_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_flash_controller.go b/intersight_gosdk/model_storage_flex_flash_controller.go index 66eac6ccfe..9f287fbe24 100644 --- a/intersight_gosdk/model_storage_flex_flash_controller.go +++ b/intersight_gosdk/model_storage_flex_flash_controller.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_flash_controller_list.go b/intersight_gosdk/model_storage_flex_flash_controller_list.go index 1b711181b1..8b8e76edbb 100644 --- a/intersight_gosdk/model_storage_flex_flash_controller_list.go +++ b/intersight_gosdk/model_storage_flex_flash_controller_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_flash_controller_props.go b/intersight_gosdk/model_storage_flex_flash_controller_props.go index 7294d51030..4aebb10451 100644 --- a/intersight_gosdk/model_storage_flex_flash_controller_props.go +++ b/intersight_gosdk/model_storage_flex_flash_controller_props.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_flash_controller_props_list.go b/intersight_gosdk/model_storage_flex_flash_controller_props_list.go index 056f845533..669ce330b3 100644 --- a/intersight_gosdk/model_storage_flex_flash_controller_props_list.go +++ b/intersight_gosdk/model_storage_flex_flash_controller_props_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_flash_controller_props_relationship.go b/intersight_gosdk/model_storage_flex_flash_controller_props_relationship.go index da9d5d2a01..11a159006d 100644 --- a/intersight_gosdk/model_storage_flex_flash_controller_props_relationship.go +++ b/intersight_gosdk/model_storage_flex_flash_controller_props_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_flash_controller_props_response.go b/intersight_gosdk/model_storage_flex_flash_controller_props_response.go index 0f1cf78fb1..c496053c42 100644 --- a/intersight_gosdk/model_storage_flex_flash_controller_props_response.go +++ b/intersight_gosdk/model_storage_flex_flash_controller_props_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_flash_controller_relationship.go b/intersight_gosdk/model_storage_flex_flash_controller_relationship.go index fc6bfa2e25..7a118e2a42 100644 --- a/intersight_gosdk/model_storage_flex_flash_controller_relationship.go +++ b/intersight_gosdk/model_storage_flex_flash_controller_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_flash_controller_response.go b/intersight_gosdk/model_storage_flex_flash_controller_response.go index 89ce922443..f3093315b3 100644 --- a/intersight_gosdk/model_storage_flex_flash_controller_response.go +++ b/intersight_gosdk/model_storage_flex_flash_controller_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_flash_physical_drive.go b/intersight_gosdk/model_storage_flex_flash_physical_drive.go index c450f4d9d9..557711d26a 100644 --- a/intersight_gosdk/model_storage_flex_flash_physical_drive.go +++ b/intersight_gosdk/model_storage_flex_flash_physical_drive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_flash_physical_drive_list.go b/intersight_gosdk/model_storage_flex_flash_physical_drive_list.go index aa12294b85..1f7025023c 100644 --- a/intersight_gosdk/model_storage_flex_flash_physical_drive_list.go +++ b/intersight_gosdk/model_storage_flex_flash_physical_drive_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_flash_physical_drive_relationship.go b/intersight_gosdk/model_storage_flex_flash_physical_drive_relationship.go index 44c54d0785..d0df7d4467 100644 --- a/intersight_gosdk/model_storage_flex_flash_physical_drive_relationship.go +++ b/intersight_gosdk/model_storage_flex_flash_physical_drive_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_flash_physical_drive_response.go b/intersight_gosdk/model_storage_flex_flash_physical_drive_response.go index 84ac4f1406..6bdc16c6b0 100644 --- a/intersight_gosdk/model_storage_flex_flash_physical_drive_response.go +++ b/intersight_gosdk/model_storage_flex_flash_physical_drive_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_flash_virtual_drive.go b/intersight_gosdk/model_storage_flex_flash_virtual_drive.go index 31080a1dc6..85140e6e9b 100644 --- a/intersight_gosdk/model_storage_flex_flash_virtual_drive.go +++ b/intersight_gosdk/model_storage_flex_flash_virtual_drive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_flash_virtual_drive_list.go b/intersight_gosdk/model_storage_flex_flash_virtual_drive_list.go index 44b035d1e5..8a6d8a1b4b 100644 --- a/intersight_gosdk/model_storage_flex_flash_virtual_drive_list.go +++ b/intersight_gosdk/model_storage_flex_flash_virtual_drive_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_flash_virtual_drive_relationship.go b/intersight_gosdk/model_storage_flex_flash_virtual_drive_relationship.go index 3a96e133eb..e292aa5520 100644 --- a/intersight_gosdk/model_storage_flex_flash_virtual_drive_relationship.go +++ b/intersight_gosdk/model_storage_flex_flash_virtual_drive_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_flash_virtual_drive_response.go b/intersight_gosdk/model_storage_flex_flash_virtual_drive_response.go index aab8fa89dc..184917aa49 100644 --- a/intersight_gosdk/model_storage_flex_flash_virtual_drive_response.go +++ b/intersight_gosdk/model_storage_flex_flash_virtual_drive_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_util_controller.go b/intersight_gosdk/model_storage_flex_util_controller.go index 6c78d93262..603d0d49b1 100644 --- a/intersight_gosdk/model_storage_flex_util_controller.go +++ b/intersight_gosdk/model_storage_flex_util_controller.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_util_controller_list.go b/intersight_gosdk/model_storage_flex_util_controller_list.go index d46420453a..536a31a025 100644 --- a/intersight_gosdk/model_storage_flex_util_controller_list.go +++ b/intersight_gosdk/model_storage_flex_util_controller_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_util_controller_relationship.go b/intersight_gosdk/model_storage_flex_util_controller_relationship.go index 7379c96a54..871495111d 100644 --- a/intersight_gosdk/model_storage_flex_util_controller_relationship.go +++ b/intersight_gosdk/model_storage_flex_util_controller_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_util_controller_response.go b/intersight_gosdk/model_storage_flex_util_controller_response.go index 3206044d5c..8ce5e0e544 100644 --- a/intersight_gosdk/model_storage_flex_util_controller_response.go +++ b/intersight_gosdk/model_storage_flex_util_controller_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_util_physical_drive.go b/intersight_gosdk/model_storage_flex_util_physical_drive.go index 7e875b107f..f8612f2271 100644 --- a/intersight_gosdk/model_storage_flex_util_physical_drive.go +++ b/intersight_gosdk/model_storage_flex_util_physical_drive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_util_physical_drive_list.go b/intersight_gosdk/model_storage_flex_util_physical_drive_list.go index 040090fe38..a31763b296 100644 --- a/intersight_gosdk/model_storage_flex_util_physical_drive_list.go +++ b/intersight_gosdk/model_storage_flex_util_physical_drive_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_util_physical_drive_relationship.go b/intersight_gosdk/model_storage_flex_util_physical_drive_relationship.go index ec9c013b07..002139957b 100644 --- a/intersight_gosdk/model_storage_flex_util_physical_drive_relationship.go +++ b/intersight_gosdk/model_storage_flex_util_physical_drive_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_util_physical_drive_response.go b/intersight_gosdk/model_storage_flex_util_physical_drive_response.go index 0e41fdbfd2..1a7f248e34 100644 --- a/intersight_gosdk/model_storage_flex_util_physical_drive_response.go +++ b/intersight_gosdk/model_storage_flex_util_physical_drive_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_util_virtual_drive.go b/intersight_gosdk/model_storage_flex_util_virtual_drive.go index 44ed458512..71b6a9234c 100644 --- a/intersight_gosdk/model_storage_flex_util_virtual_drive.go +++ b/intersight_gosdk/model_storage_flex_util_virtual_drive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_util_virtual_drive_list.go b/intersight_gosdk/model_storage_flex_util_virtual_drive_list.go index 2a8310b155..cfe2ec3fc5 100644 --- a/intersight_gosdk/model_storage_flex_util_virtual_drive_list.go +++ b/intersight_gosdk/model_storage_flex_util_virtual_drive_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_util_virtual_drive_relationship.go b/intersight_gosdk/model_storage_flex_util_virtual_drive_relationship.go index b4c81cb8ca..0f203ed357 100644 --- a/intersight_gosdk/model_storage_flex_util_virtual_drive_relationship.go +++ b/intersight_gosdk/model_storage_flex_util_virtual_drive_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_flex_util_virtual_drive_response.go b/intersight_gosdk/model_storage_flex_util_virtual_drive_response.go index fe7dde5f89..8caa779b0a 100644 --- a/intersight_gosdk/model_storage_flex_util_virtual_drive_response.go +++ b/intersight_gosdk/model_storage_flex_util_virtual_drive_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_array.go b/intersight_gosdk/model_storage_hitachi_array.go index 50df34fc20..250d531c6b 100644 --- a/intersight_gosdk/model_storage_hitachi_array.go +++ b/intersight_gosdk/model_storage_hitachi_array.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_array_list.go b/intersight_gosdk/model_storage_hitachi_array_list.go index d5060b127c..b600f46d6a 100644 --- a/intersight_gosdk/model_storage_hitachi_array_list.go +++ b/intersight_gosdk/model_storage_hitachi_array_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_array_relationship.go b/intersight_gosdk/model_storage_hitachi_array_relationship.go index 784d22b65d..23bf782860 100644 --- a/intersight_gosdk/model_storage_hitachi_array_relationship.go +++ b/intersight_gosdk/model_storage_hitachi_array_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_array_response.go b/intersight_gosdk/model_storage_hitachi_array_response.go index 30778fc522..d64fd9aca7 100644 --- a/intersight_gosdk/model_storage_hitachi_array_response.go +++ b/intersight_gosdk/model_storage_hitachi_array_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_array_utilization.go b/intersight_gosdk/model_storage_hitachi_array_utilization.go index 3f7e2ef9af..d2b34925e3 100644 --- a/intersight_gosdk/model_storage_hitachi_array_utilization.go +++ b/intersight_gosdk/model_storage_hitachi_array_utilization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_capacity.go b/intersight_gosdk/model_storage_hitachi_capacity.go index 615b7a7fde..68b9190268 100644 --- a/intersight_gosdk/model_storage_hitachi_capacity.go +++ b/intersight_gosdk/model_storage_hitachi_capacity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_controller.go b/intersight_gosdk/model_storage_hitachi_controller.go index 29e06fe4c7..2849d40dcd 100644 --- a/intersight_gosdk/model_storage_hitachi_controller.go +++ b/intersight_gosdk/model_storage_hitachi_controller.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_controller_list.go b/intersight_gosdk/model_storage_hitachi_controller_list.go index 341753a3ab..d8d10a6e08 100644 --- a/intersight_gosdk/model_storage_hitachi_controller_list.go +++ b/intersight_gosdk/model_storage_hitachi_controller_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_controller_response.go b/intersight_gosdk/model_storage_hitachi_controller_response.go index a9b193d673..c39276803f 100644 --- a/intersight_gosdk/model_storage_hitachi_controller_response.go +++ b/intersight_gosdk/model_storage_hitachi_controller_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_disk.go b/intersight_gosdk/model_storage_hitachi_disk.go index c191727d4a..44a6f17b52 100644 --- a/intersight_gosdk/model_storage_hitachi_disk.go +++ b/intersight_gosdk/model_storage_hitachi_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_disk_list.go b/intersight_gosdk/model_storage_hitachi_disk_list.go index 4b04c74d61..1f17f70515 100644 --- a/intersight_gosdk/model_storage_hitachi_disk_list.go +++ b/intersight_gosdk/model_storage_hitachi_disk_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_disk_response.go b/intersight_gosdk/model_storage_hitachi_disk_response.go index 8d218defa7..052de8cae4 100644 --- a/intersight_gosdk/model_storage_hitachi_disk_response.go +++ b/intersight_gosdk/model_storage_hitachi_disk_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_external_parity_group.go b/intersight_gosdk/model_storage_hitachi_external_parity_group.go index 1f54d02373..49a40bfea8 100644 --- a/intersight_gosdk/model_storage_hitachi_external_parity_group.go +++ b/intersight_gosdk/model_storage_hitachi_external_parity_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_external_parity_group_list.go b/intersight_gosdk/model_storage_hitachi_external_parity_group_list.go index 540bcb24fc..08f21cd906 100644 --- a/intersight_gosdk/model_storage_hitachi_external_parity_group_list.go +++ b/intersight_gosdk/model_storage_hitachi_external_parity_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_external_parity_group_response.go b/intersight_gosdk/model_storage_hitachi_external_parity_group_response.go index 4bc9098862..bc3010798e 100644 --- a/intersight_gosdk/model_storage_hitachi_external_parity_group_response.go +++ b/intersight_gosdk/model_storage_hitachi_external_parity_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_external_path_group.go b/intersight_gosdk/model_storage_hitachi_external_path_group.go index fe5cdb2d02..143cc7b84d 100644 --- a/intersight_gosdk/model_storage_hitachi_external_path_group.go +++ b/intersight_gosdk/model_storage_hitachi_external_path_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_external_path_group_list.go b/intersight_gosdk/model_storage_hitachi_external_path_group_list.go index 089cd19493..df127cc47c 100644 --- a/intersight_gosdk/model_storage_hitachi_external_path_group_list.go +++ b/intersight_gosdk/model_storage_hitachi_external_path_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_external_path_group_response.go b/intersight_gosdk/model_storage_hitachi_external_path_group_response.go index abe8ee6f36..75e616ffc5 100644 --- a/intersight_gosdk/model_storage_hitachi_external_path_group_response.go +++ b/intersight_gosdk/model_storage_hitachi_external_path_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_external_storage_lun.go b/intersight_gosdk/model_storage_hitachi_external_storage_lun.go index a3c1ea5716..2aecd86887 100644 --- a/intersight_gosdk/model_storage_hitachi_external_storage_lun.go +++ b/intersight_gosdk/model_storage_hitachi_external_storage_lun.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_external_storage_lun_list.go b/intersight_gosdk/model_storage_hitachi_external_storage_lun_list.go index c76b1c360d..29f4f5a48e 100644 --- a/intersight_gosdk/model_storage_hitachi_external_storage_lun_list.go +++ b/intersight_gosdk/model_storage_hitachi_external_storage_lun_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_external_storage_lun_response.go b/intersight_gosdk/model_storage_hitachi_external_storage_lun_response.go index 80d6e72406..b903acdb52 100644 --- a/intersight_gosdk/model_storage_hitachi_external_storage_lun_response.go +++ b/intersight_gosdk/model_storage_hitachi_external_storage_lun_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_external_storage_port.go b/intersight_gosdk/model_storage_hitachi_external_storage_port.go index cedde840d6..9db760950a 100644 --- a/intersight_gosdk/model_storage_hitachi_external_storage_port.go +++ b/intersight_gosdk/model_storage_hitachi_external_storage_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_external_storage_port_list.go b/intersight_gosdk/model_storage_hitachi_external_storage_port_list.go index 4b878ce09e..8633e48435 100644 --- a/intersight_gosdk/model_storage_hitachi_external_storage_port_list.go +++ b/intersight_gosdk/model_storage_hitachi_external_storage_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_external_storage_port_relationship.go b/intersight_gosdk/model_storage_hitachi_external_storage_port_relationship.go index f36f27dcb1..76beb8dcd4 100644 --- a/intersight_gosdk/model_storage_hitachi_external_storage_port_relationship.go +++ b/intersight_gosdk/model_storage_hitachi_external_storage_port_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_external_storage_port_response.go b/intersight_gosdk/model_storage_hitachi_external_storage_port_response.go index 1908a1746e..da44506a68 100644 --- a/intersight_gosdk/model_storage_hitachi_external_storage_port_response.go +++ b/intersight_gosdk/model_storage_hitachi_external_storage_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_host.go b/intersight_gosdk/model_storage_hitachi_host.go index 6e08731422..9b3fa2850d 100644 --- a/intersight_gosdk/model_storage_hitachi_host.go +++ b/intersight_gosdk/model_storage_hitachi_host.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_host_list.go b/intersight_gosdk/model_storage_hitachi_host_list.go index 4abbe24917..29234173b9 100644 --- a/intersight_gosdk/model_storage_hitachi_host_list.go +++ b/intersight_gosdk/model_storage_hitachi_host_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_host_lun.go b/intersight_gosdk/model_storage_hitachi_host_lun.go index b8357ae1bd..717937d1ed 100644 --- a/intersight_gosdk/model_storage_hitachi_host_lun.go +++ b/intersight_gosdk/model_storage_hitachi_host_lun.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_host_lun_list.go b/intersight_gosdk/model_storage_hitachi_host_lun_list.go index 5600fd65f6..dbc2b6155d 100644 --- a/intersight_gosdk/model_storage_hitachi_host_lun_list.go +++ b/intersight_gosdk/model_storage_hitachi_host_lun_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_host_lun_response.go b/intersight_gosdk/model_storage_hitachi_host_lun_response.go index e179904c7b..b31c919942 100644 --- a/intersight_gosdk/model_storage_hitachi_host_lun_response.go +++ b/intersight_gosdk/model_storage_hitachi_host_lun_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_host_relationship.go b/intersight_gosdk/model_storage_hitachi_host_relationship.go index 3f625ee5cc..c297170cfa 100644 --- a/intersight_gosdk/model_storage_hitachi_host_relationship.go +++ b/intersight_gosdk/model_storage_hitachi_host_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_host_response.go b/intersight_gosdk/model_storage_hitachi_host_response.go index c47cde6aca..4183944a49 100644 --- a/intersight_gosdk/model_storage_hitachi_host_response.go +++ b/intersight_gosdk/model_storage_hitachi_host_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_initiator.go b/intersight_gosdk/model_storage_hitachi_initiator.go index 7dc212c220..d624248a1d 100644 --- a/intersight_gosdk/model_storage_hitachi_initiator.go +++ b/intersight_gosdk/model_storage_hitachi_initiator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_parity_group.go b/intersight_gosdk/model_storage_hitachi_parity_group.go index e96b067435..e9e1624fbd 100644 --- a/intersight_gosdk/model_storage_hitachi_parity_group.go +++ b/intersight_gosdk/model_storage_hitachi_parity_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_parity_group_list.go b/intersight_gosdk/model_storage_hitachi_parity_group_list.go index dbed8dbca5..a50b1f62be 100644 --- a/intersight_gosdk/model_storage_hitachi_parity_group_list.go +++ b/intersight_gosdk/model_storage_hitachi_parity_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_parity_group_relationship.go b/intersight_gosdk/model_storage_hitachi_parity_group_relationship.go index ac3077c099..c41c87e8e6 100644 --- a/intersight_gosdk/model_storage_hitachi_parity_group_relationship.go +++ b/intersight_gosdk/model_storage_hitachi_parity_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_parity_group_response.go b/intersight_gosdk/model_storage_hitachi_parity_group_response.go index ff4727f76b..1bc9259946 100644 --- a/intersight_gosdk/model_storage_hitachi_parity_group_response.go +++ b/intersight_gosdk/model_storage_hitachi_parity_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_pool.go b/intersight_gosdk/model_storage_hitachi_pool.go index c2000819a4..5b451d32ed 100644 --- a/intersight_gosdk/model_storage_hitachi_pool.go +++ b/intersight_gosdk/model_storage_hitachi_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_pool_list.go b/intersight_gosdk/model_storage_hitachi_pool_list.go index 896db0b8f8..42dba6df7d 100644 --- a/intersight_gosdk/model_storage_hitachi_pool_list.go +++ b/intersight_gosdk/model_storage_hitachi_pool_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_pool_relationship.go b/intersight_gosdk/model_storage_hitachi_pool_relationship.go index 5548fd67dc..7c59dea338 100644 --- a/intersight_gosdk/model_storage_hitachi_pool_relationship.go +++ b/intersight_gosdk/model_storage_hitachi_pool_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_pool_response.go b/intersight_gosdk/model_storage_hitachi_pool_response.go index d17880ff3e..f2159e7c3f 100644 --- a/intersight_gosdk/model_storage_hitachi_pool_response.go +++ b/intersight_gosdk/model_storage_hitachi_pool_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_port.go b/intersight_gosdk/model_storage_hitachi_port.go index 159144310d..e4d7db2842 100644 --- a/intersight_gosdk/model_storage_hitachi_port.go +++ b/intersight_gosdk/model_storage_hitachi_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,11 +31,11 @@ type StorageHitachiPort struct { // Fabric mode of the port. true, Set. false, Not set. FabricMode *bool `json:"FabricMode,omitempty"` // IPv4 address of Hitachi Port. - Ipv4Address *string `json:"Ipv4Address,omitempty"` + Ipv4Address *string `json:"Ipv4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IPv6 global address value. - Ipv6GlobalAddress *string `json:"Ipv6GlobalAddress,omitempty"` + Ipv6GlobalAddress *string `json:"Ipv6GlobalAddress,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // IPv6 link local address value. - Ipv6LinkLocalAddress *string `json:"Ipv6LinkLocalAddress,omitempty"` + Ipv6LinkLocalAddress *string `json:"Ipv6LinkLocalAddress,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // Determines if IPv6 mode is enabled on the port. IsIpv6Enable *bool `json:"IsIpv6Enable,omitempty"` // The value set for the port loop ID (AL_PA). @@ -699,11 +699,11 @@ func (o *StorageHitachiPort) UnmarshalJSON(data []byte) (err error) { // Fabric mode of the port. true, Set. false, Not set. FabricMode *bool `json:"FabricMode,omitempty"` // IPv4 address of Hitachi Port. - Ipv4Address *string `json:"Ipv4Address,omitempty"` + Ipv4Address *string `json:"Ipv4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IPv6 global address value. - Ipv6GlobalAddress *string `json:"Ipv6GlobalAddress,omitempty"` + Ipv6GlobalAddress *string `json:"Ipv6GlobalAddress,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // IPv6 link local address value. - Ipv6LinkLocalAddress *string `json:"Ipv6LinkLocalAddress,omitempty"` + Ipv6LinkLocalAddress *string `json:"Ipv6LinkLocalAddress,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // Determines if IPv6 mode is enabled on the port. IsIpv6Enable *bool `json:"IsIpv6Enable,omitempty"` // The value set for the port loop ID (AL_PA). diff --git a/intersight_gosdk/model_storage_hitachi_port_list.go b/intersight_gosdk/model_storage_hitachi_port_list.go index b9d11d2402..c3855e3991 100644 --- a/intersight_gosdk/model_storage_hitachi_port_list.go +++ b/intersight_gosdk/model_storage_hitachi_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_port_response.go b/intersight_gosdk/model_storage_hitachi_port_response.go index c8627e1eed..023fb01531 100644 --- a/intersight_gosdk/model_storage_hitachi_port_response.go +++ b/intersight_gosdk/model_storage_hitachi_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_remote_copy_pair_gad.go b/intersight_gosdk/model_storage_hitachi_remote_copy_pair_gad.go index ad5ba6deca..8b77e91ee7 100644 --- a/intersight_gosdk/model_storage_hitachi_remote_copy_pair_gad.go +++ b/intersight_gosdk/model_storage_hitachi_remote_copy_pair_gad.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_remote_copy_pair_gad_list.go b/intersight_gosdk/model_storage_hitachi_remote_copy_pair_gad_list.go index dd031a7c68..50bd449833 100644 --- a/intersight_gosdk/model_storage_hitachi_remote_copy_pair_gad_list.go +++ b/intersight_gosdk/model_storage_hitachi_remote_copy_pair_gad_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_remote_copy_pair_gad_response.go b/intersight_gosdk/model_storage_hitachi_remote_copy_pair_gad_response.go index 5f970172eb..e393da9c31 100644 --- a/intersight_gosdk/model_storage_hitachi_remote_copy_pair_gad_response.go +++ b/intersight_gosdk/model_storage_hitachi_remote_copy_pair_gad_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_remote_copy_pair_tc.go b/intersight_gosdk/model_storage_hitachi_remote_copy_pair_tc.go index 03681dd042..1926c31da0 100644 --- a/intersight_gosdk/model_storage_hitachi_remote_copy_pair_tc.go +++ b/intersight_gosdk/model_storage_hitachi_remote_copy_pair_tc.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_remote_copy_pair_tc_list.go b/intersight_gosdk/model_storage_hitachi_remote_copy_pair_tc_list.go index 0fb90480f9..29665d82e5 100644 --- a/intersight_gosdk/model_storage_hitachi_remote_copy_pair_tc_list.go +++ b/intersight_gosdk/model_storage_hitachi_remote_copy_pair_tc_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_remote_copy_pair_tc_response.go b/intersight_gosdk/model_storage_hitachi_remote_copy_pair_tc_response.go index 3969776eb0..28e910febf 100644 --- a/intersight_gosdk/model_storage_hitachi_remote_copy_pair_tc_response.go +++ b/intersight_gosdk/model_storage_hitachi_remote_copy_pair_tc_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_remote_copy_pair_ur.go b/intersight_gosdk/model_storage_hitachi_remote_copy_pair_ur.go index aa97f25531..478b58378b 100644 --- a/intersight_gosdk/model_storage_hitachi_remote_copy_pair_ur.go +++ b/intersight_gosdk/model_storage_hitachi_remote_copy_pair_ur.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_remote_copy_pair_ur_list.go b/intersight_gosdk/model_storage_hitachi_remote_copy_pair_ur_list.go index fa9c56aa4b..a99733d5f9 100644 --- a/intersight_gosdk/model_storage_hitachi_remote_copy_pair_ur_list.go +++ b/intersight_gosdk/model_storage_hitachi_remote_copy_pair_ur_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_remote_copy_pair_ur_response.go b/intersight_gosdk/model_storage_hitachi_remote_copy_pair_ur_response.go index 450755e081..c9fc8a5485 100644 --- a/intersight_gosdk/model_storage_hitachi_remote_copy_pair_ur_response.go +++ b/intersight_gosdk/model_storage_hitachi_remote_copy_pair_ur_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_remote_replication.go b/intersight_gosdk/model_storage_hitachi_remote_replication.go index 10e528389d..c68cd87be4 100644 --- a/intersight_gosdk/model_storage_hitachi_remote_replication.go +++ b/intersight_gosdk/model_storage_hitachi_remote_replication.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_remote_replication_list.go b/intersight_gosdk/model_storage_hitachi_remote_replication_list.go index 7541d07aec..0a9c835c56 100644 --- a/intersight_gosdk/model_storage_hitachi_remote_replication_list.go +++ b/intersight_gosdk/model_storage_hitachi_remote_replication_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_remote_replication_response.go b/intersight_gosdk/model_storage_hitachi_remote_replication_response.go index c44e57946b..6a434c11cc 100644 --- a/intersight_gosdk/model_storage_hitachi_remote_replication_response.go +++ b/intersight_gosdk/model_storage_hitachi_remote_replication_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_snapshot.go b/intersight_gosdk/model_storage_hitachi_snapshot.go index f6d92dd0f2..7ae519b2e4 100644 --- a/intersight_gosdk/model_storage_hitachi_snapshot.go +++ b/intersight_gosdk/model_storage_hitachi_snapshot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_snapshot_list.go b/intersight_gosdk/model_storage_hitachi_snapshot_list.go index 498e5d8bbc..be20aeea9d 100644 --- a/intersight_gosdk/model_storage_hitachi_snapshot_list.go +++ b/intersight_gosdk/model_storage_hitachi_snapshot_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_snapshot_response.go b/intersight_gosdk/model_storage_hitachi_snapshot_response.go index 2ad73ded70..b010540076 100644 --- a/intersight_gosdk/model_storage_hitachi_snapshot_response.go +++ b/intersight_gosdk/model_storage_hitachi_snapshot_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_volume.go b/intersight_gosdk/model_storage_hitachi_volume.go index e1e4b114f9..687b2ad4db 100644 --- a/intersight_gosdk/model_storage_hitachi_volume.go +++ b/intersight_gosdk/model_storage_hitachi_volume.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_volume_list.go b/intersight_gosdk/model_storage_hitachi_volume_list.go index 071f6d6b27..d4bdb2c253 100644 --- a/intersight_gosdk/model_storage_hitachi_volume_list.go +++ b/intersight_gosdk/model_storage_hitachi_volume_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_volume_migration_pair.go b/intersight_gosdk/model_storage_hitachi_volume_migration_pair.go index 99894ce0c1..ca519932fc 100644 --- a/intersight_gosdk/model_storage_hitachi_volume_migration_pair.go +++ b/intersight_gosdk/model_storage_hitachi_volume_migration_pair.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_volume_migration_pair_list.go b/intersight_gosdk/model_storage_hitachi_volume_migration_pair_list.go index c131d2177b..36be80d253 100644 --- a/intersight_gosdk/model_storage_hitachi_volume_migration_pair_list.go +++ b/intersight_gosdk/model_storage_hitachi_volume_migration_pair_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_volume_migration_pair_response.go b/intersight_gosdk/model_storage_hitachi_volume_migration_pair_response.go index 78aaf2e326..03517b250b 100644 --- a/intersight_gosdk/model_storage_hitachi_volume_migration_pair_response.go +++ b/intersight_gosdk/model_storage_hitachi_volume_migration_pair_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_volume_relationship.go b/intersight_gosdk/model_storage_hitachi_volume_relationship.go index c0a35192d4..aba6f52b7b 100644 --- a/intersight_gosdk/model_storage_hitachi_volume_relationship.go +++ b/intersight_gosdk/model_storage_hitachi_volume_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_volume_response.go b/intersight_gosdk/model_storage_hitachi_volume_response.go index 7f06b71aad..6e3e04f5a6 100644 --- a/intersight_gosdk/model_storage_hitachi_volume_response.go +++ b/intersight_gosdk/model_storage_hitachi_volume_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hyper_flex_iscsi_initiator.go b/intersight_gosdk/model_storage_hyper_flex_iscsi_initiator.go index c536d7d40c..c822992858 100644 --- a/intersight_gosdk/model_storage_hyper_flex_iscsi_initiator.go +++ b/intersight_gosdk/model_storage_hyper_flex_iscsi_initiator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hyper_flex_storage_container.go b/intersight_gosdk/model_storage_hyper_flex_storage_container.go index c6055a38e3..333ea31d44 100644 --- a/intersight_gosdk/model_storage_hyper_flex_storage_container.go +++ b/intersight_gosdk/model_storage_hyper_flex_storage_container.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hyper_flex_storage_container_list.go b/intersight_gosdk/model_storage_hyper_flex_storage_container_list.go index 1a380d726b..fdd0322bbb 100644 --- a/intersight_gosdk/model_storage_hyper_flex_storage_container_list.go +++ b/intersight_gosdk/model_storage_hyper_flex_storage_container_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hyper_flex_storage_container_relationship.go b/intersight_gosdk/model_storage_hyper_flex_storage_container_relationship.go index 5e6ba1eb8d..5d9fd78541 100644 --- a/intersight_gosdk/model_storage_hyper_flex_storage_container_relationship.go +++ b/intersight_gosdk/model_storage_hyper_flex_storage_container_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hyper_flex_storage_container_response.go b/intersight_gosdk/model_storage_hyper_flex_storage_container_response.go index 21ede834eb..deecdad636 100644 --- a/intersight_gosdk/model_storage_hyper_flex_storage_container_response.go +++ b/intersight_gosdk/model_storage_hyper_flex_storage_container_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hyper_flex_volume.go b/intersight_gosdk/model_storage_hyper_flex_volume.go index a5422d8baf..63769d50cb 100644 --- a/intersight_gosdk/model_storage_hyper_flex_volume.go +++ b/intersight_gosdk/model_storage_hyper_flex_volume.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hyper_flex_volume_list.go b/intersight_gosdk/model_storage_hyper_flex_volume_list.go index 65d0a150ac..6bf7e1f898 100644 --- a/intersight_gosdk/model_storage_hyper_flex_volume_list.go +++ b/intersight_gosdk/model_storage_hyper_flex_volume_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hyper_flex_volume_relationship.go b/intersight_gosdk/model_storage_hyper_flex_volume_relationship.go index 9a85cb2137..f710cb227f 100644 --- a/intersight_gosdk/model_storage_hyper_flex_volume_relationship.go +++ b/intersight_gosdk/model_storage_hyper_flex_volume_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hyper_flex_volume_response.go b/intersight_gosdk/model_storage_hyper_flex_volume_response.go index 196729a098..bc0d0d25c9 100644 --- a/intersight_gosdk/model_storage_hyper_flex_volume_response.go +++ b/intersight_gosdk/model_storage_hyper_flex_volume_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_initiator.go b/intersight_gosdk/model_storage_initiator.go index bbbd155e2a..2c70bee688 100644 --- a/intersight_gosdk/model_storage_initiator.go +++ b/intersight_gosdk/model_storage_initiator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_item.go b/intersight_gosdk/model_storage_item.go index c11827611b..ce7c9f29cf 100644 --- a/intersight_gosdk/model_storage_item.go +++ b/intersight_gosdk/model_storage_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_item_list.go b/intersight_gosdk/model_storage_item_list.go index 02700091bc..a15d37be7e 100644 --- a/intersight_gosdk/model_storage_item_list.go +++ b/intersight_gosdk/model_storage_item_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_item_relationship.go b/intersight_gosdk/model_storage_item_relationship.go index b25b6eaede..e62e5db209 100644 --- a/intersight_gosdk/model_storage_item_relationship.go +++ b/intersight_gosdk/model_storage_item_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_item_response.go b/intersight_gosdk/model_storage_item_response.go index 1dc165c34c..b6793395ad 100644 --- a/intersight_gosdk/model_storage_item_response.go +++ b/intersight_gosdk/model_storage_item_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_key_setting.go b/intersight_gosdk/model_storage_key_setting.go index 444c654409..9aa4e24190 100644 --- a/intersight_gosdk/model_storage_key_setting.go +++ b/intersight_gosdk/model_storage_key_setting.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_kmip_auth_credentials.go b/intersight_gosdk/model_storage_kmip_auth_credentials.go index e3fa5e8ba2..188325b04e 100644 --- a/intersight_gosdk/model_storage_kmip_auth_credentials.go +++ b/intersight_gosdk/model_storage_kmip_auth_credentials.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,11 +31,11 @@ type StorageKmipAuthCredentials struct { // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password for the KMIP server login. - Password *string `json:"Password,omitempty"` + Password *string "json:\"Password,omitempty\" validate:\"regexp=[!\\\"#%&'\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;<>@\\\\[\\\\\\\\\\\\]\\\\^_`\\\\{\\\\|\\\\}~a-zA-Z0-9]{0,80}\"" // Enables/disables the authentication for communicating with KMIP server. This flag enables the authentication which makes authentication mandatory. UseAuthentication *bool `json:"UseAuthentication,omitempty"` // The user name for the KMIP server login. - Username *string `json:"Username,omitempty"` + Username *string `json:"Username,omitempty" validate:"regexp=^$|[a-zA-Z][a-zA-Z0-9_.-]{0,31}"` AdditionalProperties map[string]interface{} } @@ -346,11 +346,11 @@ func (o *StorageKmipAuthCredentials) UnmarshalJSON(data []byte) (err error) { // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password for the KMIP server login. - Password *string `json:"Password,omitempty"` + Password *string "json:\"Password,omitempty\" validate:\"regexp=[!\\\"#%&'\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;<>@\\\\[\\\\\\\\\\\\]\\\\^_`\\\\{\\\\|\\\\}~a-zA-Z0-9]{0,80}\"" // Enables/disables the authentication for communicating with KMIP server. This flag enables the authentication which makes authentication mandatory. UseAuthentication *bool `json:"UseAuthentication,omitempty"` // The user name for the KMIP server login. - Username *string `json:"Username,omitempty"` + Username *string `json:"Username,omitempty" validate:"regexp=^$|[a-zA-Z][a-zA-Z0-9_.-]{0,31}"` } varStorageKmipAuthCredentialsWithoutEmbeddedStruct := StorageKmipAuthCredentialsWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_storage_kmip_server.go b/intersight_gosdk/model_storage_kmip_server.go index dfecbcfe93..287deafb27 100644 --- a/intersight_gosdk/model_storage_kmip_server.go +++ b/intersight_gosdk/model_storage_kmip_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_local_key_setting.go b/intersight_gosdk/model_storage_local_key_setting.go index 35c33b47f3..6c5227481a 100644 --- a/intersight_gosdk/model_storage_local_key_setting.go +++ b/intersight_gosdk/model_storage_local_key_setting.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,13 +29,13 @@ type StorageLocalKeySetting struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Current Security Key Passphrase which is already configured on the server. - ExistingKey *string `json:"ExistingKey,omitempty"` + ExistingKey *string `json:"ExistingKey,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` // Indicates whether the value of the 'existingKey' property has been set. IsExistingKeySet *bool `json:"IsExistingKeySet,omitempty"` // Indicates whether the value of the 'newKey' property has been set. IsNewKeySet *bool `json:"IsNewKeySet,omitempty"` // New Security Key Passphrase to be configured on the controller. - NewKey *string `json:"NewKey,omitempty"` + NewKey *string `json:"NewKey,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` AdditionalProperties map[string]interface{} } @@ -344,13 +344,13 @@ func (o *StorageLocalKeySetting) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Current Security Key Passphrase which is already configured on the server. - ExistingKey *string `json:"ExistingKey,omitempty"` + ExistingKey *string `json:"ExistingKey,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` // Indicates whether the value of the 'existingKey' property has been set. IsExistingKeySet *bool `json:"IsExistingKeySet,omitempty"` // Indicates whether the value of the 'newKey' property has been set. IsNewKeySet *bool `json:"IsNewKeySet,omitempty"` // New Security Key Passphrase to be configured on the controller. - NewKey *string `json:"NewKey,omitempty"` + NewKey *string `json:"NewKey,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` } varStorageLocalKeySettingWithoutEmbeddedStruct := StorageLocalKeySettingWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_storage_m2_virtual_drive_config.go b/intersight_gosdk/model_storage_m2_virtual_drive_config.go index 2afb74fbe8..59f2ff56ce 100644 --- a/intersight_gosdk/model_storage_m2_virtual_drive_config.go +++ b/intersight_gosdk/model_storage_m2_virtual_drive_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type StorageM2VirtualDriveConfig struct { // If enabled, this will create a virtual drive on the M.2 RAID controller. Enable *bool `json:"Enable,omitempty"` // The name of the virtual drive. The name can be between 1 and 15 alphanumeric characters. Spaces or any special characters other than - (hyphen) and _ (underscore) are not allowed. This field will be pre-populated with the default or user configured value which can be edited. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\-_]*$"` AdditionalProperties map[string]interface{} } @@ -323,7 +323,7 @@ func (o *StorageM2VirtualDriveConfig) UnmarshalJSON(data []byte) (err error) { // If enabled, this will create a virtual drive on the M.2 RAID controller. Enable *bool `json:"Enable,omitempty"` // The name of the virtual drive. The name can be between 1 and 15 alphanumeric characters. Spaces or any special characters other than - (hyphen) and _ (underscore) are not allowed. This field will be pre-populated with the default or user configured value which can be edited. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\-_]*$"` } varStorageM2VirtualDriveConfigWithoutEmbeddedStruct := StorageM2VirtualDriveConfigWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_storage_manual_drive_group.go b/intersight_gosdk/model_storage_manual_drive_group.go index 02e8246c74..32c5a7f057 100644 --- a/intersight_gosdk/model_storage_manual_drive_group.go +++ b/intersight_gosdk/model_storage_manual_drive_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type StorageManualDriveGroup struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // A collection of drives to be used as hot spares for this Drive Group. - DedicatedHotSpares *string `json:"DedicatedHotSpares,omitempty"` + DedicatedHotSpares *string `json:"DedicatedHotSpares,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` SpanGroups []StorageSpanDrives `json:"SpanGroups,omitempty"` AdditionalProperties map[string]interface{} } @@ -270,7 +270,7 @@ func (o *StorageManualDriveGroup) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // A collection of drives to be used as hot spares for this Drive Group. - DedicatedHotSpares *string `json:"DedicatedHotSpares,omitempty"` + DedicatedHotSpares *string `json:"DedicatedHotSpares,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` SpanGroups []StorageSpanDrives `json:"SpanGroups,omitempty"` } diff --git a/intersight_gosdk/model_storage_net_app_aggregate.go b/intersight_gosdk/model_storage_net_app_aggregate.go index a2627bf7e7..a5afa4b3c6 100644 --- a/intersight_gosdk/model_storage_net_app_aggregate.go +++ b/intersight_gosdk/model_storage_net_app_aggregate.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -45,7 +45,7 @@ type StorageNetAppAggregate struct { // Current state of the NetApp aggregate. * `Unknown` - Specifies that the aggregate is discovered, but the aggregate information is not yet retrieved by the Unified Manager server. * `Online` - Aggregate is ready and available. * `Onlining` - The state is transitioning online. * `Offline` - Aggregate is unavailable. * `Offlining` - The state is transitioning offline. * `Relocating` - The aggregate is being relocated. * `Restricted` - Limited operations (e.g., parity reconstruction) are allowed, but data access is not allowed. * `Failed` - The aggregate cannot be brought online. * `Inconsistent` - The aggregate has been marked corrupted; contact technical support. * `Unmounted` - The aggregate is not mounted. State *string `json:"State,omitempty"` // Uuid of NetApp Aggregate. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` ArrayController NullableStorageNetAppNodeRelationship `json:"ArrayController,omitempty"` // An array of relationships to storageNetAppAggregateEvent resources. Events []StorageNetAppAggregateEventRelationship `json:"Events,omitempty"` @@ -666,7 +666,7 @@ func (o *StorageNetAppAggregate) UnmarshalJSON(data []byte) (err error) { // Current state of the NetApp aggregate. * `Unknown` - Specifies that the aggregate is discovered, but the aggregate information is not yet retrieved by the Unified Manager server. * `Online` - Aggregate is ready and available. * `Onlining` - The state is transitioning online. * `Offline` - Aggregate is unavailable. * `Offlining` - The state is transitioning offline. * `Relocating` - The aggregate is being relocated. * `Restricted` - Limited operations (e.g., parity reconstruction) are allowed, but data access is not allowed. * `Failed` - The aggregate cannot be brought online. * `Inconsistent` - The aggregate has been marked corrupted; contact technical support. * `Unmounted` - The aggregate is not mounted. State *string `json:"State,omitempty"` // Uuid of NetApp Aggregate. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` ArrayController NullableStorageNetAppNodeRelationship `json:"ArrayController,omitempty"` // An array of relationships to storageNetAppAggregateEvent resources. Events []StorageNetAppAggregateEventRelationship `json:"Events,omitempty"` diff --git a/intersight_gosdk/model_storage_net_app_aggregate_event.go b/intersight_gosdk/model_storage_net_app_aggregate_event.go index 5e79b57d3b..5c3f84a1a1 100644 --- a/intersight_gosdk/model_storage_net_app_aggregate_event.go +++ b/intersight_gosdk/model_storage_net_app_aggregate_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_aggregate_event_list.go b/intersight_gosdk/model_storage_net_app_aggregate_event_list.go index a9cc4076e5..5b83a1d412 100644 --- a/intersight_gosdk/model_storage_net_app_aggregate_event_list.go +++ b/intersight_gosdk/model_storage_net_app_aggregate_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_aggregate_event_relationship.go b/intersight_gosdk/model_storage_net_app_aggregate_event_relationship.go index c12fa65b13..e0f2e08346 100644 --- a/intersight_gosdk/model_storage_net_app_aggregate_event_relationship.go +++ b/intersight_gosdk/model_storage_net_app_aggregate_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_aggregate_event_response.go b/intersight_gosdk/model_storage_net_app_aggregate_event_response.go index 6af1c641f5..d7ad3dc987 100644 --- a/intersight_gosdk/model_storage_net_app_aggregate_event_response.go +++ b/intersight_gosdk/model_storage_net_app_aggregate_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_aggregate_list.go b/intersight_gosdk/model_storage_net_app_aggregate_list.go index 551d782c73..4738a38f64 100644 --- a/intersight_gosdk/model_storage_net_app_aggregate_list.go +++ b/intersight_gosdk/model_storage_net_app_aggregate_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_aggregate_relationship.go b/intersight_gosdk/model_storage_net_app_aggregate_relationship.go index 66bd6db893..4ff9b08464 100644 --- a/intersight_gosdk/model_storage_net_app_aggregate_relationship.go +++ b/intersight_gosdk/model_storage_net_app_aggregate_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_aggregate_response.go b/intersight_gosdk/model_storage_net_app_aggregate_response.go index b9cce0f1a3..e03c081cf4 100644 --- a/intersight_gosdk/model_storage_net_app_aggregate_response.go +++ b/intersight_gosdk/model_storage_net_app_aggregate_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_auto_support.go b/intersight_gosdk/model_storage_net_app_auto_support.go index 455ef8eda1..6c4ad4876f 100644 --- a/intersight_gosdk/model_storage_net_app_auto_support.go +++ b/intersight_gosdk/model_storage_net_app_auto_support.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_base_disk.go b/intersight_gosdk/model_storage_net_app_base_disk.go index ec773dcdcf..b40e1b6a04 100644 --- a/intersight_gosdk/model_storage_net_app_base_disk.go +++ b/intersight_gosdk/model_storage_net_app_base_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type StorageNetAppBaseDisk struct { // The NetApp base disk model. BaseDiskModel *string `json:"BaseDiskModel,omitempty"` // Unique identity of the device. - ClusterUuid *string `json:"ClusterUuid,omitempty"` + ClusterUuid *string `json:"ClusterUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Supported container type for NetApp disk. * `Unknown` - Default container type is currently unknown. * `Aggregate` - Disk is used as a physical disk in an aggregate. * `Broken` - Disk is in a broken pool. * `Label Maintenance` - Disk is in online label maintenance list. * `Foreign` - Array LUN has been marked foreign. * `Maintenance` - Disk is in maintenance center. * `Mediator` - A mediator disk is a disk used on non-shared HA systems hosted by an external node which is used to communicate the viability of the storage failover between non-shared HA nodes. * `Shared` - Disk is partitioned or in a storage pool. * `Remote` - Disk belongs to a remote cluster. * `Spare` - The disk is a spare disk. * `Unassigned` - Disk ownership has not been assigned. * `Unsupported` - The disk is not supported. ContainerType *string `json:"ContainerType,omitempty"` // NetApp base disk shelf bay. @@ -51,7 +51,7 @@ type StorageNetAppBaseDisk struct { // Current state of the NetApp disk. * `Present` - Storage disk state type is present. * `Copy` - Storage disk state type is copy. * `Broken` - Storage disk state type is broken. * `Maintenance` - Storage disk state type is maintenance. * `Partner` - Storage disk state type is partner. * `Pending` - Storage disk state type is pending. * `Reconstructing` - Storage disk state type is reconstructing. * `Removed` - Storage disk state type is removed. * `Spare` - Storage disk state type is spare. * `Unfail` - Storage disk state type is unfail. * `Zeroing` - Storage disk state type is zeroing. State *string `json:"State,omitempty"` // Universally unique identifier of the NetApp Disk. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` ArrayController NullableStorageNetAppNodeRelationship `json:"ArrayController,omitempty"` // An array of relationships to storageNetAppAggregate resources. @@ -812,7 +812,7 @@ func (o *StorageNetAppBaseDisk) UnmarshalJSON(data []byte) (err error) { // The NetApp base disk model. BaseDiskModel *string `json:"BaseDiskModel,omitempty"` // Unique identity of the device. - ClusterUuid *string `json:"ClusterUuid,omitempty"` + ClusterUuid *string `json:"ClusterUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Supported container type for NetApp disk. * `Unknown` - Default container type is currently unknown. * `Aggregate` - Disk is used as a physical disk in an aggregate. * `Broken` - Disk is in a broken pool. * `Label Maintenance` - Disk is in online label maintenance list. * `Foreign` - Array LUN has been marked foreign. * `Maintenance` - Disk is in maintenance center. * `Mediator` - A mediator disk is a disk used on non-shared HA systems hosted by an external node which is used to communicate the viability of the storage failover between non-shared HA nodes. * `Shared` - Disk is partitioned or in a storage pool. * `Remote` - Disk belongs to a remote cluster. * `Spare` - The disk is a spare disk. * `Unassigned` - Disk ownership has not been assigned. * `Unsupported` - The disk is not supported. ContainerType *string `json:"ContainerType,omitempty"` // NetApp base disk shelf bay. @@ -832,7 +832,7 @@ func (o *StorageNetAppBaseDisk) UnmarshalJSON(data []byte) (err error) { // Current state of the NetApp disk. * `Present` - Storage disk state type is present. * `Copy` - Storage disk state type is copy. * `Broken` - Storage disk state type is broken. * `Maintenance` - Storage disk state type is maintenance. * `Partner` - Storage disk state type is partner. * `Pending` - Storage disk state type is pending. * `Reconstructing` - Storage disk state type is reconstructing. * `Removed` - Storage disk state type is removed. * `Spare` - Storage disk state type is spare. * `Unfail` - Storage disk state type is unfail. * `Zeroing` - Storage disk state type is zeroing. State *string `json:"State,omitempty"` // Universally unique identifier of the NetApp Disk. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` ArrayController NullableStorageNetAppNodeRelationship `json:"ArrayController,omitempty"` // An array of relationships to storageNetAppAggregate resources. diff --git a/intersight_gosdk/model_storage_net_app_base_disk_list.go b/intersight_gosdk/model_storage_net_app_base_disk_list.go index 36d4100f26..1e23c0a0fa 100644 --- a/intersight_gosdk/model_storage_net_app_base_disk_list.go +++ b/intersight_gosdk/model_storage_net_app_base_disk_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_base_disk_relationship.go b/intersight_gosdk/model_storage_net_app_base_disk_relationship.go index 4409734288..ea26935455 100644 --- a/intersight_gosdk/model_storage_net_app_base_disk_relationship.go +++ b/intersight_gosdk/model_storage_net_app_base_disk_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_base_disk_response.go b/intersight_gosdk/model_storage_net_app_base_disk_response.go index 2636dd4fac..bd61a2e659 100644 --- a/intersight_gosdk/model_storage_net_app_base_disk_response.go +++ b/intersight_gosdk/model_storage_net_app_base_disk_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_base_event.go b/intersight_gosdk/model_storage_net_app_base_event.go index ac86dfd2ad..177825a379 100644 --- a/intersight_gosdk/model_storage_net_app_base_event.go +++ b/intersight_gosdk/model_storage_net_app_base_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -55,7 +55,7 @@ type StorageNetAppBaseEvent struct { // Unique identifier of the storage VM. SvmUuid *string `json:"SvmUuid,omitempty"` // Unique identifier of the event. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` AdditionalProperties map[string]interface{} } @@ -717,7 +717,7 @@ func (o *StorageNetAppBaseEvent) UnmarshalJSON(data []byte) (err error) { // Unique identifier of the storage VM. SvmUuid *string `json:"SvmUuid,omitempty"` // Unique identifier of the event. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` } varStorageNetAppBaseEventWithoutEmbeddedStruct := StorageNetAppBaseEventWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_storage_net_app_base_ip_interface.go b/intersight_gosdk/model_storage_net_app_base_ip_interface.go index d0b21de28d..8088ddbcff 100644 --- a/intersight_gosdk/model_storage_net_app_base_ip_interface.go +++ b/intersight_gosdk/model_storage_net_app_base_ip_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -60,7 +60,7 @@ type StorageNetAppBaseIpInterface struct { // Service policy name of IP interface. ServicePolicyName *string `json:"ServicePolicyName,omitempty"` // Service policy UUID of IP interface. - ServicePolicyUuid *string `json:"ServicePolicyUuid,omitempty"` + ServicePolicyUuid *string `json:"ServicePolicyUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Services []string `json:"Services,omitempty"` // The state of the IP interface. * `down` - An inactive port is listed as Down. * `up` - An active port is listed as Up. * `present` - An active port is listed as present. // Deprecated @@ -68,7 +68,7 @@ type StorageNetAppBaseIpInterface struct { // The storage virtual machine name for the interface. SvmName *string `json:"SvmName,omitempty"` // Uuid of NetApp IP Interface. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` AdditionalProperties map[string]interface{} } @@ -952,7 +952,7 @@ func (o *StorageNetAppBaseIpInterface) UnmarshalJSON(data []byte) (err error) { // Service policy name of IP interface. ServicePolicyName *string `json:"ServicePolicyName,omitempty"` // Service policy UUID of IP interface. - ServicePolicyUuid *string `json:"ServicePolicyUuid,omitempty"` + ServicePolicyUuid *string `json:"ServicePolicyUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Services []string `json:"Services,omitempty"` // The state of the IP interface. * `down` - An inactive port is listed as Down. * `up` - An active port is listed as Up. * `present` - An active port is listed as present. // Deprecated @@ -960,7 +960,7 @@ func (o *StorageNetAppBaseIpInterface) UnmarshalJSON(data []byte) (err error) { // The storage virtual machine name for the interface. SvmName *string `json:"SvmName,omitempty"` // Uuid of NetApp IP Interface. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` } varStorageNetAppBaseIpInterfaceWithoutEmbeddedStruct := StorageNetAppBaseIpInterfaceWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_storage_net_app_base_snap_mirror_policy.go b/intersight_gosdk/model_storage_net_app_base_snap_mirror_policy.go index b7c9268023..a74fd64242 100644 --- a/intersight_gosdk/model_storage_net_app_base_snap_mirror_policy.go +++ b/intersight_gosdk/model_storage_net_app_base_snap_mirror_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -41,11 +41,11 @@ type StorageNetAppBaseSnapMirrorPolicy struct { // Name of the schedule used to update asynchronous relationships. TransferScheduleName *string `json:"TransferScheduleName,omitempty"` // Uuid of the schedule used to update asynchronous relationships. - TransferScheduleUuid *string `json:"TransferScheduleUuid,omitempty"` + TransferScheduleUuid *string `json:"TransferScheduleUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // SnapMirror policy type can be async, sync, or continuous. Type *string `json:"Type,omitempty"` // Uuid of the NetApp SnapMirror policy. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` AdditionalProperties map[string]interface{} } @@ -518,11 +518,11 @@ func (o *StorageNetAppBaseSnapMirrorPolicy) UnmarshalJSON(data []byte) (err erro // Name of the schedule used to update asynchronous relationships. TransferScheduleName *string `json:"TransferScheduleName,omitempty"` // Uuid of the schedule used to update asynchronous relationships. - TransferScheduleUuid *string `json:"TransferScheduleUuid,omitempty"` + TransferScheduleUuid *string `json:"TransferScheduleUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // SnapMirror policy type can be async, sync, or continuous. Type *string `json:"Type,omitempty"` // Uuid of the NetApp SnapMirror policy. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` } varStorageNetAppBaseSnapMirrorPolicyWithoutEmbeddedStruct := StorageNetAppBaseSnapMirrorPolicyWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_storage_net_app_base_snap_mirror_policy_relationship.go b/intersight_gosdk/model_storage_net_app_base_snap_mirror_policy_relationship.go index 9a1e687d93..d04fddf275 100644 --- a/intersight_gosdk/model_storage_net_app_base_snap_mirror_policy_relationship.go +++ b/intersight_gosdk/model_storage_net_app_base_snap_mirror_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_base_snapshot_policy.go b/intersight_gosdk/model_storage_net_app_base_snapshot_policy.go index 22a25c01dc..91dc2a2501 100644 --- a/intersight_gosdk/model_storage_net_app_base_snapshot_policy.go +++ b/intersight_gosdk/model_storage_net_app_base_snapshot_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -36,7 +36,7 @@ type StorageNetAppBaseSnapshotPolicy struct { // Identifies whether the Snapshot Policy is owned by the Storage Virtual Machine or the cluster. Scope *string `json:"Scope,omitempty"` // Uuid of the NetApp Snapshot Policy. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` AdditionalProperties map[string]interface{} } @@ -365,7 +365,7 @@ func (o *StorageNetAppBaseSnapshotPolicy) UnmarshalJSON(data []byte) (err error) // Identifies whether the Snapshot Policy is owned by the Storage Virtual Machine or the cluster. Scope *string `json:"Scope,omitempty"` // Uuid of the NetApp Snapshot Policy. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` } varStorageNetAppBaseSnapshotPolicyWithoutEmbeddedStruct := StorageNetAppBaseSnapshotPolicyWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_storage_net_app_cifs_acl.go b/intersight_gosdk/model_storage_net_app_cifs_acl.go index bf00d70c2d..12925f84f1 100644 --- a/intersight_gosdk/model_storage_net_app_cifs_acl.go +++ b/intersight_gosdk/model_storage_net_app_cifs_acl.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_cifs_service.go b/intersight_gosdk/model_storage_net_app_cifs_service.go index 37a3a8e94d..16a9dddcce 100644 --- a/intersight_gosdk/model_storage_net_app_cifs_service.go +++ b/intersight_gosdk/model_storage_net_app_cifs_service.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -41,7 +41,7 @@ type StorageNetAppCifsService struct { // The storage virtual machine name for the CIFS service. SvmName *string `json:"SvmName,omitempty"` // Unique identifier for the NetApp Storage Virtual Machine. - SvmUuid *string `json:"SvmUuid,omitempty"` + SvmUuid *string `json:"SvmUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` AdditionalProperties map[string]interface{} } @@ -514,7 +514,7 @@ func (o *StorageNetAppCifsService) UnmarshalJSON(data []byte) (err error) { // The storage virtual machine name for the CIFS service. SvmName *string `json:"SvmName,omitempty"` // Unique identifier for the NetApp Storage Virtual Machine. - SvmUuid *string `json:"SvmUuid,omitempty"` + SvmUuid *string `json:"SvmUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` } diff --git a/intersight_gosdk/model_storage_net_app_cifs_service_list.go b/intersight_gosdk/model_storage_net_app_cifs_service_list.go index 5cb9f7199c..00e7abcecf 100644 --- a/intersight_gosdk/model_storage_net_app_cifs_service_list.go +++ b/intersight_gosdk/model_storage_net_app_cifs_service_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_cifs_service_response.go b/intersight_gosdk/model_storage_net_app_cifs_service_response.go index 315fd36ccb..780d348473 100644 --- a/intersight_gosdk/model_storage_net_app_cifs_service_response.go +++ b/intersight_gosdk/model_storage_net_app_cifs_service_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_cifs_share.go b/intersight_gosdk/model_storage_net_app_cifs_share.go index bdbf9dd561..57c06920b7 100644 --- a/intersight_gosdk/model_storage_net_app_cifs_share.go +++ b/intersight_gosdk/model_storage_net_app_cifs_share.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -42,7 +42,7 @@ type StorageNetAppCifsShare struct { // The storage virtual machine name for the CIFS share. SvmName *string `json:"SvmName,omitempty"` // Unique identifier for the NetApp Storage Virtual Machine. - SvmUuid *string `json:"SvmUuid,omitempty"` + SvmUuid *string `json:"SvmUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` StorageContainer NullableStorageNetAppVolumeRelationship `json:"StorageContainer,omitempty"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` AdditionalProperties map[string]interface{} @@ -599,7 +599,7 @@ func (o *StorageNetAppCifsShare) UnmarshalJSON(data []byte) (err error) { // The storage virtual machine name for the CIFS share. SvmName *string `json:"SvmName,omitempty"` // Unique identifier for the NetApp Storage Virtual Machine. - SvmUuid *string `json:"SvmUuid,omitempty"` + SvmUuid *string `json:"SvmUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` StorageContainer NullableStorageNetAppVolumeRelationship `json:"StorageContainer,omitempty"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` } diff --git a/intersight_gosdk/model_storage_net_app_cifs_share_list.go b/intersight_gosdk/model_storage_net_app_cifs_share_list.go index 279e092874..1b731a73b2 100644 --- a/intersight_gosdk/model_storage_net_app_cifs_share_list.go +++ b/intersight_gosdk/model_storage_net_app_cifs_share_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_cifs_share_response.go b/intersight_gosdk/model_storage_net_app_cifs_share_response.go index acfe6ba8b3..1431cae2ca 100644 --- a/intersight_gosdk/model_storage_net_app_cifs_share_response.go +++ b/intersight_gosdk/model_storage_net_app_cifs_share_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_cloud_target.go b/intersight_gosdk/model_storage_net_app_cloud_target.go index a002730624..d21c20763e 100644 --- a/intersight_gosdk/model_storage_net_app_cloud_target.go +++ b/intersight_gosdk/model_storage_net_app_cloud_target.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -60,7 +60,7 @@ type StorageNetAppCloudTarget struct { // The amount of cloud space used by all the aggregates attached to the target, in bytes. Used *int64 `json:"Used,omitempty"` // Uuid of the cloud target. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` AdditionalProperties map[string]interface{} } @@ -903,7 +903,7 @@ func (o *StorageNetAppCloudTarget) UnmarshalJSON(data []byte) (err error) { // The amount of cloud space used by all the aggregates attached to the target, in bytes. Used *int64 `json:"Used,omitempty"` // Uuid of the cloud target. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` } diff --git a/intersight_gosdk/model_storage_net_app_cloud_target_list.go b/intersight_gosdk/model_storage_net_app_cloud_target_list.go index 267de23e0f..3d18b3f0a0 100644 --- a/intersight_gosdk/model_storage_net_app_cloud_target_list.go +++ b/intersight_gosdk/model_storage_net_app_cloud_target_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_cloud_target_response.go b/intersight_gosdk/model_storage_net_app_cloud_target_response.go index 115fc7c990..069a73c6df 100644 --- a/intersight_gosdk/model_storage_net_app_cloud_target_response.go +++ b/intersight_gosdk/model_storage_net_app_cloud_target_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_cluster.go b/intersight_gosdk/model_storage_net_app_cluster.go index 8fa0ebb9a0..743309063b 100644 --- a/intersight_gosdk/model_storage_net_app_cluster.go +++ b/intersight_gosdk/model_storage_net_app_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_cluster_event.go b/intersight_gosdk/model_storage_net_app_cluster_event.go index 41b223c7bd..129555f8ed 100644 --- a/intersight_gosdk/model_storage_net_app_cluster_event.go +++ b/intersight_gosdk/model_storage_net_app_cluster_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_cluster_event_list.go b/intersight_gosdk/model_storage_net_app_cluster_event_list.go index 2d6567cf64..787a2a373c 100644 --- a/intersight_gosdk/model_storage_net_app_cluster_event_list.go +++ b/intersight_gosdk/model_storage_net_app_cluster_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_cluster_event_relationship.go b/intersight_gosdk/model_storage_net_app_cluster_event_relationship.go index 30a778bad1..af3c130209 100644 --- a/intersight_gosdk/model_storage_net_app_cluster_event_relationship.go +++ b/intersight_gosdk/model_storage_net_app_cluster_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_cluster_event_response.go b/intersight_gosdk/model_storage_net_app_cluster_event_response.go index f0a634cdf3..d670b92b92 100644 --- a/intersight_gosdk/model_storage_net_app_cluster_event_response.go +++ b/intersight_gosdk/model_storage_net_app_cluster_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_cluster_list.go b/intersight_gosdk/model_storage_net_app_cluster_list.go index ec346fb3e8..5322c3b58c 100644 --- a/intersight_gosdk/model_storage_net_app_cluster_list.go +++ b/intersight_gosdk/model_storage_net_app_cluster_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_cluster_relationship.go b/intersight_gosdk/model_storage_net_app_cluster_relationship.go index 8757928961..71ceb36ca2 100644 --- a/intersight_gosdk/model_storage_net_app_cluster_relationship.go +++ b/intersight_gosdk/model_storage_net_app_cluster_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_cluster_response.go b/intersight_gosdk/model_storage_net_app_cluster_response.go index c403b96b58..fbc032529a 100644 --- a/intersight_gosdk/model_storage_net_app_cluster_response.go +++ b/intersight_gosdk/model_storage_net_app_cluster_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_cluster_snap_mirror_policy.go b/intersight_gosdk/model_storage_net_app_cluster_snap_mirror_policy.go index 5efb37c6ce..0d1dd555b4 100644 --- a/intersight_gosdk/model_storage_net_app_cluster_snap_mirror_policy.go +++ b/intersight_gosdk/model_storage_net_app_cluster_snap_mirror_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_cluster_snap_mirror_policy_list.go b/intersight_gosdk/model_storage_net_app_cluster_snap_mirror_policy_list.go index 530aa1def0..5fe20ac836 100644 --- a/intersight_gosdk/model_storage_net_app_cluster_snap_mirror_policy_list.go +++ b/intersight_gosdk/model_storage_net_app_cluster_snap_mirror_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_cluster_snap_mirror_policy_response.go b/intersight_gosdk/model_storage_net_app_cluster_snap_mirror_policy_response.go index d0bded12fb..b8be77b009 100644 --- a/intersight_gosdk/model_storage_net_app_cluster_snap_mirror_policy_response.go +++ b/intersight_gosdk/model_storage_net_app_cluster_snap_mirror_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_cluster_snapshot_policy.go b/intersight_gosdk/model_storage_net_app_cluster_snapshot_policy.go index 0d5a3016c7..abe6b37578 100644 --- a/intersight_gosdk/model_storage_net_app_cluster_snapshot_policy.go +++ b/intersight_gosdk/model_storage_net_app_cluster_snapshot_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_cluster_snapshot_policy_list.go b/intersight_gosdk/model_storage_net_app_cluster_snapshot_policy_list.go index 975afac6b7..0941560af4 100644 --- a/intersight_gosdk/model_storage_net_app_cluster_snapshot_policy_list.go +++ b/intersight_gosdk/model_storage_net_app_cluster_snapshot_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_cluster_snapshot_policy_response.go b/intersight_gosdk/model_storage_net_app_cluster_snapshot_policy_response.go index 318812a514..d3a255185c 100644 --- a/intersight_gosdk/model_storage_net_app_cluster_snapshot_policy_response.go +++ b/intersight_gosdk/model_storage_net_app_cluster_snapshot_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_data_ip_interface.go b/intersight_gosdk/model_storage_net_app_data_ip_interface.go index 1b36ecb5c5..292e618931 100644 --- a/intersight_gosdk/model_storage_net_app_data_ip_interface.go +++ b/intersight_gosdk/model_storage_net_app_data_ip_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_data_ip_interface_event.go b/intersight_gosdk/model_storage_net_app_data_ip_interface_event.go index dd99cbf029..46c6dcf3c5 100644 --- a/intersight_gosdk/model_storage_net_app_data_ip_interface_event.go +++ b/intersight_gosdk/model_storage_net_app_data_ip_interface_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_data_ip_interface_event_list.go b/intersight_gosdk/model_storage_net_app_data_ip_interface_event_list.go index 8a7fd089f9..83396cbaef 100644 --- a/intersight_gosdk/model_storage_net_app_data_ip_interface_event_list.go +++ b/intersight_gosdk/model_storage_net_app_data_ip_interface_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_data_ip_interface_event_relationship.go b/intersight_gosdk/model_storage_net_app_data_ip_interface_event_relationship.go index 99e90cef56..bbfdb8ea98 100644 --- a/intersight_gosdk/model_storage_net_app_data_ip_interface_event_relationship.go +++ b/intersight_gosdk/model_storage_net_app_data_ip_interface_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_data_ip_interface_event_response.go b/intersight_gosdk/model_storage_net_app_data_ip_interface_event_response.go index f61cb773d0..903cd220fb 100644 --- a/intersight_gosdk/model_storage_net_app_data_ip_interface_event_response.go +++ b/intersight_gosdk/model_storage_net_app_data_ip_interface_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_data_ip_interface_list.go b/intersight_gosdk/model_storage_net_app_data_ip_interface_list.go index e5ac635cf1..8356be6cea 100644 --- a/intersight_gosdk/model_storage_net_app_data_ip_interface_list.go +++ b/intersight_gosdk/model_storage_net_app_data_ip_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_data_ip_interface_relationship.go b/intersight_gosdk/model_storage_net_app_data_ip_interface_relationship.go index 82cc3feb94..bcae4d1f8f 100644 --- a/intersight_gosdk/model_storage_net_app_data_ip_interface_relationship.go +++ b/intersight_gosdk/model_storage_net_app_data_ip_interface_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_data_ip_interface_response.go b/intersight_gosdk/model_storage_net_app_data_ip_interface_response.go index 1b36e73cad..cc495e301b 100644 --- a/intersight_gosdk/model_storage_net_app_data_ip_interface_response.go +++ b/intersight_gosdk/model_storage_net_app_data_ip_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_disk_event.go b/intersight_gosdk/model_storage_net_app_disk_event.go index cccd4bd3a3..7977722639 100644 --- a/intersight_gosdk/model_storage_net_app_disk_event.go +++ b/intersight_gosdk/model_storage_net_app_disk_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_disk_event_list.go b/intersight_gosdk/model_storage_net_app_disk_event_list.go index 3877ef6605..86fa57196c 100644 --- a/intersight_gosdk/model_storage_net_app_disk_event_list.go +++ b/intersight_gosdk/model_storage_net_app_disk_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_disk_event_relationship.go b/intersight_gosdk/model_storage_net_app_disk_event_relationship.go index a723c4cf3e..f8700d3e5b 100644 --- a/intersight_gosdk/model_storage_net_app_disk_event_relationship.go +++ b/intersight_gosdk/model_storage_net_app_disk_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_disk_event_response.go b/intersight_gosdk/model_storage_net_app_disk_event_response.go index 6c077d2edb..ac73d71b52 100644 --- a/intersight_gosdk/model_storage_net_app_disk_event_response.go +++ b/intersight_gosdk/model_storage_net_app_disk_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_ethernet_port.go b/intersight_gosdk/model_storage_net_app_ethernet_port.go index 9454c21a62..b68056fa51 100644 --- a/intersight_gosdk/model_storage_net_app_ethernet_port.go +++ b/intersight_gosdk/model_storage_net_app_ethernet_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type StorageNetAppEthernetPort struct { // Status of port to determine if its enabled or not. Enabled *string `json:"Enabled,omitempty"` // MAC address of the port available in storage array. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"` // Maximum transmission unit of the physical port available in storage array. Mtu *int64 `json:"Mtu,omitempty"` // Name of the port available in storage array. @@ -52,7 +52,7 @@ type StorageNetAppEthernetPort struct { // Type of the port available in storage array. * `LAG` - Storage port of type lag. * `physical` - LIFs can be configured directly on physical ports. * `VLAN` - A logical port that receives and sends VLAN-tagged (IEEE 802.1Q standard) traffic. VLAN port characteristics include the VLAN ID for the port. Type *string `json:"Type,omitempty"` // Universally unique identifier of the physical port. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` ArrayController NullableStorageNetAppNodeRelationship `json:"ArrayController,omitempty"` // An array of relationships to storageNetAppEthernetPortEvent resources. Events []StorageNetAppEthernetPortEventRelationship `json:"Events,omitempty"` @@ -790,7 +790,7 @@ func (o *StorageNetAppEthernetPort) UnmarshalJSON(data []byte) (err error) { // Status of port to determine if its enabled or not. Enabled *string `json:"Enabled,omitempty"` // MAC address of the port available in storage array. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"` // Maximum transmission unit of the physical port available in storage array. Mtu *int64 `json:"Mtu,omitempty"` // Name of the port available in storage array. @@ -809,7 +809,7 @@ func (o *StorageNetAppEthernetPort) UnmarshalJSON(data []byte) (err error) { // Type of the port available in storage array. * `LAG` - Storage port of type lag. * `physical` - LIFs can be configured directly on physical ports. * `VLAN` - A logical port that receives and sends VLAN-tagged (IEEE 802.1Q standard) traffic. VLAN port characteristics include the VLAN ID for the port. Type *string `json:"Type,omitempty"` // Universally unique identifier of the physical port. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` ArrayController NullableStorageNetAppNodeRelationship `json:"ArrayController,omitempty"` // An array of relationships to storageNetAppEthernetPortEvent resources. Events []StorageNetAppEthernetPortEventRelationship `json:"Events,omitempty"` diff --git a/intersight_gosdk/model_storage_net_app_ethernet_port_event.go b/intersight_gosdk/model_storage_net_app_ethernet_port_event.go index 54cf39f083..09ef5a3b48 100644 --- a/intersight_gosdk/model_storage_net_app_ethernet_port_event.go +++ b/intersight_gosdk/model_storage_net_app_ethernet_port_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_ethernet_port_event_list.go b/intersight_gosdk/model_storage_net_app_ethernet_port_event_list.go index 97da849c7f..07a0fc39c3 100644 --- a/intersight_gosdk/model_storage_net_app_ethernet_port_event_list.go +++ b/intersight_gosdk/model_storage_net_app_ethernet_port_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_ethernet_port_event_relationship.go b/intersight_gosdk/model_storage_net_app_ethernet_port_event_relationship.go index 04b81967b8..4c4daac4e2 100644 --- a/intersight_gosdk/model_storage_net_app_ethernet_port_event_relationship.go +++ b/intersight_gosdk/model_storage_net_app_ethernet_port_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_ethernet_port_event_response.go b/intersight_gosdk/model_storage_net_app_ethernet_port_event_response.go index 8cec65ff0e..49ac59c116 100644 --- a/intersight_gosdk/model_storage_net_app_ethernet_port_event_response.go +++ b/intersight_gosdk/model_storage_net_app_ethernet_port_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_ethernet_port_lag.go b/intersight_gosdk/model_storage_net_app_ethernet_port_lag.go index 8410eb1fec..3f8de4f7af 100644 --- a/intersight_gosdk/model_storage_net_app_ethernet_port_lag.go +++ b/intersight_gosdk/model_storage_net_app_ethernet_port_lag.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_ethernet_port_list.go b/intersight_gosdk/model_storage_net_app_ethernet_port_list.go index 66e7b34ce5..72cfa83de5 100644 --- a/intersight_gosdk/model_storage_net_app_ethernet_port_list.go +++ b/intersight_gosdk/model_storage_net_app_ethernet_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_ethernet_port_relationship.go b/intersight_gosdk/model_storage_net_app_ethernet_port_relationship.go index 375024d567..1ff1fa2e5f 100644 --- a/intersight_gosdk/model_storage_net_app_ethernet_port_relationship.go +++ b/intersight_gosdk/model_storage_net_app_ethernet_port_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_ethernet_port_response.go b/intersight_gosdk/model_storage_net_app_ethernet_port_response.go index c0d2c94965..7a8968329e 100644 --- a/intersight_gosdk/model_storage_net_app_ethernet_port_response.go +++ b/intersight_gosdk/model_storage_net_app_ethernet_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_ethernet_port_vlan.go b/intersight_gosdk/model_storage_net_app_ethernet_port_vlan.go index 1c2795b688..c5037657f6 100644 --- a/intersight_gosdk/model_storage_net_app_ethernet_port_vlan.go +++ b/intersight_gosdk/model_storage_net_app_ethernet_port_vlan.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_export_policy.go b/intersight_gosdk/model_storage_net_app_export_policy.go index d4cd387601..eb406f3c9c 100644 --- a/intersight_gosdk/model_storage_net_app_export_policy.go +++ b/intersight_gosdk/model_storage_net_app_export_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type StorageNetAppExportPolicy struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Unique identity of the device. - ClusterUuid *string `json:"ClusterUuid,omitempty"` + ClusterUuid *string `json:"ClusterUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` NetAppExportPolicyRule []StorageNetAppExportPolicyRule `json:"NetAppExportPolicyRule,omitempty"` // ID for the Export Policy. PolicyId *int64 `json:"PolicyId,omitempty"` @@ -438,7 +438,7 @@ func (o *StorageNetAppExportPolicy) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Unique identity of the device. - ClusterUuid *string `json:"ClusterUuid,omitempty"` + ClusterUuid *string `json:"ClusterUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` NetAppExportPolicyRule []StorageNetAppExportPolicyRule `json:"NetAppExportPolicyRule,omitempty"` // ID for the Export Policy. PolicyId *int64 `json:"PolicyId,omitempty"` diff --git a/intersight_gosdk/model_storage_net_app_export_policy_list.go b/intersight_gosdk/model_storage_net_app_export_policy_list.go index 07291e3382..142510e4a2 100644 --- a/intersight_gosdk/model_storage_net_app_export_policy_list.go +++ b/intersight_gosdk/model_storage_net_app_export_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_export_policy_response.go b/intersight_gosdk/model_storage_net_app_export_policy_response.go index 4c06f9b07f..f8682db466 100644 --- a/intersight_gosdk/model_storage_net_app_export_policy_response.go +++ b/intersight_gosdk/model_storage_net_app_export_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_export_policy_rule.go b/intersight_gosdk/model_storage_net_app_export_policy_rule.go index 7731c22b56..6e14286458 100644 --- a/intersight_gosdk/model_storage_net_app_export_policy_rule.go +++ b/intersight_gosdk/model_storage_net_app_export_policy_rule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_fc_interface.go b/intersight_gosdk/model_storage_net_app_fc_interface.go index 03c9002f1a..05b362c189 100644 --- a/intersight_gosdk/model_storage_net_app_fc_interface.go +++ b/intersight_gosdk/model_storage_net_app_fc_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -38,7 +38,7 @@ type StorageNetAppFcInterface struct { // The storage virtual machine name for the interface. SvmName *string `json:"SvmName,omitempty"` // Uuid of NetApp FC Interface. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The parent volume name for the interface. VolumeName *string `json:"VolumeName,omitempty"` ArrayController NullableStorageNetAppNodeRelationship `json:"ArrayController,omitempty"` @@ -610,7 +610,7 @@ func (o *StorageNetAppFcInterface) UnmarshalJSON(data []byte) (err error) { // The storage virtual machine name for the interface. SvmName *string `json:"SvmName,omitempty"` // Uuid of NetApp FC Interface. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The parent volume name for the interface. VolumeName *string `json:"VolumeName,omitempty"` ArrayController NullableStorageNetAppNodeRelationship `json:"ArrayController,omitempty"` diff --git a/intersight_gosdk/model_storage_net_app_fc_interface_event.go b/intersight_gosdk/model_storage_net_app_fc_interface_event.go index 8568c4c90f..9294b95575 100644 --- a/intersight_gosdk/model_storage_net_app_fc_interface_event.go +++ b/intersight_gosdk/model_storage_net_app_fc_interface_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_fc_interface_event_list.go b/intersight_gosdk/model_storage_net_app_fc_interface_event_list.go index 0807242797..8122862dd1 100644 --- a/intersight_gosdk/model_storage_net_app_fc_interface_event_list.go +++ b/intersight_gosdk/model_storage_net_app_fc_interface_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_fc_interface_event_relationship.go b/intersight_gosdk/model_storage_net_app_fc_interface_event_relationship.go index 26e5e2804f..d1539c6591 100644 --- a/intersight_gosdk/model_storage_net_app_fc_interface_event_relationship.go +++ b/intersight_gosdk/model_storage_net_app_fc_interface_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_fc_interface_event_response.go b/intersight_gosdk/model_storage_net_app_fc_interface_event_response.go index b5c43ae74e..2b6198893e 100644 --- a/intersight_gosdk/model_storage_net_app_fc_interface_event_response.go +++ b/intersight_gosdk/model_storage_net_app_fc_interface_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_fc_interface_list.go b/intersight_gosdk/model_storage_net_app_fc_interface_list.go index f500afd018..885024adca 100644 --- a/intersight_gosdk/model_storage_net_app_fc_interface_list.go +++ b/intersight_gosdk/model_storage_net_app_fc_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_fc_interface_relationship.go b/intersight_gosdk/model_storage_net_app_fc_interface_relationship.go index 4c937ebd7f..a056da9309 100644 --- a/intersight_gosdk/model_storage_net_app_fc_interface_relationship.go +++ b/intersight_gosdk/model_storage_net_app_fc_interface_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_fc_interface_response.go b/intersight_gosdk/model_storage_net_app_fc_interface_response.go index 8f5b047db3..45e640c540 100644 --- a/intersight_gosdk/model_storage_net_app_fc_interface_response.go +++ b/intersight_gosdk/model_storage_net_app_fc_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_fc_port.go b/intersight_gosdk/model_storage_net_app_fc_port.go index 076df1ea6c..3023ba0eb0 100644 --- a/intersight_gosdk/model_storage_net_app_fc_port.go +++ b/intersight_gosdk/model_storage_net_app_fc_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -39,7 +39,7 @@ type StorageNetAppFcPort struct { // State of the port available in storage array. * `Unknown` - Default unknown port state. * `StartUp` - The port in the storage array is booting up. * `LinkNotConnected` - The port has finished initialization, but a link with the fabric is not established. * `Online` - The port is initialized and a link with the fabric has been established. * `LinkDisconnected` - The link on this port is currently not established. * `OfflineUser` - The port is administratively disabled. * `OfflineSystem` - The port is set to offline by the system. This happens when the port encounters too many errors. * `NodeOffline` - The state information for the port cannot be retrieved. The node is offline or inaccessible. State *string `json:"State,omitempty"` // Universally unique identifier of the FC port. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` ArrayController NullableStorageNetAppNodeRelationship `json:"ArrayController,omitempty"` // An array of relationships to storageNetAppFcPortEvent resources. Events []StorageNetAppFcPortEventRelationship `json:"Events,omitempty"` @@ -513,7 +513,7 @@ func (o *StorageNetAppFcPort) UnmarshalJSON(data []byte) (err error) { // State of the port available in storage array. * `Unknown` - Default unknown port state. * `StartUp` - The port in the storage array is booting up. * `LinkNotConnected` - The port has finished initialization, but a link with the fabric is not established. * `Online` - The port is initialized and a link with the fabric has been established. * `LinkDisconnected` - The link on this port is currently not established. * `OfflineUser` - The port is administratively disabled. * `OfflineSystem` - The port is set to offline by the system. This happens when the port encounters too many errors. * `NodeOffline` - The state information for the port cannot be retrieved. The node is offline or inaccessible. State *string `json:"State,omitempty"` // Universally unique identifier of the FC port. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` ArrayController NullableStorageNetAppNodeRelationship `json:"ArrayController,omitempty"` // An array of relationships to storageNetAppFcPortEvent resources. Events []StorageNetAppFcPortEventRelationship `json:"Events,omitempty"` diff --git a/intersight_gosdk/model_storage_net_app_fc_port_event.go b/intersight_gosdk/model_storage_net_app_fc_port_event.go index 1e09310688..cf36d36f3c 100644 --- a/intersight_gosdk/model_storage_net_app_fc_port_event.go +++ b/intersight_gosdk/model_storage_net_app_fc_port_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_fc_port_event_list.go b/intersight_gosdk/model_storage_net_app_fc_port_event_list.go index eff6b98c1a..19771689f9 100644 --- a/intersight_gosdk/model_storage_net_app_fc_port_event_list.go +++ b/intersight_gosdk/model_storage_net_app_fc_port_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_fc_port_event_relationship.go b/intersight_gosdk/model_storage_net_app_fc_port_event_relationship.go index f4fffc55e9..1c94d09928 100644 --- a/intersight_gosdk/model_storage_net_app_fc_port_event_relationship.go +++ b/intersight_gosdk/model_storage_net_app_fc_port_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_fc_port_event_response.go b/intersight_gosdk/model_storage_net_app_fc_port_event_response.go index 1868bff809..c76b9e9e38 100644 --- a/intersight_gosdk/model_storage_net_app_fc_port_event_response.go +++ b/intersight_gosdk/model_storage_net_app_fc_port_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_fc_port_list.go b/intersight_gosdk/model_storage_net_app_fc_port_list.go index bf3d50b824..318863b94d 100644 --- a/intersight_gosdk/model_storage_net_app_fc_port_list.go +++ b/intersight_gosdk/model_storage_net_app_fc_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_fc_port_relationship.go b/intersight_gosdk/model_storage_net_app_fc_port_relationship.go index f8303fc9ff..71e9d84a70 100644 --- a/intersight_gosdk/model_storage_net_app_fc_port_relationship.go +++ b/intersight_gosdk/model_storage_net_app_fc_port_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_fc_port_response.go b/intersight_gosdk/model_storage_net_app_fc_port_response.go index f4a5d9ff6a..ba2b022c2c 100644 --- a/intersight_gosdk/model_storage_net_app_fc_port_response.go +++ b/intersight_gosdk/model_storage_net_app_fc_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_high_availability.go b/intersight_gosdk/model_storage_net_app_high_availability.go index aa6a6aaab5..a2dadf2bd1 100644 --- a/intersight_gosdk/model_storage_net_app_high_availability.go +++ b/intersight_gosdk/model_storage_net_app_high_availability.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_initiator_group.go b/intersight_gosdk/model_storage_net_app_initiator_group.go index bfd567498b..2acbea35a2 100644 --- a/intersight_gosdk/model_storage_net_app_initiator_group.go +++ b/intersight_gosdk/model_storage_net_app_initiator_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type StorageNetAppInitiatorGroup struct { // The storage virtual machine name for the initiator group. SvmName *string `json:"SvmName,omitempty"` // Universally unique identifier of the LUN. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` AdditionalProperties map[string]interface{} } @@ -358,7 +358,7 @@ func (o *StorageNetAppInitiatorGroup) UnmarshalJSON(data []byte) (err error) { // The storage virtual machine name for the initiator group. SvmName *string `json:"SvmName,omitempty"` // Universally unique identifier of the LUN. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` } diff --git a/intersight_gosdk/model_storage_net_app_initiator_group_list.go b/intersight_gosdk/model_storage_net_app_initiator_group_list.go index 8ae8736bd7..b7f8e25e69 100644 --- a/intersight_gosdk/model_storage_net_app_initiator_group_list.go +++ b/intersight_gosdk/model_storage_net_app_initiator_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_initiator_group_relationship.go b/intersight_gosdk/model_storage_net_app_initiator_group_relationship.go index 2072ccb1d1..0a9bcb9ea0 100644 --- a/intersight_gosdk/model_storage_net_app_initiator_group_relationship.go +++ b/intersight_gosdk/model_storage_net_app_initiator_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_initiator_group_response.go b/intersight_gosdk/model_storage_net_app_initiator_group_response.go index 532d5892f2..d04a086393 100644 --- a/intersight_gosdk/model_storage_net_app_initiator_group_response.go +++ b/intersight_gosdk/model_storage_net_app_initiator_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_ip_interface.go b/intersight_gosdk/model_storage_net_app_ip_interface.go index ecb1b11056..3a3e6149ac 100644 --- a/intersight_gosdk/model_storage_net_app_ip_interface.go +++ b/intersight_gosdk/model_storage_net_app_ip_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -45,12 +45,12 @@ type StorageNetAppIpInterface struct { // Service policy name of IP interface. ServicePolicyName *string `json:"ServicePolicyName,omitempty"` // Service policy UUID of IP interface. - ServicePolicyUuid *string `json:"ServicePolicyUuid,omitempty"` + ServicePolicyUuid *string `json:"ServicePolicyUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Services []string `json:"Services,omitempty"` // The state of the IP interface. * `down` - An inactive port is listed as Down. * `up` - An active port is listed as Up. * `present` - An active port is listed as present. State *string `json:"State,omitempty"` // Uuid of NetApp IP Interface. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` ArrayController NullableStorageNetAppNodeRelationship `json:"ArrayController,omitempty"` // An array of relationships to storageNetAppIpInterfaceEvent resources. Events []StorageNetAppIpInterfaceEventRelationship `json:"Events,omitempty"` @@ -835,12 +835,12 @@ func (o *StorageNetAppIpInterface) UnmarshalJSON(data []byte) (err error) { // Service policy name of IP interface. ServicePolicyName *string `json:"ServicePolicyName,omitempty"` // Service policy UUID of IP interface. - ServicePolicyUuid *string `json:"ServicePolicyUuid,omitempty"` + ServicePolicyUuid *string `json:"ServicePolicyUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Services []string `json:"Services,omitempty"` // The state of the IP interface. * `down` - An inactive port is listed as Down. * `up` - An active port is listed as Up. * `present` - An active port is listed as present. State *string `json:"State,omitempty"` // Uuid of NetApp IP Interface. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` ArrayController NullableStorageNetAppNodeRelationship `json:"ArrayController,omitempty"` // An array of relationships to storageNetAppIpInterfaceEvent resources. Events []StorageNetAppIpInterfaceEventRelationship `json:"Events,omitempty"` diff --git a/intersight_gosdk/model_storage_net_app_ip_interface_event.go b/intersight_gosdk/model_storage_net_app_ip_interface_event.go index 40ec048128..c01710daf0 100644 --- a/intersight_gosdk/model_storage_net_app_ip_interface_event.go +++ b/intersight_gosdk/model_storage_net_app_ip_interface_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_ip_interface_event_list.go b/intersight_gosdk/model_storage_net_app_ip_interface_event_list.go index 928624cb8a..698972737d 100644 --- a/intersight_gosdk/model_storage_net_app_ip_interface_event_list.go +++ b/intersight_gosdk/model_storage_net_app_ip_interface_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_ip_interface_event_relationship.go b/intersight_gosdk/model_storage_net_app_ip_interface_event_relationship.go index 325fa053d1..eae95dd7e7 100644 --- a/intersight_gosdk/model_storage_net_app_ip_interface_event_relationship.go +++ b/intersight_gosdk/model_storage_net_app_ip_interface_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_ip_interface_event_response.go b/intersight_gosdk/model_storage_net_app_ip_interface_event_response.go index 678108d951..44ea438e7f 100644 --- a/intersight_gosdk/model_storage_net_app_ip_interface_event_response.go +++ b/intersight_gosdk/model_storage_net_app_ip_interface_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_ip_interface_list.go b/intersight_gosdk/model_storage_net_app_ip_interface_list.go index 0b1951db00..3f7a4fd7e0 100644 --- a/intersight_gosdk/model_storage_net_app_ip_interface_list.go +++ b/intersight_gosdk/model_storage_net_app_ip_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_ip_interface_relationship.go b/intersight_gosdk/model_storage_net_app_ip_interface_relationship.go index 3ce0572620..dec1525d54 100644 --- a/intersight_gosdk/model_storage_net_app_ip_interface_relationship.go +++ b/intersight_gosdk/model_storage_net_app_ip_interface_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_ip_interface_response.go b/intersight_gosdk/model_storage_net_app_ip_interface_response.go index 060eb59313..60e11df35b 100644 --- a/intersight_gosdk/model_storage_net_app_ip_interface_response.go +++ b/intersight_gosdk/model_storage_net_app_ip_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_iscsi_service.go b/intersight_gosdk/model_storage_net_app_iscsi_service.go index cb6f4915bd..b1626719d8 100644 --- a/intersight_gosdk/model_storage_net_app_iscsi_service.go +++ b/intersight_gosdk/model_storage_net_app_iscsi_service.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type StorageNetAppIscsiService struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Unique identifier for the NetApp Storage Virtual Machine. - SvmUuid *string `json:"SvmUuid,omitempty"` + SvmUuid *string `json:"SvmUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The iSCSI target alias of the iSCSI service. TargetAlias *string `json:"TargetAlias,omitempty"` // The iSCSI target name of the iSCSI service. @@ -354,7 +354,7 @@ func (o *StorageNetAppIscsiService) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Unique identifier for the NetApp Storage Virtual Machine. - SvmUuid *string `json:"SvmUuid,omitempty"` + SvmUuid *string `json:"SvmUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The iSCSI target alias of the iSCSI service. TargetAlias *string `json:"TargetAlias,omitempty"` // The iSCSI target name of the iSCSI service. diff --git a/intersight_gosdk/model_storage_net_app_iscsi_service_list.go b/intersight_gosdk/model_storage_net_app_iscsi_service_list.go index af82478bc6..40dff5340c 100644 --- a/intersight_gosdk/model_storage_net_app_iscsi_service_list.go +++ b/intersight_gosdk/model_storage_net_app_iscsi_service_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_iscsi_service_response.go b/intersight_gosdk/model_storage_net_app_iscsi_service_response.go index 6a75d8c8c7..e753d0d901 100644 --- a/intersight_gosdk/model_storage_net_app_iscsi_service_response.go +++ b/intersight_gosdk/model_storage_net_app_iscsi_service_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_license.go b/intersight_gosdk/model_storage_net_app_license.go index 9a62add8d3..d748fdf90f 100644 --- a/intersight_gosdk/model_storage_net_app_license.go +++ b/intersight_gosdk/model_storage_net_app_license.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type StorageNetAppLicense struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Unique identity of the device. - ClusterUuid *string `json:"ClusterUuid,omitempty"` + ClusterUuid *string `json:"ClusterUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The name of the license package. Name *string `json:"Name,omitempty"` // Summary state of license package based on all installed licenses. * `Unknown` - The summary state of the license package is unknown. * `Compliant` - The summary state of the license package is compliant. * `Noncompliant` - The summary state of the license package is noncompliant. * `Unlicensed` - The summary state of the license package is unlicensed. @@ -354,7 +354,7 @@ func (o *StorageNetAppLicense) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Unique identity of the device. - ClusterUuid *string `json:"ClusterUuid,omitempty"` + ClusterUuid *string `json:"ClusterUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The name of the license package. Name *string `json:"Name,omitempty"` // Summary state of license package based on all installed licenses. * `Unknown` - The summary state of the license package is unknown. * `Compliant` - The summary state of the license package is compliant. * `Noncompliant` - The summary state of the license package is noncompliant. * `Unlicensed` - The summary state of the license package is unlicensed. diff --git a/intersight_gosdk/model_storage_net_app_license_list.go b/intersight_gosdk/model_storage_net_app_license_list.go index b005d7178b..dd08192239 100644 --- a/intersight_gosdk/model_storage_net_app_license_list.go +++ b/intersight_gosdk/model_storage_net_app_license_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_license_response.go b/intersight_gosdk/model_storage_net_app_license_response.go index f354120476..c27c2d2bb3 100644 --- a/intersight_gosdk/model_storage_net_app_license_response.go +++ b/intersight_gosdk/model_storage_net_app_license_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_lun.go b/intersight_gosdk/model_storage_net_app_lun.go index fdb36ae0f8..024f26b69b 100644 --- a/intersight_gosdk/model_storage_net_app_lun.go +++ b/intersight_gosdk/model_storage_net_app_lun.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -49,7 +49,7 @@ type StorageNetAppLun struct { // The storage virtual machine name for the lun. SvmName *string `json:"SvmName,omitempty"` // Universally unique identifier of the LUN. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The parent volume name for the lun. VolumeName *string `json:"VolumeName,omitempty"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` @@ -833,7 +833,7 @@ func (o *StorageNetAppLun) UnmarshalJSON(data []byte) (err error) { // The storage virtual machine name for the lun. SvmName *string `json:"SvmName,omitempty"` // Universally unique identifier of the LUN. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The parent volume name for the lun. VolumeName *string `json:"VolumeName,omitempty"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` diff --git a/intersight_gosdk/model_storage_net_app_lun_event.go b/intersight_gosdk/model_storage_net_app_lun_event.go index f8fc4f726f..1e3e5bc8f8 100644 --- a/intersight_gosdk/model_storage_net_app_lun_event.go +++ b/intersight_gosdk/model_storage_net_app_lun_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_lun_event_list.go b/intersight_gosdk/model_storage_net_app_lun_event_list.go index dbf781df9c..dff13b5bf3 100644 --- a/intersight_gosdk/model_storage_net_app_lun_event_list.go +++ b/intersight_gosdk/model_storage_net_app_lun_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_lun_event_relationship.go b/intersight_gosdk/model_storage_net_app_lun_event_relationship.go index b05cc5d2b3..094fc04caf 100644 --- a/intersight_gosdk/model_storage_net_app_lun_event_relationship.go +++ b/intersight_gosdk/model_storage_net_app_lun_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_lun_event_response.go b/intersight_gosdk/model_storage_net_app_lun_event_response.go index 681d1f23d5..2bac8f9d44 100644 --- a/intersight_gosdk/model_storage_net_app_lun_event_response.go +++ b/intersight_gosdk/model_storage_net_app_lun_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_lun_list.go b/intersight_gosdk/model_storage_net_app_lun_list.go index e8754e8021..00525cb7cc 100644 --- a/intersight_gosdk/model_storage_net_app_lun_list.go +++ b/intersight_gosdk/model_storage_net_app_lun_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_lun_map.go b/intersight_gosdk/model_storage_net_app_lun_map.go index af130d20c4..abbf1c394c 100644 --- a/intersight_gosdk/model_storage_net_app_lun_map.go +++ b/intersight_gosdk/model_storage_net_app_lun_map.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type StorageNetAppLunMap struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // UUID of the initiator group. - IgroupUuid *string `json:"IgroupUuid,omitempty"` + IgroupUuid *string `json:"IgroupUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Universally unique identifier of the LUN. - LunUuid *string `json:"LunUuid,omitempty"` + LunUuid *string `json:"LunUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // An array of relationships to storageNetAppInitiatorGroup resources. Host []StorageNetAppInitiatorGroupRelationship `json:"Host,omitempty"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` @@ -402,9 +402,9 @@ func (o *StorageNetAppLunMap) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // UUID of the initiator group. - IgroupUuid *string `json:"IgroupUuid,omitempty"` + IgroupUuid *string `json:"IgroupUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Universally unique identifier of the LUN. - LunUuid *string `json:"LunUuid,omitempty"` + LunUuid *string `json:"LunUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // An array of relationships to storageNetAppInitiatorGroup resources. Host []StorageNetAppInitiatorGroupRelationship `json:"Host,omitempty"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` diff --git a/intersight_gosdk/model_storage_net_app_lun_map_list.go b/intersight_gosdk/model_storage_net_app_lun_map_list.go index 0c077395c5..a948ccccc4 100644 --- a/intersight_gosdk/model_storage_net_app_lun_map_list.go +++ b/intersight_gosdk/model_storage_net_app_lun_map_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_lun_map_response.go b/intersight_gosdk/model_storage_net_app_lun_map_response.go index 8b93c9074e..c849f0948b 100644 --- a/intersight_gosdk/model_storage_net_app_lun_map_response.go +++ b/intersight_gosdk/model_storage_net_app_lun_map_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_lun_relationship.go b/intersight_gosdk/model_storage_net_app_lun_relationship.go index 739c313036..8e1dad5a85 100644 --- a/intersight_gosdk/model_storage_net_app_lun_relationship.go +++ b/intersight_gosdk/model_storage_net_app_lun_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_lun_response.go b/intersight_gosdk/model_storage_net_app_lun_response.go index cd8dd5a4a7..661bcdb7e0 100644 --- a/intersight_gosdk/model_storage_net_app_lun_response.go +++ b/intersight_gosdk/model_storage_net_app_lun_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_namespace.go b/intersight_gosdk/model_storage_net_app_namespace.go index d60e5b5c38..a54332151b 100644 --- a/intersight_gosdk/model_storage_net_app_namespace.go +++ b/intersight_gosdk/model_storage_net_app_namespace.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -46,7 +46,7 @@ type StorageNetAppNamespace struct { // The storage virtual machine name for the NVMe namespace. SvmName *string `json:"SvmName,omitempty"` // Universally unique identifier of the NVMe namespace. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The volume name in which the NVMe namespace is located. VolumeName *string `json:"VolumeName,omitempty"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` @@ -724,7 +724,7 @@ func (o *StorageNetAppNamespace) UnmarshalJSON(data []byte) (err error) { // The storage virtual machine name for the NVMe namespace. SvmName *string `json:"SvmName,omitempty"` // Universally unique identifier of the NVMe namespace. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The volume name in which the NVMe namespace is located. VolumeName *string `json:"VolumeName,omitempty"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` diff --git a/intersight_gosdk/model_storage_net_app_namespace_list.go b/intersight_gosdk/model_storage_net_app_namespace_list.go index 9d7ac1e9fd..5df9b01644 100644 --- a/intersight_gosdk/model_storage_net_app_namespace_list.go +++ b/intersight_gosdk/model_storage_net_app_namespace_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_namespace_response.go b/intersight_gosdk/model_storage_net_app_namespace_response.go index 26a9344292..3f530802fa 100644 --- a/intersight_gosdk/model_storage_net_app_namespace_response.go +++ b/intersight_gosdk/model_storage_net_app_namespace_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_nfs_client.go b/intersight_gosdk/model_storage_net_app_nfs_client.go index eba9571a14..c24a651128 100644 --- a/intersight_gosdk/model_storage_net_app_nfs_client.go +++ b/intersight_gosdk/model_storage_net_app_nfs_client.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -39,11 +39,11 @@ type StorageNetAppNfsClient struct { // The storage virtual machine name for the NFS client. SvmName *string `json:"SvmName,omitempty"` // Unique identifier for the NetApp Storage Virtual Machine. - SvmUuid *string `json:"SvmUuid,omitempty"` + SvmUuid *string `json:"SvmUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The parent volume name for the NFS client. VolumeName *string `json:"VolumeName,omitempty"` // Unique identifier for the NetApp Volume. - VolumeUuid *string `json:"VolumeUuid,omitempty"` + VolumeUuid *string `json:"VolumeUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` StorageContainer NullableStorageNetAppVolumeRelationship `json:"StorageContainer,omitempty"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` AdditionalProperties map[string]interface{} @@ -596,11 +596,11 @@ func (o *StorageNetAppNfsClient) UnmarshalJSON(data []byte) (err error) { // The storage virtual machine name for the NFS client. SvmName *string `json:"SvmName,omitempty"` // Unique identifier for the NetApp Storage Virtual Machine. - SvmUuid *string `json:"SvmUuid,omitempty"` + SvmUuid *string `json:"SvmUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The parent volume name for the NFS client. VolumeName *string `json:"VolumeName,omitempty"` // Unique identifier for the NetApp Volume. - VolumeUuid *string `json:"VolumeUuid,omitempty"` + VolumeUuid *string `json:"VolumeUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` StorageContainer NullableStorageNetAppVolumeRelationship `json:"StorageContainer,omitempty"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` } diff --git a/intersight_gosdk/model_storage_net_app_nfs_client_list.go b/intersight_gosdk/model_storage_net_app_nfs_client_list.go index 737f7df2e8..5abdbd5a7e 100644 --- a/intersight_gosdk/model_storage_net_app_nfs_client_list.go +++ b/intersight_gosdk/model_storage_net_app_nfs_client_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_nfs_client_response.go b/intersight_gosdk/model_storage_net_app_nfs_client_response.go index d0d5d913a4..ae53fd0d43 100644 --- a/intersight_gosdk/model_storage_net_app_nfs_client_response.go +++ b/intersight_gosdk/model_storage_net_app_nfs_client_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_nfs_service.go b/intersight_gosdk/model_storage_net_app_nfs_service.go index af6ac3d709..22377b60df 100644 --- a/intersight_gosdk/model_storage_net_app_nfs_service.go +++ b/intersight_gosdk/model_storage_net_app_nfs_service.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type StorageNetAppNfsService struct { // Specifies whether NFSv4.0 protocol is enabled. NfsV4Enabled *bool `json:"NfsV4Enabled,omitempty"` // Unique identifier for the NetApp Storage Virtual Machine. - SvmUuid *string `json:"SvmUuid,omitempty"` + SvmUuid *string `json:"SvmUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` AdditionalProperties map[string]interface{} } @@ -397,7 +397,7 @@ func (o *StorageNetAppNfsService) UnmarshalJSON(data []byte) (err error) { // Specifies whether NFSv4.0 protocol is enabled. NfsV4Enabled *bool `json:"NfsV4Enabled,omitempty"` // Unique identifier for the NetApp Storage Virtual Machine. - SvmUuid *string `json:"SvmUuid,omitempty"` + SvmUuid *string `json:"SvmUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` } diff --git a/intersight_gosdk/model_storage_net_app_nfs_service_list.go b/intersight_gosdk/model_storage_net_app_nfs_service_list.go index 5f416b2322..614a1d9f45 100644 --- a/intersight_gosdk/model_storage_net_app_nfs_service_list.go +++ b/intersight_gosdk/model_storage_net_app_nfs_service_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_nfs_service_response.go b/intersight_gosdk/model_storage_net_app_nfs_service_response.go index f297039fc6..bc4dd63f65 100644 --- a/intersight_gosdk/model_storage_net_app_nfs_service_response.go +++ b/intersight_gosdk/model_storage_net_app_nfs_service_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_node.go b/intersight_gosdk/model_storage_net_app_node.go index 30685cebf1..909bb2c81a 100644 --- a/intersight_gosdk/model_storage_net_app_node.go +++ b/intersight_gosdk/model_storage_net_app_node.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -42,7 +42,7 @@ type StorageNetAppNode struct { // The system id of the NetApp Node. Systemid *string `json:"Systemid,omitempty"` // Universally unique identifier of NetApp Node. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` // An array of relationships to storageNetAppNodeEvent resources. Events []StorageNetAppNodeEventRelationship `json:"Events,omitempty"` @@ -603,7 +603,7 @@ func (o *StorageNetAppNode) UnmarshalJSON(data []byte) (err error) { // The system id of the NetApp Node. Systemid *string `json:"Systemid,omitempty"` // Universally unique identifier of NetApp Node. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` // An array of relationships to storageNetAppNodeEvent resources. Events []StorageNetAppNodeEventRelationship `json:"Events,omitempty"` diff --git a/intersight_gosdk/model_storage_net_app_node_cdp_neighbor.go b/intersight_gosdk/model_storage_net_app_node_cdp_neighbor.go index a95a6fc766..a2e8f50218 100644 --- a/intersight_gosdk/model_storage_net_app_node_cdp_neighbor.go +++ b/intersight_gosdk/model_storage_net_app_node_cdp_neighbor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_node_cdp_neighbor_list.go b/intersight_gosdk/model_storage_net_app_node_cdp_neighbor_list.go index 4070d609c2..bebf1567d8 100644 --- a/intersight_gosdk/model_storage_net_app_node_cdp_neighbor_list.go +++ b/intersight_gosdk/model_storage_net_app_node_cdp_neighbor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_node_cdp_neighbor_response.go b/intersight_gosdk/model_storage_net_app_node_cdp_neighbor_response.go index 93f50e2fb4..bfab9dfb8f 100644 --- a/intersight_gosdk/model_storage_net_app_node_cdp_neighbor_response.go +++ b/intersight_gosdk/model_storage_net_app_node_cdp_neighbor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_node_event.go b/intersight_gosdk/model_storage_net_app_node_event.go index d3ccd5b92a..ce9c3a22cc 100644 --- a/intersight_gosdk/model_storage_net_app_node_event.go +++ b/intersight_gosdk/model_storage_net_app_node_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_node_event_list.go b/intersight_gosdk/model_storage_net_app_node_event_list.go index b7533a0134..133bc92453 100644 --- a/intersight_gosdk/model_storage_net_app_node_event_list.go +++ b/intersight_gosdk/model_storage_net_app_node_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_node_event_relationship.go b/intersight_gosdk/model_storage_net_app_node_event_relationship.go index 7b1d75c107..286e8bfc3a 100644 --- a/intersight_gosdk/model_storage_net_app_node_event_relationship.go +++ b/intersight_gosdk/model_storage_net_app_node_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_node_event_response.go b/intersight_gosdk/model_storage_net_app_node_event_response.go index 167e6b031a..e926048892 100644 --- a/intersight_gosdk/model_storage_net_app_node_event_response.go +++ b/intersight_gosdk/model_storage_net_app_node_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_node_list.go b/intersight_gosdk/model_storage_net_app_node_list.go index 9671726c5c..ff631d0edc 100644 --- a/intersight_gosdk/model_storage_net_app_node_list.go +++ b/intersight_gosdk/model_storage_net_app_node_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_node_relationship.go b/intersight_gosdk/model_storage_net_app_node_relationship.go index eb68a8efec..cbec3a21eb 100644 --- a/intersight_gosdk/model_storage_net_app_node_relationship.go +++ b/intersight_gosdk/model_storage_net_app_node_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_node_response.go b/intersight_gosdk/model_storage_net_app_node_response.go index 65553e5891..085ea48762 100644 --- a/intersight_gosdk/model_storage_net_app_node_response.go +++ b/intersight_gosdk/model_storage_net_app_node_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_non_data_ip_interface.go b/intersight_gosdk/model_storage_net_app_non_data_ip_interface.go index 5975ebaba1..b450444060 100644 --- a/intersight_gosdk/model_storage_net_app_non_data_ip_interface.go +++ b/intersight_gosdk/model_storage_net_app_non_data_ip_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event.go b/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event.go index 237a170113..1c152f49d7 100644 --- a/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event.go +++ b/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event_list.go b/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event_list.go index d8d83a31cf..0ce9897bcc 100644 --- a/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event_list.go +++ b/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event_relationship.go b/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event_relationship.go index fee2947066..2134f8baee 100644 --- a/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event_relationship.go +++ b/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event_response.go b/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event_response.go index 6c6170c1e1..a91afb632b 100644 --- a/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event_response.go +++ b/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_non_data_ip_interface_list.go b/intersight_gosdk/model_storage_net_app_non_data_ip_interface_list.go index 00cfc1a1aa..56cad830ad 100644 --- a/intersight_gosdk/model_storage_net_app_non_data_ip_interface_list.go +++ b/intersight_gosdk/model_storage_net_app_non_data_ip_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_non_data_ip_interface_relationship.go b/intersight_gosdk/model_storage_net_app_non_data_ip_interface_relationship.go index 45d67240aa..151904e1d6 100644 --- a/intersight_gosdk/model_storage_net_app_non_data_ip_interface_relationship.go +++ b/intersight_gosdk/model_storage_net_app_non_data_ip_interface_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_non_data_ip_interface_response.go b/intersight_gosdk/model_storage_net_app_non_data_ip_interface_response.go index 4388fd4682..37630b9deb 100644 --- a/intersight_gosdk/model_storage_net_app_non_data_ip_interface_response.go +++ b/intersight_gosdk/model_storage_net_app_non_data_ip_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_ntp_server.go b/intersight_gosdk/model_storage_net_app_ntp_server.go index 6e38343512..eaab687f89 100644 --- a/intersight_gosdk/model_storage_net_app_ntp_server.go +++ b/intersight_gosdk/model_storage_net_app_ntp_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -34,7 +34,7 @@ type StorageNetAppNtpServer struct { // NTP symmetric authentication key identifier or index number (ID). AuthenticationKeyId *string `json:"AuthenticationKeyId,omitempty"` // Unique identity of the device. - ClusterUuid *string `json:"ClusterUuid,omitempty"` + ClusterUuid *string `json:"ClusterUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Indicates whether or not NTP symmetric authentication is enabled. IsAuthenticationEnabled *string `json:"IsAuthenticationEnabled,omitempty"` // NTP server host name, IPv4, or IPv6 address. @@ -474,7 +474,7 @@ func (o *StorageNetAppNtpServer) UnmarshalJSON(data []byte) (err error) { // NTP symmetric authentication key identifier or index number (ID). AuthenticationKeyId *string `json:"AuthenticationKeyId,omitempty"` // Unique identity of the device. - ClusterUuid *string `json:"ClusterUuid,omitempty"` + ClusterUuid *string `json:"ClusterUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Indicates whether or not NTP symmetric authentication is enabled. IsAuthenticationEnabled *string `json:"IsAuthenticationEnabled,omitempty"` // NTP server host name, IPv4, or IPv6 address. diff --git a/intersight_gosdk/model_storage_net_app_ntp_server_list.go b/intersight_gosdk/model_storage_net_app_ntp_server_list.go index ad0955115e..9294378971 100644 --- a/intersight_gosdk/model_storage_net_app_ntp_server_list.go +++ b/intersight_gosdk/model_storage_net_app_ntp_server_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_ntp_server_response.go b/intersight_gosdk/model_storage_net_app_ntp_server_response.go index 595789d4db..62fd53ca4c 100644 --- a/intersight_gosdk/model_storage_net_app_ntp_server_response.go +++ b/intersight_gosdk/model_storage_net_app_ntp_server_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_performance_metrics_average.go b/intersight_gosdk/model_storage_net_app_performance_metrics_average.go index ae12f0d2a5..b72cb116a0 100644 --- a/intersight_gosdk/model_storage_net_app_performance_metrics_average.go +++ b/intersight_gosdk/model_storage_net_app_performance_metrics_average.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_port.go b/intersight_gosdk/model_storage_net_app_port.go index 689f2aa511..339f81dc61 100644 --- a/intersight_gosdk/model_storage_net_app_port.go +++ b/intersight_gosdk/model_storage_net_app_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_qtree.go b/intersight_gosdk/model_storage_net_app_qtree.go index f52e00af4d..5f27af78de 100644 --- a/intersight_gosdk/model_storage_net_app_qtree.go +++ b/intersight_gosdk/model_storage_net_app_qtree.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -45,7 +45,7 @@ type StorageNetAppQtree struct { // The parent volume name for the qtree. VolumeName *string `json:"VolumeName,omitempty"` // NetApp Volume uuid, unique identifier for the NetApp volume. - VolumeUuid *string `json:"VolumeUuid,omitempty"` + VolumeUuid *string `json:"VolumeUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` StorageContainer NullableStorageNetAppVolumeRelationship `json:"StorageContainer,omitempty"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` AdditionalProperties map[string]interface{} @@ -639,7 +639,7 @@ func (o *StorageNetAppQtree) UnmarshalJSON(data []byte) (err error) { // The parent volume name for the qtree. VolumeName *string `json:"VolumeName,omitempty"` // NetApp Volume uuid, unique identifier for the NetApp volume. - VolumeUuid *string `json:"VolumeUuid,omitempty"` + VolumeUuid *string `json:"VolumeUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` StorageContainer NullableStorageNetAppVolumeRelationship `json:"StorageContainer,omitempty"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` } diff --git a/intersight_gosdk/model_storage_net_app_qtree_list.go b/intersight_gosdk/model_storage_net_app_qtree_list.go index 9055133338..5782156217 100644 --- a/intersight_gosdk/model_storage_net_app_qtree_list.go +++ b/intersight_gosdk/model_storage_net_app_qtree_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_qtree_response.go b/intersight_gosdk/model_storage_net_app_qtree_response.go index 7fe5966ef1..e01607c9be 100644 --- a/intersight_gosdk/model_storage_net_app_qtree_response.go +++ b/intersight_gosdk/model_storage_net_app_qtree_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_schedule.go b/intersight_gosdk/model_storage_net_app_schedule.go index c3c18b4a7c..be488b5f98 100644 --- a/intersight_gosdk/model_storage_net_app_schedule.go +++ b/intersight_gosdk/model_storage_net_app_schedule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type StorageNetAppSchedule struct { // The type of the schedule (cron or interval). Type *string `json:"Type,omitempty"` // Universally unique identifier of the schedule. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` AdditionalProperties map[string]interface{} } @@ -358,7 +358,7 @@ func (o *StorageNetAppSchedule) UnmarshalJSON(data []byte) (err error) { // The type of the schedule (cron or interval). Type *string `json:"Type,omitempty"` // Universally unique identifier of the schedule. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` } diff --git a/intersight_gosdk/model_storage_net_app_schedule_list.go b/intersight_gosdk/model_storage_net_app_schedule_list.go index 4c67f589e7..58ca20558a 100644 --- a/intersight_gosdk/model_storage_net_app_schedule_list.go +++ b/intersight_gosdk/model_storage_net_app_schedule_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_schedule_response.go b/intersight_gosdk/model_storage_net_app_schedule_response.go index b993921d6a..b20e73f75e 100644 --- a/intersight_gosdk/model_storage_net_app_schedule_response.go +++ b/intersight_gosdk/model_storage_net_app_schedule_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_sensor.go b/intersight_gosdk/model_storage_net_app_sensor.go index 69fa0b7e10..f3a8507555 100644 --- a/intersight_gosdk/model_storage_net_app_sensor.go +++ b/intersight_gosdk/model_storage_net_app_sensor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_sensor_list.go b/intersight_gosdk/model_storage_net_app_sensor_list.go index 18944b8a47..71983f6509 100644 --- a/intersight_gosdk/model_storage_net_app_sensor_list.go +++ b/intersight_gosdk/model_storage_net_app_sensor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_sensor_response.go b/intersight_gosdk/model_storage_net_app_sensor_response.go index ff7cb316e3..9c939f5e01 100644 --- a/intersight_gosdk/model_storage_net_app_sensor_response.go +++ b/intersight_gosdk/model_storage_net_app_sensor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_snap_mirror_relationship.go b/intersight_gosdk/model_storage_net_app_snap_mirror_relationship.go index 893ccf1951..35ac218d4b 100644 --- a/intersight_gosdk/model_storage_net_app_snap_mirror_relationship.go +++ b/intersight_gosdk/model_storage_net_app_snap_mirror_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -39,13 +39,13 @@ type StorageNetAppSnapMirrorRelationship struct { // SnapMirror policy type can be async, sync, or continuous. PolicyType *string `json:"PolicyType,omitempty"` // Uuid of the NetApp SnapMirror policy. - PolicyUuid *string `json:"PolicyUuid,omitempty"` + PolicyUuid *string `json:"PolicyUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Path to the source endpoint of a SnapMirror relationship. Examples: ONTAP FlexVol/FlexGroup - svm1:volume1; ONTAP SVM - svm1: ; ONTAP Consistency Group - svm1:/cg/cg_name. SourcePath *string `json:"SourcePath,omitempty"` // State of the relationship. State *string `json:"State,omitempty"` // Uuid of the NetApp SnapMirror relationship. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` DestinationTenant NullableStorageNetAppStorageVmRelationship `json:"DestinationTenant,omitempty"` Policy NullableStorageNetAppBaseSnapMirrorPolicyRelationship `json:"Policy,omitempty"` @@ -680,13 +680,13 @@ func (o *StorageNetAppSnapMirrorRelationship) UnmarshalJSON(data []byte) (err er // SnapMirror policy type can be async, sync, or continuous. PolicyType *string `json:"PolicyType,omitempty"` // Uuid of the NetApp SnapMirror policy. - PolicyUuid *string `json:"PolicyUuid,omitempty"` + PolicyUuid *string `json:"PolicyUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Path to the source endpoint of a SnapMirror relationship. Examples: ONTAP FlexVol/FlexGroup - svm1:volume1; ONTAP SVM - svm1: ; ONTAP Consistency Group - svm1:/cg/cg_name. SourcePath *string `json:"SourcePath,omitempty"` // State of the relationship. State *string `json:"State,omitempty"` // Uuid of the NetApp SnapMirror relationship. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` DestinationTenant NullableStorageNetAppStorageVmRelationship `json:"DestinationTenant,omitempty"` Policy NullableStorageNetAppBaseSnapMirrorPolicyRelationship `json:"Policy,omitempty"` diff --git a/intersight_gosdk/model_storage_net_app_snap_mirror_relationship_list.go b/intersight_gosdk/model_storage_net_app_snap_mirror_relationship_list.go index 382aaf5f09..3234cc0e9a 100644 --- a/intersight_gosdk/model_storage_net_app_snap_mirror_relationship_list.go +++ b/intersight_gosdk/model_storage_net_app_snap_mirror_relationship_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_snap_mirror_relationship_response.go b/intersight_gosdk/model_storage_net_app_snap_mirror_relationship_response.go index f0c17c0089..a1d7f3b814 100644 --- a/intersight_gosdk/model_storage_net_app_snap_mirror_relationship_response.go +++ b/intersight_gosdk/model_storage_net_app_snap_mirror_relationship_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_snapshot_policy_schedule.go b/intersight_gosdk/model_storage_net_app_snapshot_policy_schedule.go index 4e5676e6d4..be40f0babd 100644 --- a/intersight_gosdk/model_storage_net_app_snapshot_policy_schedule.go +++ b/intersight_gosdk/model_storage_net_app_snapshot_policy_schedule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_storage_cluster_efficiency.go b/intersight_gosdk/model_storage_net_app_storage_cluster_efficiency.go index dc9ec6385e..170942b0cd 100644 --- a/intersight_gosdk/model_storage_net_app_storage_cluster_efficiency.go +++ b/intersight_gosdk/model_storage_net_app_storage_cluster_efficiency.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_storage_utilization.go b/intersight_gosdk/model_storage_net_app_storage_utilization.go index 873e77c086..f63d4059d4 100644 --- a/intersight_gosdk/model_storage_net_app_storage_utilization.go +++ b/intersight_gosdk/model_storage_net_app_storage_utilization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_storage_vm.go b/intersight_gosdk/model_storage_net_app_storage_vm.go index 085eae9b07..e9bcb556ca 100644 --- a/intersight_gosdk/model_storage_net_app_storage_vm.go +++ b/intersight_gosdk/model_storage_net_app_storage_vm.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_storage_vm_list.go b/intersight_gosdk/model_storage_net_app_storage_vm_list.go index 424f3a7cd5..b36d343d84 100644 --- a/intersight_gosdk/model_storage_net_app_storage_vm_list.go +++ b/intersight_gosdk/model_storage_net_app_storage_vm_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_storage_vm_relationship.go b/intersight_gosdk/model_storage_net_app_storage_vm_relationship.go index f23a7d31df..0aefbae996 100644 --- a/intersight_gosdk/model_storage_net_app_storage_vm_relationship.go +++ b/intersight_gosdk/model_storage_net_app_storage_vm_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_storage_vm_response.go b/intersight_gosdk/model_storage_net_app_storage_vm_response.go index 7b1ebea19c..f2f16c4d72 100644 --- a/intersight_gosdk/model_storage_net_app_storage_vm_response.go +++ b/intersight_gosdk/model_storage_net_app_storage_vm_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_svm_event.go b/intersight_gosdk/model_storage_net_app_svm_event.go index dc815e19dd..185ef02b94 100644 --- a/intersight_gosdk/model_storage_net_app_svm_event.go +++ b/intersight_gosdk/model_storage_net_app_svm_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_svm_event_list.go b/intersight_gosdk/model_storage_net_app_svm_event_list.go index 41d58b845b..07ae0c968f 100644 --- a/intersight_gosdk/model_storage_net_app_svm_event_list.go +++ b/intersight_gosdk/model_storage_net_app_svm_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_svm_event_relationship.go b/intersight_gosdk/model_storage_net_app_svm_event_relationship.go index 5de6fb710c..6e582f7145 100644 --- a/intersight_gosdk/model_storage_net_app_svm_event_relationship.go +++ b/intersight_gosdk/model_storage_net_app_svm_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_svm_event_response.go b/intersight_gosdk/model_storage_net_app_svm_event_response.go index 19b4258ca5..1affc4a242 100644 --- a/intersight_gosdk/model_storage_net_app_svm_event_response.go +++ b/intersight_gosdk/model_storage_net_app_svm_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_svm_snap_mirror_policy.go b/intersight_gosdk/model_storage_net_app_svm_snap_mirror_policy.go index 827a913585..2d3d2b3990 100644 --- a/intersight_gosdk/model_storage_net_app_svm_snap_mirror_policy.go +++ b/intersight_gosdk/model_storage_net_app_svm_snap_mirror_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_svm_snap_mirror_policy_list.go b/intersight_gosdk/model_storage_net_app_svm_snap_mirror_policy_list.go index 81361e96df..4083385222 100644 --- a/intersight_gosdk/model_storage_net_app_svm_snap_mirror_policy_list.go +++ b/intersight_gosdk/model_storage_net_app_svm_snap_mirror_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_svm_snap_mirror_policy_response.go b/intersight_gosdk/model_storage_net_app_svm_snap_mirror_policy_response.go index 750510abba..b13b83cb06 100644 --- a/intersight_gosdk/model_storage_net_app_svm_snap_mirror_policy_response.go +++ b/intersight_gosdk/model_storage_net_app_svm_snap_mirror_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_svm_snapshot_policy.go b/intersight_gosdk/model_storage_net_app_svm_snapshot_policy.go index 1caca05f82..292904bc55 100644 --- a/intersight_gosdk/model_storage_net_app_svm_snapshot_policy.go +++ b/intersight_gosdk/model_storage_net_app_svm_snapshot_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_svm_snapshot_policy_list.go b/intersight_gosdk/model_storage_net_app_svm_snapshot_policy_list.go index 723136daad..484a81defa 100644 --- a/intersight_gosdk/model_storage_net_app_svm_snapshot_policy_list.go +++ b/intersight_gosdk/model_storage_net_app_svm_snapshot_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_svm_snapshot_policy_response.go b/intersight_gosdk/model_storage_net_app_svm_snapshot_policy_response.go index 32ce931dfc..ac9895fe93 100644 --- a/intersight_gosdk/model_storage_net_app_svm_snapshot_policy_response.go +++ b/intersight_gosdk/model_storage_net_app_svm_snapshot_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_volume.go b/intersight_gosdk/model_storage_net_app_volume.go index 0be8c64ba6..31c14d64c6 100644 --- a/intersight_gosdk/model_storage_net_app_volume.go +++ b/intersight_gosdk/model_storage_net_app_volume.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -44,7 +44,7 @@ type StorageNetAppVolume struct { // The name of the Snapshot Policy. SnapshotPolicyName *string `json:"SnapshotPolicyName,omitempty"` // The UUID of the Snapshot Policy. - SnapshotPolicyUuid *string `json:"SnapshotPolicyUuid,omitempty"` + SnapshotPolicyUuid *string `json:"SnapshotPolicyUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The space that has been set aside as a reserve for Snapshot copy usage represented as a percent. SnapshotReservePercent *int64 `json:"SnapshotReservePercent,omitempty"` // The total space used by Snapshot copies in the volume represented in bytes. @@ -58,7 +58,7 @@ type StorageNetAppVolume struct { // NetApp volume type. The volume type can be Read-write, Data-protection, or Load-sharing. * `data-protection` - Prevents modification of the data on the Volume. * `read-write` - Data on the Volume can be modified. * `load-sharing` - The volume type is Load Sharing DP. Type *string `json:"Type,omitempty"` // Universally unique identifier of a NetApp Volume. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` // An array of relationships to storageNetAppAggregate resources. DiskPool []StorageNetAppAggregateRelationship `json:"DiskPool,omitempty"` @@ -972,7 +972,7 @@ func (o *StorageNetAppVolume) UnmarshalJSON(data []byte) (err error) { // The name of the Snapshot Policy. SnapshotPolicyName *string `json:"SnapshotPolicyName,omitempty"` // The UUID of the Snapshot Policy. - SnapshotPolicyUuid *string `json:"SnapshotPolicyUuid,omitempty"` + SnapshotPolicyUuid *string `json:"SnapshotPolicyUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The space that has been set aside as a reserve for Snapshot copy usage represented as a percent. SnapshotReservePercent *int64 `json:"SnapshotReservePercent,omitempty"` // The total space used by Snapshot copies in the volume represented in bytes. @@ -986,7 +986,7 @@ func (o *StorageNetAppVolume) UnmarshalJSON(data []byte) (err error) { // NetApp volume type. The volume type can be Read-write, Data-protection, or Load-sharing. * `data-protection` - Prevents modification of the data on the Volume. * `read-write` - Data on the Volume can be modified. * `load-sharing` - The volume type is Load Sharing DP. Type *string `json:"Type,omitempty"` // Universally unique identifier of a NetApp Volume. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` // An array of relationships to storageNetAppAggregate resources. DiskPool []StorageNetAppAggregateRelationship `json:"DiskPool,omitempty"` diff --git a/intersight_gosdk/model_storage_net_app_volume_event.go b/intersight_gosdk/model_storage_net_app_volume_event.go index af6cec4259..b56205b5ce 100644 --- a/intersight_gosdk/model_storage_net_app_volume_event.go +++ b/intersight_gosdk/model_storage_net_app_volume_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_volume_event_list.go b/intersight_gosdk/model_storage_net_app_volume_event_list.go index 39226b4c91..2442015523 100644 --- a/intersight_gosdk/model_storage_net_app_volume_event_list.go +++ b/intersight_gosdk/model_storage_net_app_volume_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_volume_event_relationship.go b/intersight_gosdk/model_storage_net_app_volume_event_relationship.go index ddf58dc92b..9e9450fbab 100644 --- a/intersight_gosdk/model_storage_net_app_volume_event_relationship.go +++ b/intersight_gosdk/model_storage_net_app_volume_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_volume_event_response.go b/intersight_gosdk/model_storage_net_app_volume_event_response.go index 4757f4edf1..2ecf622079 100644 --- a/intersight_gosdk/model_storage_net_app_volume_event_response.go +++ b/intersight_gosdk/model_storage_net_app_volume_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_volume_list.go b/intersight_gosdk/model_storage_net_app_volume_list.go index 644df80655..5e12bdf5ef 100644 --- a/intersight_gosdk/model_storage_net_app_volume_list.go +++ b/intersight_gosdk/model_storage_net_app_volume_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_volume_relationship.go b/intersight_gosdk/model_storage_net_app_volume_relationship.go index 3427e8e045..4174054434 100644 --- a/intersight_gosdk/model_storage_net_app_volume_relationship.go +++ b/intersight_gosdk/model_storage_net_app_volume_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_volume_response.go b/intersight_gosdk/model_storage_net_app_volume_response.go index 66ed850f81..3a41f0ebd4 100644 --- a/intersight_gosdk/model_storage_net_app_volume_response.go +++ b/intersight_gosdk/model_storage_net_app_volume_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_volume_snapshot.go b/intersight_gosdk/model_storage_net_app_volume_snapshot.go index 6e754df9e3..2b20cf8d09 100644 --- a/intersight_gosdk/model_storage_net_app_volume_snapshot.go +++ b/intersight_gosdk/model_storage_net_app_volume_snapshot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type StorageNetAppVolumeSnapshot struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Universally unique identifier of the volume snapshot. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` StorageContainer NullableStorageNetAppVolumeRelationship `json:"StorageContainer,omitempty"` AdditionalProperties map[string]interface{} @@ -327,7 +327,7 @@ func (o *StorageNetAppVolumeSnapshot) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Universally unique identifier of the volume snapshot. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` StorageContainer NullableStorageNetAppVolumeRelationship `json:"StorageContainer,omitempty"` } diff --git a/intersight_gosdk/model_storage_net_app_volume_snapshot_list.go b/intersight_gosdk/model_storage_net_app_volume_snapshot_list.go index af9cf7a920..0481c226ef 100644 --- a/intersight_gosdk/model_storage_net_app_volume_snapshot_list.go +++ b/intersight_gosdk/model_storage_net_app_volume_snapshot_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_volume_snapshot_response.go b/intersight_gosdk/model_storage_net_app_volume_snapshot_response.go index 52075853d8..4d215efa09 100644 --- a/intersight_gosdk/model_storage_net_app_volume_snapshot_response.go +++ b/intersight_gosdk/model_storage_net_app_volume_snapshot_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_nvme_dedicated_hot_spare_configuration.go b/intersight_gosdk/model_storage_nvme_dedicated_hot_spare_configuration.go index b25b249162..19e8cfd1af 100644 --- a/intersight_gosdk/model_storage_nvme_dedicated_hot_spare_configuration.go +++ b/intersight_gosdk/model_storage_nvme_dedicated_hot_spare_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_nvme_physical_disk_state.go b/intersight_gosdk/model_storage_nvme_physical_disk_state.go index 1584276086..de0155de4e 100644 --- a/intersight_gosdk/model_storage_nvme_physical_disk_state.go +++ b/intersight_gosdk/model_storage_nvme_physical_disk_state.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_nvme_raid_configuration.go b/intersight_gosdk/model_storage_nvme_raid_configuration.go index a9509f41d0..54c22acad3 100644 --- a/intersight_gosdk/model_storage_nvme_raid_configuration.go +++ b/intersight_gosdk/model_storage_nvme_raid_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_nvme_raid_configuration_list.go b/intersight_gosdk/model_storage_nvme_raid_configuration_list.go index e52c497d1c..92514a81e4 100644 --- a/intersight_gosdk/model_storage_nvme_raid_configuration_list.go +++ b/intersight_gosdk/model_storage_nvme_raid_configuration_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_nvme_raid_configuration_response.go b/intersight_gosdk/model_storage_nvme_raid_configuration_response.go index 3644a184a7..46d3d1a375 100644 --- a/intersight_gosdk/model_storage_nvme_raid_configuration_response.go +++ b/intersight_gosdk/model_storage_nvme_raid_configuration_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_nvme_raid_drive_group.go b/intersight_gosdk/model_storage_nvme_raid_drive_group.go index 6fa26338c4..eb55f831f5 100644 --- a/intersight_gosdk/model_storage_nvme_raid_drive_group.go +++ b/intersight_gosdk/model_storage_nvme_raid_drive_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_nvme_virtual_drive_configuration.go b/intersight_gosdk/model_storage_nvme_virtual_drive_configuration.go index 8626be03e5..ad04ea42cf 100644 --- a/intersight_gosdk/model_storage_nvme_virtual_drive_configuration.go +++ b/intersight_gosdk/model_storage_nvme_virtual_drive_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_physical_disk.go b/intersight_gosdk/model_storage_physical_disk.go index ea0ae5385f..ae77f7f2f2 100644 --- a/intersight_gosdk/model_storage_physical_disk.go +++ b/intersight_gosdk/model_storage_physical_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_physical_disk_extension.go b/intersight_gosdk/model_storage_physical_disk_extension.go index 3e04d0aba2..5b871891a1 100644 --- a/intersight_gosdk/model_storage_physical_disk_extension.go +++ b/intersight_gosdk/model_storage_physical_disk_extension.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_physical_disk_extension_list.go b/intersight_gosdk/model_storage_physical_disk_extension_list.go index d5eb82053e..386c55f3d8 100644 --- a/intersight_gosdk/model_storage_physical_disk_extension_list.go +++ b/intersight_gosdk/model_storage_physical_disk_extension_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_physical_disk_extension_relationship.go b/intersight_gosdk/model_storage_physical_disk_extension_relationship.go index 59ccb3792f..acf67a67b3 100644 --- a/intersight_gosdk/model_storage_physical_disk_extension_relationship.go +++ b/intersight_gosdk/model_storage_physical_disk_extension_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_physical_disk_extension_response.go b/intersight_gosdk/model_storage_physical_disk_extension_response.go index 832b55ffe7..16cf1a1495 100644 --- a/intersight_gosdk/model_storage_physical_disk_extension_response.go +++ b/intersight_gosdk/model_storage_physical_disk_extension_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_physical_disk_list.go b/intersight_gosdk/model_storage_physical_disk_list.go index 75dbd3e7da..e233c9bcbc 100644 --- a/intersight_gosdk/model_storage_physical_disk_list.go +++ b/intersight_gosdk/model_storage_physical_disk_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_physical_disk_relationship.go b/intersight_gosdk/model_storage_physical_disk_relationship.go index ab57bbbdb4..2a94788bae 100644 --- a/intersight_gosdk/model_storage_physical_disk_relationship.go +++ b/intersight_gosdk/model_storage_physical_disk_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_physical_disk_response.go b/intersight_gosdk/model_storage_physical_disk_response.go index 57f2bdb410..d6e4f586aa 100644 --- a/intersight_gosdk/model_storage_physical_disk_response.go +++ b/intersight_gosdk/model_storage_physical_disk_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_physical_disk_usage.go b/intersight_gosdk/model_storage_physical_disk_usage.go index 0daafdb33e..cc894b9768 100644 --- a/intersight_gosdk/model_storage_physical_disk_usage.go +++ b/intersight_gosdk/model_storage_physical_disk_usage.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_physical_disk_usage_list.go b/intersight_gosdk/model_storage_physical_disk_usage_list.go index 53352f6e1d..73a998f629 100644 --- a/intersight_gosdk/model_storage_physical_disk_usage_list.go +++ b/intersight_gosdk/model_storage_physical_disk_usage_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_physical_disk_usage_relationship.go b/intersight_gosdk/model_storage_physical_disk_usage_relationship.go index 4bbc4106ef..13da295890 100644 --- a/intersight_gosdk/model_storage_physical_disk_usage_relationship.go +++ b/intersight_gosdk/model_storage_physical_disk_usage_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_physical_disk_usage_response.go b/intersight_gosdk/model_storage_physical_disk_usage_response.go index b874bd7441..3c99624408 100644 --- a/intersight_gosdk/model_storage_physical_disk_usage_response.go +++ b/intersight_gosdk/model_storage_physical_disk_usage_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_array.go b/intersight_gosdk/model_storage_pure_array.go index 20f9a16624..eaf9dca397 100644 --- a/intersight_gosdk/model_storage_pure_array.go +++ b/intersight_gosdk/model_storage_pure_array.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_array_alerts.go b/intersight_gosdk/model_storage_pure_array_alerts.go index a95e365d78..ca39b849a8 100644 --- a/intersight_gosdk/model_storage_pure_array_alerts.go +++ b/intersight_gosdk/model_storage_pure_array_alerts.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_array_alerts_list.go b/intersight_gosdk/model_storage_pure_array_alerts_list.go index 0eaebd2996..6d6971e642 100644 --- a/intersight_gosdk/model_storage_pure_array_alerts_list.go +++ b/intersight_gosdk/model_storage_pure_array_alerts_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_array_alerts_response.go b/intersight_gosdk/model_storage_pure_array_alerts_response.go index c7aec4e84c..55d2b38c6a 100644 --- a/intersight_gosdk/model_storage_pure_array_alerts_response.go +++ b/intersight_gosdk/model_storage_pure_array_alerts_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_array_list.go b/intersight_gosdk/model_storage_pure_array_list.go index c44d480f7f..e9fb7286c2 100644 --- a/intersight_gosdk/model_storage_pure_array_list.go +++ b/intersight_gosdk/model_storage_pure_array_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_array_relationship.go b/intersight_gosdk/model_storage_pure_array_relationship.go index d729765123..581f6be74d 100644 --- a/intersight_gosdk/model_storage_pure_array_relationship.go +++ b/intersight_gosdk/model_storage_pure_array_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_array_response.go b/intersight_gosdk/model_storage_pure_array_response.go index 3a3a03ede7..e11e903c5e 100644 --- a/intersight_gosdk/model_storage_pure_array_response.go +++ b/intersight_gosdk/model_storage_pure_array_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_array_utilization.go b/intersight_gosdk/model_storage_pure_array_utilization.go index 5b85d3aa3e..010eb89709 100644 --- a/intersight_gosdk/model_storage_pure_array_utilization.go +++ b/intersight_gosdk/model_storage_pure_array_utilization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_controller.go b/intersight_gosdk/model_storage_pure_controller.go index 76da5e503a..444535b688 100644 --- a/intersight_gosdk/model_storage_pure_controller.go +++ b/intersight_gosdk/model_storage_pure_controller.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_controller_list.go b/intersight_gosdk/model_storage_pure_controller_list.go index 100aa68d23..7fc60e2e22 100644 --- a/intersight_gosdk/model_storage_pure_controller_list.go +++ b/intersight_gosdk/model_storage_pure_controller_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_controller_relationship.go b/intersight_gosdk/model_storage_pure_controller_relationship.go index 50029fcf02..499160c422 100644 --- a/intersight_gosdk/model_storage_pure_controller_relationship.go +++ b/intersight_gosdk/model_storage_pure_controller_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_controller_response.go b/intersight_gosdk/model_storage_pure_controller_response.go index 63ce37ad4e..46dedf69bd 100644 --- a/intersight_gosdk/model_storage_pure_controller_response.go +++ b/intersight_gosdk/model_storage_pure_controller_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_disk.go b/intersight_gosdk/model_storage_pure_disk.go index eb5d2cea4c..c7488d2bcc 100644 --- a/intersight_gosdk/model_storage_pure_disk.go +++ b/intersight_gosdk/model_storage_pure_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_disk_list.go b/intersight_gosdk/model_storage_pure_disk_list.go index 8fdda11375..7c1d28062d 100644 --- a/intersight_gosdk/model_storage_pure_disk_list.go +++ b/intersight_gosdk/model_storage_pure_disk_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_disk_response.go b/intersight_gosdk/model_storage_pure_disk_response.go index c9a7a2dc39..d05b191035 100644 --- a/intersight_gosdk/model_storage_pure_disk_response.go +++ b/intersight_gosdk/model_storage_pure_disk_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_disk_utilization.go b/intersight_gosdk/model_storage_pure_disk_utilization.go index 08efe916a1..8854e045dd 100644 --- a/intersight_gosdk/model_storage_pure_disk_utilization.go +++ b/intersight_gosdk/model_storage_pure_disk_utilization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_host.go b/intersight_gosdk/model_storage_pure_host.go index 16c35f314d..0770918904 100644 --- a/intersight_gosdk/model_storage_pure_host.go +++ b/intersight_gosdk/model_storage_pure_host.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_host_group.go b/intersight_gosdk/model_storage_pure_host_group.go index 048a25c0c9..0562e54e63 100644 --- a/intersight_gosdk/model_storage_pure_host_group.go +++ b/intersight_gosdk/model_storage_pure_host_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_host_group_list.go b/intersight_gosdk/model_storage_pure_host_group_list.go index 4f27eaf176..b1055da022 100644 --- a/intersight_gosdk/model_storage_pure_host_group_list.go +++ b/intersight_gosdk/model_storage_pure_host_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_host_group_relationship.go b/intersight_gosdk/model_storage_pure_host_group_relationship.go index 6b841251e9..b2bdbc40c1 100644 --- a/intersight_gosdk/model_storage_pure_host_group_relationship.go +++ b/intersight_gosdk/model_storage_pure_host_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_host_group_response.go b/intersight_gosdk/model_storage_pure_host_group_response.go index 18149e98e4..72e442d6d7 100644 --- a/intersight_gosdk/model_storage_pure_host_group_response.go +++ b/intersight_gosdk/model_storage_pure_host_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_host_list.go b/intersight_gosdk/model_storage_pure_host_list.go index f1bfc8f7a7..83fc913205 100644 --- a/intersight_gosdk/model_storage_pure_host_list.go +++ b/intersight_gosdk/model_storage_pure_host_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_host_lun.go b/intersight_gosdk/model_storage_pure_host_lun.go index 0883a698a3..418baf698c 100644 --- a/intersight_gosdk/model_storage_pure_host_lun.go +++ b/intersight_gosdk/model_storage_pure_host_lun.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_host_lun_list.go b/intersight_gosdk/model_storage_pure_host_lun_list.go index b4bb5df259..2e500ff51a 100644 --- a/intersight_gosdk/model_storage_pure_host_lun_list.go +++ b/intersight_gosdk/model_storage_pure_host_lun_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_host_lun_response.go b/intersight_gosdk/model_storage_pure_host_lun_response.go index 97a003d7a8..dbf8b5ada9 100644 --- a/intersight_gosdk/model_storage_pure_host_lun_response.go +++ b/intersight_gosdk/model_storage_pure_host_lun_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_host_relationship.go b/intersight_gosdk/model_storage_pure_host_relationship.go index 1530533fcc..5b88b8670c 100644 --- a/intersight_gosdk/model_storage_pure_host_relationship.go +++ b/intersight_gosdk/model_storage_pure_host_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_host_response.go b/intersight_gosdk/model_storage_pure_host_response.go index e987f67f4c..0e79b0da81 100644 --- a/intersight_gosdk/model_storage_pure_host_response.go +++ b/intersight_gosdk/model_storage_pure_host_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_host_utilization.go b/intersight_gosdk/model_storage_pure_host_utilization.go index be99035721..b7659ddcbd 100644 --- a/intersight_gosdk/model_storage_pure_host_utilization.go +++ b/intersight_gosdk/model_storage_pure_host_utilization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_port.go b/intersight_gosdk/model_storage_pure_port.go index 74e35b2819..68032ea504 100644 --- a/intersight_gosdk/model_storage_pure_port.go +++ b/intersight_gosdk/model_storage_pure_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_port_list.go b/intersight_gosdk/model_storage_pure_port_list.go index 154c6c267e..6737188b6a 100644 --- a/intersight_gosdk/model_storage_pure_port_list.go +++ b/intersight_gosdk/model_storage_pure_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_port_response.go b/intersight_gosdk/model_storage_pure_port_response.go index 65760604c3..afa56b34b3 100644 --- a/intersight_gosdk/model_storage_pure_port_response.go +++ b/intersight_gosdk/model_storage_pure_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_protection_group.go b/intersight_gosdk/model_storage_pure_protection_group.go index 0bbad8f275..2b7da4edcd 100644 --- a/intersight_gosdk/model_storage_pure_protection_group.go +++ b/intersight_gosdk/model_storage_pure_protection_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_protection_group_list.go b/intersight_gosdk/model_storage_pure_protection_group_list.go index 32f8898d3c..7d97ae92f3 100644 --- a/intersight_gosdk/model_storage_pure_protection_group_list.go +++ b/intersight_gosdk/model_storage_pure_protection_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_protection_group_relationship.go b/intersight_gosdk/model_storage_pure_protection_group_relationship.go index 469a58cd00..d218be5cc0 100644 --- a/intersight_gosdk/model_storage_pure_protection_group_relationship.go +++ b/intersight_gosdk/model_storage_pure_protection_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_protection_group_response.go b/intersight_gosdk/model_storage_pure_protection_group_response.go index 604df9af33..13e86118dd 100644 --- a/intersight_gosdk/model_storage_pure_protection_group_response.go +++ b/intersight_gosdk/model_storage_pure_protection_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_protection_group_snapshot.go b/intersight_gosdk/model_storage_pure_protection_group_snapshot.go index ed4f03106e..7a1dc54bad 100644 --- a/intersight_gosdk/model_storage_pure_protection_group_snapshot.go +++ b/intersight_gosdk/model_storage_pure_protection_group_snapshot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_protection_group_snapshot_list.go b/intersight_gosdk/model_storage_pure_protection_group_snapshot_list.go index 26bc9c6b8a..bfe278827b 100644 --- a/intersight_gosdk/model_storage_pure_protection_group_snapshot_list.go +++ b/intersight_gosdk/model_storage_pure_protection_group_snapshot_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_protection_group_snapshot_relationship.go b/intersight_gosdk/model_storage_pure_protection_group_snapshot_relationship.go index 2e64fef6ab..c8580b4476 100644 --- a/intersight_gosdk/model_storage_pure_protection_group_snapshot_relationship.go +++ b/intersight_gosdk/model_storage_pure_protection_group_snapshot_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_protection_group_snapshot_response.go b/intersight_gosdk/model_storage_pure_protection_group_snapshot_response.go index 4c6450ead7..500a3dfb90 100644 --- a/intersight_gosdk/model_storage_pure_protection_group_snapshot_response.go +++ b/intersight_gosdk/model_storage_pure_protection_group_snapshot_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_replication_blackout.go b/intersight_gosdk/model_storage_pure_replication_blackout.go index d8777f08d5..8a09148e80 100644 --- a/intersight_gosdk/model_storage_pure_replication_blackout.go +++ b/intersight_gosdk/model_storage_pure_replication_blackout.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_replication_schedule.go b/intersight_gosdk/model_storage_pure_replication_schedule.go index e68312d634..6c6144167c 100644 --- a/intersight_gosdk/model_storage_pure_replication_schedule.go +++ b/intersight_gosdk/model_storage_pure_replication_schedule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_replication_schedule_list.go b/intersight_gosdk/model_storage_pure_replication_schedule_list.go index e3569fd97d..2097e0fc21 100644 --- a/intersight_gosdk/model_storage_pure_replication_schedule_list.go +++ b/intersight_gosdk/model_storage_pure_replication_schedule_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_replication_schedule_response.go b/intersight_gosdk/model_storage_pure_replication_schedule_response.go index d461b898f3..751b9c2a8a 100644 --- a/intersight_gosdk/model_storage_pure_replication_schedule_response.go +++ b/intersight_gosdk/model_storage_pure_replication_schedule_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_snapshot_schedule.go b/intersight_gosdk/model_storage_pure_snapshot_schedule.go index 8da99f9ca6..2aac8c2b01 100644 --- a/intersight_gosdk/model_storage_pure_snapshot_schedule.go +++ b/intersight_gosdk/model_storage_pure_snapshot_schedule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_snapshot_schedule_list.go b/intersight_gosdk/model_storage_pure_snapshot_schedule_list.go index e8b10e10b6..3452c0c994 100644 --- a/intersight_gosdk/model_storage_pure_snapshot_schedule_list.go +++ b/intersight_gosdk/model_storage_pure_snapshot_schedule_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_snapshot_schedule_response.go b/intersight_gosdk/model_storage_pure_snapshot_schedule_response.go index 5fc99b4ace..1fce45a43a 100644 --- a/intersight_gosdk/model_storage_pure_snapshot_schedule_response.go +++ b/intersight_gosdk/model_storage_pure_snapshot_schedule_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_target_array.go b/intersight_gosdk/model_storage_pure_target_array.go index db14e3d2ca..843bbce41a 100644 --- a/intersight_gosdk/model_storage_pure_target_array.go +++ b/intersight_gosdk/model_storage_pure_target_array.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_target_array_list.go b/intersight_gosdk/model_storage_pure_target_array_list.go index b83b64a956..acb9922999 100644 --- a/intersight_gosdk/model_storage_pure_target_array_list.go +++ b/intersight_gosdk/model_storage_pure_target_array_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_target_array_response.go b/intersight_gosdk/model_storage_pure_target_array_response.go index 5c1b3f0b78..976391105e 100644 --- a/intersight_gosdk/model_storage_pure_target_array_response.go +++ b/intersight_gosdk/model_storage_pure_target_array_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_volume.go b/intersight_gosdk/model_storage_pure_volume.go index 7f3d0c1fe7..5c51833700 100644 --- a/intersight_gosdk/model_storage_pure_volume.go +++ b/intersight_gosdk/model_storage_pure_volume.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_volume_list.go b/intersight_gosdk/model_storage_pure_volume_list.go index 7493b498c6..c9a65d2ec1 100644 --- a/intersight_gosdk/model_storage_pure_volume_list.go +++ b/intersight_gosdk/model_storage_pure_volume_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_volume_relationship.go b/intersight_gosdk/model_storage_pure_volume_relationship.go index 33460c3950..02775ca69b 100644 --- a/intersight_gosdk/model_storage_pure_volume_relationship.go +++ b/intersight_gosdk/model_storage_pure_volume_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_volume_response.go b/intersight_gosdk/model_storage_pure_volume_response.go index d6dc19884b..64b0f78ac8 100644 --- a/intersight_gosdk/model_storage_pure_volume_response.go +++ b/intersight_gosdk/model_storage_pure_volume_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_volume_snapshot.go b/intersight_gosdk/model_storage_pure_volume_snapshot.go index 1f9156279e..bff694f631 100644 --- a/intersight_gosdk/model_storage_pure_volume_snapshot.go +++ b/intersight_gosdk/model_storage_pure_volume_snapshot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_volume_snapshot_list.go b/intersight_gosdk/model_storage_pure_volume_snapshot_list.go index e972961f4a..6bc59ecfed 100644 --- a/intersight_gosdk/model_storage_pure_volume_snapshot_list.go +++ b/intersight_gosdk/model_storage_pure_volume_snapshot_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_volume_snapshot_response.go b/intersight_gosdk/model_storage_pure_volume_snapshot_response.go index e59f7cd477..3f5d3d39f6 100644 --- a/intersight_gosdk/model_storage_pure_volume_snapshot_response.go +++ b/intersight_gosdk/model_storage_pure_volume_snapshot_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_volume_utilization.go b/intersight_gosdk/model_storage_pure_volume_utilization.go index 8af0da3f73..38061f6e0c 100644 --- a/intersight_gosdk/model_storage_pure_volume_utilization.go +++ b/intersight_gosdk/model_storage_pure_volume_utilization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_r0_drive.go b/intersight_gosdk/model_storage_r0_drive.go index 3f246b9a39..471aaad315 100644 --- a/intersight_gosdk/model_storage_r0_drive.go +++ b/intersight_gosdk/model_storage_r0_drive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type StorageR0Drive struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The set of drive slots where RAID0 virtual drives must be created. - DriveSlots *string `json:"DriveSlots,omitempty"` + DriveSlots *string `json:"DriveSlots,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // The list of drive slots where RAID0 virtual drives must be created (comma separated). - DriveSlotsList *string `json:"DriveSlotsList,omitempty"` + DriveSlotsList *string `json:"DriveSlotsList,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // If enabled, this will create a RAID0 virtual drive per disk and encompassing the whole disk. Enable *bool `json:"Enable,omitempty"` VirtualDrivePolicy NullableStorageVirtualDrivePolicy `json:"VirtualDrivePolicy,omitempty"` @@ -358,9 +358,9 @@ func (o *StorageR0Drive) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The set of drive slots where RAID0 virtual drives must be created. - DriveSlots *string `json:"DriveSlots,omitempty"` + DriveSlots *string `json:"DriveSlots,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // The list of drive slots where RAID0 virtual drives must be created (comma separated). - DriveSlotsList *string `json:"DriveSlotsList,omitempty"` + DriveSlotsList *string `json:"DriveSlotsList,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // If enabled, this will create a RAID0 virtual drive per disk and encompassing the whole disk. Enable *bool `json:"Enable,omitempty"` VirtualDrivePolicy NullableStorageVirtualDrivePolicy `json:"VirtualDrivePolicy,omitempty"` diff --git a/intersight_gosdk/model_storage_remote_key_setting.go b/intersight_gosdk/model_storage_remote_key_setting.go index d952d5a50f..c96f576af9 100644 --- a/intersight_gosdk/model_storage_remote_key_setting.go +++ b/intersight_gosdk/model_storage_remote_key_setting.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,7 +30,7 @@ type StorageRemoteKeySetting struct { ObjectType string `json:"ObjectType"` AuthCredentials NullableStorageKmipAuthCredentials `json:"AuthCredentials,omitempty"` // Current Security Key Passphrase which is already configured on the server. - ExistingKey *string `json:"ExistingKey,omitempty"` + ExistingKey *string `json:"ExistingKey,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` // Indicates whether the value of the 'existingKey' property has been set. IsExistingKeySet *bool `json:"IsExistingKeySet,omitempty"` PrimaryServer NullableStorageKmipServer `json:"PrimaryServer,omitempty"` @@ -449,7 +449,7 @@ func (o *StorageRemoteKeySetting) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` AuthCredentials NullableStorageKmipAuthCredentials `json:"AuthCredentials,omitempty"` // Current Security Key Passphrase which is already configured on the server. - ExistingKey *string `json:"ExistingKey,omitempty"` + ExistingKey *string `json:"ExistingKey,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` // Indicates whether the value of the 'existingKey' property has been set. IsExistingKeySet *bool `json:"IsExistingKeySet,omitempty"` PrimaryServer NullableStorageKmipServer `json:"PrimaryServer,omitempty"` diff --git a/intersight_gosdk/model_storage_sas_expander.go b/intersight_gosdk/model_storage_sas_expander.go index 448129bd5b..0bcbbe7c2a 100644 --- a/intersight_gosdk/model_storage_sas_expander.go +++ b/intersight_gosdk/model_storage_sas_expander.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_sas_expander_list.go b/intersight_gosdk/model_storage_sas_expander_list.go index d022f96804..9387d1393f 100644 --- a/intersight_gosdk/model_storage_sas_expander_list.go +++ b/intersight_gosdk/model_storage_sas_expander_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_sas_expander_relationship.go b/intersight_gosdk/model_storage_sas_expander_relationship.go index a1a64b02d6..8926e1308d 100644 --- a/intersight_gosdk/model_storage_sas_expander_relationship.go +++ b/intersight_gosdk/model_storage_sas_expander_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_sas_expander_response.go b/intersight_gosdk/model_storage_sas_expander_response.go index 7bf11a257d..9f0b217354 100644 --- a/intersight_gosdk/model_storage_sas_expander_response.go +++ b/intersight_gosdk/model_storage_sas_expander_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_sas_port.go b/intersight_gosdk/model_storage_sas_port.go index bbf4af5492..aed6f95782 100644 --- a/intersight_gosdk/model_storage_sas_port.go +++ b/intersight_gosdk/model_storage_sas_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_sas_port_list.go b/intersight_gosdk/model_storage_sas_port_list.go index aa8168c93e..e4060d82c3 100644 --- a/intersight_gosdk/model_storage_sas_port_list.go +++ b/intersight_gosdk/model_storage_sas_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_sas_port_relationship.go b/intersight_gosdk/model_storage_sas_port_relationship.go index a2bb214c65..00c6c1dc8a 100644 --- a/intersight_gosdk/model_storage_sas_port_relationship.go +++ b/intersight_gosdk/model_storage_sas_port_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_sas_port_response.go b/intersight_gosdk/model_storage_sas_port_response.go index 2b4c936476..a9857c61f9 100644 --- a/intersight_gosdk/model_storage_sas_port_response.go +++ b/intersight_gosdk/model_storage_sas_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_space.go b/intersight_gosdk/model_storage_space.go index 7b313aaaaa..354c41eb1b 100644 --- a/intersight_gosdk/model_storage_space.go +++ b/intersight_gosdk/model_storage_space.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_span.go b/intersight_gosdk/model_storage_span.go index ac050573a7..172854d996 100644 --- a/intersight_gosdk/model_storage_span.go +++ b/intersight_gosdk/model_storage_span.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_span_drives.go b/intersight_gosdk/model_storage_span_drives.go index d06d0e2650..8a89543db3 100644 --- a/intersight_gosdk/model_storage_span_drives.go +++ b/intersight_gosdk/model_storage_span_drives.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type StorageSpanDrives struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Collection of local disks that are part of this span group. Allowed value is a comma or hyphen separated number range. The minimum number of disks needed in a span group varies based on RAID level. RAID0 requires at least one disk, RAID1 and RAID10 requires at least 2 and in multiples of 2, RAID5 RAID50 RAID6 and RAID60 require at least 3 disks in a span group. - Slots *string `json:"Slots,omitempty"` + Slots *string `json:"Slots,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` AdditionalProperties map[string]interface{} } @@ -233,7 +233,7 @@ func (o *StorageSpanDrives) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Collection of local disks that are part of this span group. Allowed value is a comma or hyphen separated number range. The minimum number of disks needed in a span group varies based on RAID level. RAID0 requires at least one disk, RAID1 and RAID10 requires at least 2 and in multiples of 2, RAID5 RAID50 RAID6 and RAID60 require at least 3 disks in a span group. - Slots *string `json:"Slots,omitempty"` + Slots *string `json:"Slots,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` } varStorageSpanDrivesWithoutEmbeddedStruct := StorageSpanDrivesWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_storage_span_list.go b/intersight_gosdk/model_storage_span_list.go index 21d1e11225..4c27284f4a 100644 --- a/intersight_gosdk/model_storage_span_list.go +++ b/intersight_gosdk/model_storage_span_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_span_relationship.go b/intersight_gosdk/model_storage_span_relationship.go index 35969d9903..c523f27c27 100644 --- a/intersight_gosdk/model_storage_span_relationship.go +++ b/intersight_gosdk/model_storage_span_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_span_response.go b/intersight_gosdk/model_storage_span_response.go index caef59ae53..2046399f7a 100644 --- a/intersight_gosdk/model_storage_span_response.go +++ b/intersight_gosdk/model_storage_span_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_storage_container_host_mount_status.go b/intersight_gosdk/model_storage_storage_container_host_mount_status.go index d285f42311..378fc8482b 100644 --- a/intersight_gosdk/model_storage_storage_container_host_mount_status.go +++ b/intersight_gosdk/model_storage_storage_container_host_mount_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_storage_container_utilization.go b/intersight_gosdk/model_storage_storage_container_utilization.go index d7451931dd..7f90d11302 100644 --- a/intersight_gosdk/model_storage_storage_container_utilization.go +++ b/intersight_gosdk/model_storage_storage_container_utilization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_storage_policy.go b/intersight_gosdk/model_storage_storage_policy.go index d9147ae4b0..7c956f1306 100644 --- a/intersight_gosdk/model_storage_storage_policy.go +++ b/intersight_gosdk/model_storage_storage_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,15 +31,15 @@ type StorageStoragePolicy struct { // All unconfigured drives will move to the selected state on deployment. Newly inserted drives will move to the selected state. Select Unconfigured Good option to retain the existing configuration. Select JBOD to move the unconfigured drives to JBOD state. Select RAID0 to create a RAID0 virtual drive on each of the unconfigured drives. If JBOD is selected, unconfigured drives will move to JBOD state on host reboot. This setting is applicable only to selected set of controllers on FI attached servers. * `UnconfiguredGood` - Newly inserted drives or on reboot, drives will remain the same state. * `Jbod` - Newly inserted drives or on reboot, drives will automatically move to JBOD state if drive state was UnconfiguredGood. * `RAID0` - Newly inserted drives or on reboot, virtual drives will be created, respective drives will move to Online state. DefaultDriveMode *string `json:"DefaultDriveMode,omitempty"` // Only U.3 NVMe drives has to be specified, entered slots will be moved to Direct attached mode. Allowed slots are 1-4, 101-104. Allowed value is a comma or hyphen separated number range. - DirectAttachedNvmeSlots *string `json:"DirectAttachedNvmeSlots,omitempty"` + DirectAttachedNvmeSlots *string `json:"DirectAttachedNvmeSlots,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // A collection of disks that is to be used as hot spares, globally, for all the RAID groups. Allowed value is a number range separated by a comma or a hyphen. - GlobalHotSpares *string `json:"GlobalHotSpares,omitempty"` + GlobalHotSpares *string `json:"GlobalHotSpares,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` M2VirtualDrive NullableStorageM2VirtualDriveConfig `json:"M2VirtualDrive,omitempty"` Raid0Drive NullableStorageR0Drive `json:"Raid0Drive,omitempty"` // Only U.3 NVMe drives has to be specified, entered slots will be moved to RAID attached mode. Allowed slots are 1-4, 101-104. Allowed value is a comma or hyphen separated number range. - RaidAttachedNvmeSlots *string `json:"RaidAttachedNvmeSlots,omitempty"` + RaidAttachedNvmeSlots *string `json:"RaidAttachedNvmeSlots,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // JBOD drives specified in this slot range will be encrypted. Allowed values are 'ALL', or a comma or hyphen separated number range. Sample format is ALL or 1, 3 or 4-6, 8. Setting the value to 'ALL' will encrypt all the unused UnconfigureGood/JBOD disks. - SecureJbods *string `json:"SecureJbods,omitempty"` + SecureJbods *string `json:"SecureJbods,omitempty" validate:"regexp=^$|^((((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*)|(a|A)(l|L)(l|L))$"` // State to which drives, not used in this policy, are to be moved. NoChange will not change the drive state. No Change must be selected if Default Drive State is set to JBOD or RAID0. * `NoChange` - Drive state will not be modified by Storage Policy. * `UnconfiguredGood` - Unconfigured good state -ready to be added in a RAID group. * `Jbod` - JBOD state where the disks start showing up to Host OS. UnusedDisksState *string `json:"UnusedDisksState,omitempty"` // Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD. @@ -682,15 +682,15 @@ func (o *StorageStoragePolicy) UnmarshalJSON(data []byte) (err error) { // All unconfigured drives will move to the selected state on deployment. Newly inserted drives will move to the selected state. Select Unconfigured Good option to retain the existing configuration. Select JBOD to move the unconfigured drives to JBOD state. Select RAID0 to create a RAID0 virtual drive on each of the unconfigured drives. If JBOD is selected, unconfigured drives will move to JBOD state on host reboot. This setting is applicable only to selected set of controllers on FI attached servers. * `UnconfiguredGood` - Newly inserted drives or on reboot, drives will remain the same state. * `Jbod` - Newly inserted drives or on reboot, drives will automatically move to JBOD state if drive state was UnconfiguredGood. * `RAID0` - Newly inserted drives or on reboot, virtual drives will be created, respective drives will move to Online state. DefaultDriveMode *string `json:"DefaultDriveMode,omitempty"` // Only U.3 NVMe drives has to be specified, entered slots will be moved to Direct attached mode. Allowed slots are 1-4, 101-104. Allowed value is a comma or hyphen separated number range. - DirectAttachedNvmeSlots *string `json:"DirectAttachedNvmeSlots,omitempty"` + DirectAttachedNvmeSlots *string `json:"DirectAttachedNvmeSlots,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // A collection of disks that is to be used as hot spares, globally, for all the RAID groups. Allowed value is a number range separated by a comma or a hyphen. - GlobalHotSpares *string `json:"GlobalHotSpares,omitempty"` + GlobalHotSpares *string `json:"GlobalHotSpares,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` M2VirtualDrive NullableStorageM2VirtualDriveConfig `json:"M2VirtualDrive,omitempty"` Raid0Drive NullableStorageR0Drive `json:"Raid0Drive,omitempty"` // Only U.3 NVMe drives has to be specified, entered slots will be moved to RAID attached mode. Allowed slots are 1-4, 101-104. Allowed value is a comma or hyphen separated number range. - RaidAttachedNvmeSlots *string `json:"RaidAttachedNvmeSlots,omitempty"` + RaidAttachedNvmeSlots *string `json:"RaidAttachedNvmeSlots,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // JBOD drives specified in this slot range will be encrypted. Allowed values are 'ALL', or a comma or hyphen separated number range. Sample format is ALL or 1, 3 or 4-6, 8. Setting the value to 'ALL' will encrypt all the unused UnconfigureGood/JBOD disks. - SecureJbods *string `json:"SecureJbods,omitempty"` + SecureJbods *string `json:"SecureJbods,omitempty" validate:"regexp=^$|^((((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*)|(a|A)(l|L)(l|L))$"` // State to which drives, not used in this policy, are to be moved. NoChange will not change the drive state. No Change must be selected if Default Drive State is set to JBOD or RAID0. * `NoChange` - Drive state will not be modified by Storage Policy. * `UnconfiguredGood` - Unconfigured good state -ready to be added in a RAID group. * `Jbod` - JBOD state where the disks start showing up to Host OS. UnusedDisksState *string `json:"UnusedDisksState,omitempty"` // Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD. diff --git a/intersight_gosdk/model_storage_storage_policy_list.go b/intersight_gosdk/model_storage_storage_policy_list.go index 96ea414f85..db98c6ece3 100644 --- a/intersight_gosdk/model_storage_storage_policy_list.go +++ b/intersight_gosdk/model_storage_storage_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_storage_policy_relationship.go b/intersight_gosdk/model_storage_storage_policy_relationship.go index 38eb3c0a82..d3c6a82769 100644 --- a/intersight_gosdk/model_storage_storage_policy_relationship.go +++ b/intersight_gosdk/model_storage_storage_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_storage_policy_response.go b/intersight_gosdk/model_storage_storage_policy_response.go index bf0ec64710..f8d57f8a39 100644 --- a/intersight_gosdk/model_storage_storage_policy_response.go +++ b/intersight_gosdk/model_storage_storage_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_storage_utilization.go b/intersight_gosdk/model_storage_storage_utilization.go index 580643eda6..72cf9bb262 100644 --- a/intersight_gosdk/model_storage_storage_utilization.go +++ b/intersight_gosdk/model_storage_storage_utilization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_vd_member_ep.go b/intersight_gosdk/model_storage_vd_member_ep.go index abd599bd08..6cece3c4c3 100644 --- a/intersight_gosdk/model_storage_vd_member_ep.go +++ b/intersight_gosdk/model_storage_vd_member_ep.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_vd_member_ep_list.go b/intersight_gosdk/model_storage_vd_member_ep_list.go index 2259a8e029..2fec6ed43e 100644 --- a/intersight_gosdk/model_storage_vd_member_ep_list.go +++ b/intersight_gosdk/model_storage_vd_member_ep_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_vd_member_ep_relationship.go b/intersight_gosdk/model_storage_vd_member_ep_relationship.go index ff45cb933e..30e051ea8c 100644 --- a/intersight_gosdk/model_storage_vd_member_ep_relationship.go +++ b/intersight_gosdk/model_storage_vd_member_ep_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_vd_member_ep_response.go b/intersight_gosdk/model_storage_vd_member_ep_response.go index fdbac41861..4bae87d444 100644 --- a/intersight_gosdk/model_storage_vd_member_ep_response.go +++ b/intersight_gosdk/model_storage_vd_member_ep_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_virtual_drive.go b/intersight_gosdk/model_storage_virtual_drive.go index dce9500c5c..8cc6050e77 100644 --- a/intersight_gosdk/model_storage_virtual_drive.go +++ b/intersight_gosdk/model_storage_virtual_drive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_virtual_drive_configuration.go b/intersight_gosdk/model_storage_virtual_drive_configuration.go index d34df7a171..94ef341f03 100644 --- a/intersight_gosdk/model_storage_virtual_drive_configuration.go +++ b/intersight_gosdk/model_storage_virtual_drive_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type StorageVirtualDriveConfiguration struct { // This flag enables the virtual drive to use all the space available in the disk group. When this flag is enabled, the size property is ignored. ExpandToAvailable *bool `json:"ExpandToAvailable,omitempty"` // The name of the virtual drive. The name can be between 1 and 15 alphanumeric characters. Spaces or any special characters other than - (hyphen) and _ (underscore) are not allowed. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\-_]*$"` // Virtual drive size in MebiBytes. Size is mandatory field except when the Expand to Available option is enabled. Size *int64 `json:"Size,omitempty"` VirtualDrivePolicy NullableStorageVirtualDrivePolicy `json:"VirtualDrivePolicy,omitempty"` @@ -395,7 +395,7 @@ func (o *StorageVirtualDriveConfiguration) UnmarshalJSON(data []byte) (err error // This flag enables the virtual drive to use all the space available in the disk group. When this flag is enabled, the size property is ignored. ExpandToAvailable *bool `json:"ExpandToAvailable,omitempty"` // The name of the virtual drive. The name can be between 1 and 15 alphanumeric characters. Spaces or any special characters other than - (hyphen) and _ (underscore) are not allowed. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\-_]*$"` // Virtual drive size in MebiBytes. Size is mandatory field except when the Expand to Available option is enabled. Size *int64 `json:"Size,omitempty"` VirtualDrivePolicy NullableStorageVirtualDrivePolicy `json:"VirtualDrivePolicy,omitempty"` diff --git a/intersight_gosdk/model_storage_virtual_drive_container.go b/intersight_gosdk/model_storage_virtual_drive_container.go index e2ffff140a..fa5a7780aa 100644 --- a/intersight_gosdk/model_storage_virtual_drive_container.go +++ b/intersight_gosdk/model_storage_virtual_drive_container.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_virtual_drive_container_list.go b/intersight_gosdk/model_storage_virtual_drive_container_list.go index 566b24a167..e6328c65a6 100644 --- a/intersight_gosdk/model_storage_virtual_drive_container_list.go +++ b/intersight_gosdk/model_storage_virtual_drive_container_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_virtual_drive_container_relationship.go b/intersight_gosdk/model_storage_virtual_drive_container_relationship.go index 7049af5104..8d1cc4ee87 100644 --- a/intersight_gosdk/model_storage_virtual_drive_container_relationship.go +++ b/intersight_gosdk/model_storage_virtual_drive_container_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_virtual_drive_container_response.go b/intersight_gosdk/model_storage_virtual_drive_container_response.go index 19aa9ffb31..f37da70138 100644 --- a/intersight_gosdk/model_storage_virtual_drive_container_response.go +++ b/intersight_gosdk/model_storage_virtual_drive_container_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_virtual_drive_extension.go b/intersight_gosdk/model_storage_virtual_drive_extension.go index b601f2c073..811981f8d2 100644 --- a/intersight_gosdk/model_storage_virtual_drive_extension.go +++ b/intersight_gosdk/model_storage_virtual_drive_extension.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_virtual_drive_extension_list.go b/intersight_gosdk/model_storage_virtual_drive_extension_list.go index 4b88130017..7a72c85b6f 100644 --- a/intersight_gosdk/model_storage_virtual_drive_extension_list.go +++ b/intersight_gosdk/model_storage_virtual_drive_extension_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_virtual_drive_extension_relationship.go b/intersight_gosdk/model_storage_virtual_drive_extension_relationship.go index 9d5a9cfad7..6f99e41b3c 100644 --- a/intersight_gosdk/model_storage_virtual_drive_extension_relationship.go +++ b/intersight_gosdk/model_storage_virtual_drive_extension_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_virtual_drive_extension_response.go b/intersight_gosdk/model_storage_virtual_drive_extension_response.go index 89d416b432..b2c84b2220 100644 --- a/intersight_gosdk/model_storage_virtual_drive_extension_response.go +++ b/intersight_gosdk/model_storage_virtual_drive_extension_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_virtual_drive_identity.go b/intersight_gosdk/model_storage_virtual_drive_identity.go index 93dd5a34c9..1d8edfaeb3 100644 --- a/intersight_gosdk/model_storage_virtual_drive_identity.go +++ b/intersight_gosdk/model_storage_virtual_drive_identity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_virtual_drive_identity_list.go b/intersight_gosdk/model_storage_virtual_drive_identity_list.go index f60bef91a3..9e8f9d3b0e 100644 --- a/intersight_gosdk/model_storage_virtual_drive_identity_list.go +++ b/intersight_gosdk/model_storage_virtual_drive_identity_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_virtual_drive_identity_response.go b/intersight_gosdk/model_storage_virtual_drive_identity_response.go index 54af593389..5e48572f40 100644 --- a/intersight_gosdk/model_storage_virtual_drive_identity_response.go +++ b/intersight_gosdk/model_storage_virtual_drive_identity_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_virtual_drive_list.go b/intersight_gosdk/model_storage_virtual_drive_list.go index 5ef09ba1b3..fe803f2489 100644 --- a/intersight_gosdk/model_storage_virtual_drive_list.go +++ b/intersight_gosdk/model_storage_virtual_drive_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_virtual_drive_policy.go b/intersight_gosdk/model_storage_virtual_drive_policy.go index d2fea17898..3f50592bd4 100644 --- a/intersight_gosdk/model_storage_virtual_drive_policy.go +++ b/intersight_gosdk/model_storage_virtual_drive_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_virtual_drive_relationship.go b/intersight_gosdk/model_storage_virtual_drive_relationship.go index 0f1226766c..2024ef2d46 100644 --- a/intersight_gosdk/model_storage_virtual_drive_relationship.go +++ b/intersight_gosdk/model_storage_virtual_drive_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_virtual_drive_response.go b/intersight_gosdk/model_storage_virtual_drive_response.go index 682fa3fee4..77de79ec15 100644 --- a/intersight_gosdk/model_storage_virtual_drive_response.go +++ b/intersight_gosdk/model_storage_virtual_drive_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_volume_utilization.go b/intersight_gosdk/model_storage_volume_utilization.go index 5400ba63c6..1a3ed8685f 100644 --- a/intersight_gosdk/model_storage_volume_utilization.go +++ b/intersight_gosdk/model_storage_volume_utilization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sw_id_pool_base.go b/intersight_gosdk/model_sw_id_pool_base.go index 0ab3b4cb1f..e174e27874 100644 --- a/intersight_gosdk/model_sw_id_pool_base.go +++ b/intersight_gosdk/model_sw_id_pool_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_syslog_local_client_base.go b/intersight_gosdk/model_syslog_local_client_base.go index c064b3aa92..41db011f39 100644 --- a/intersight_gosdk/model_syslog_local_client_base.go +++ b/intersight_gosdk/model_syslog_local_client_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_syslog_local_file_logging_client.go b/intersight_gosdk/model_syslog_local_file_logging_client.go index 347c2bb048..d21058db18 100644 --- a/intersight_gosdk/model_syslog_local_file_logging_client.go +++ b/intersight_gosdk/model_syslog_local_file_logging_client.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_syslog_policy.go b/intersight_gosdk/model_syslog_policy.go index e45a74fd61..8414aba16a 100644 --- a/intersight_gosdk/model_syslog_policy.go +++ b/intersight_gosdk/model_syslog_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_syslog_policy_inventory.go b/intersight_gosdk/model_syslog_policy_inventory.go index 646f671404..37b30815ca 100644 --- a/intersight_gosdk/model_syslog_policy_inventory.go +++ b/intersight_gosdk/model_syslog_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_syslog_policy_inventory_list.go b/intersight_gosdk/model_syslog_policy_inventory_list.go index 1504972a3d..0050515b34 100644 --- a/intersight_gosdk/model_syslog_policy_inventory_list.go +++ b/intersight_gosdk/model_syslog_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_syslog_policy_inventory_response.go b/intersight_gosdk/model_syslog_policy_inventory_response.go index dd3e057140..9cf57cc1a5 100644 --- a/intersight_gosdk/model_syslog_policy_inventory_response.go +++ b/intersight_gosdk/model_syslog_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_syslog_policy_list.go b/intersight_gosdk/model_syslog_policy_list.go index daf3da322f..05813a3b17 100644 --- a/intersight_gosdk/model_syslog_policy_list.go +++ b/intersight_gosdk/model_syslog_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_syslog_policy_response.go b/intersight_gosdk/model_syslog_policy_response.go index 27df41425d..ccf2cc2022 100644 --- a/intersight_gosdk/model_syslog_policy_response.go +++ b/intersight_gosdk/model_syslog_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_syslog_remote_client_base.go b/intersight_gosdk/model_syslog_remote_client_base.go index be125d11cc..cafccd4f02 100644 --- a/intersight_gosdk/model_syslog_remote_client_base.go +++ b/intersight_gosdk/model_syslog_remote_client_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_syslog_remote_logging_client.go b/intersight_gosdk/model_syslog_remote_logging_client.go index c1509a5e82..b2087afb3f 100644 --- a/intersight_gosdk/model_syslog_remote_logging_client.go +++ b/intersight_gosdk/model_syslog_remote_logging_client.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_action.go b/intersight_gosdk/model_tam_action.go index d4001329c4..cc5584be61 100644 --- a/intersight_gosdk/model_tam_action.go +++ b/intersight_gosdk/model_tam_action.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_advisory_count.go b/intersight_gosdk/model_tam_advisory_count.go index fbd8528f1a..d06271ba4a 100644 --- a/intersight_gosdk/model_tam_advisory_count.go +++ b/intersight_gosdk/model_tam_advisory_count.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_advisory_count_list.go b/intersight_gosdk/model_tam_advisory_count_list.go index 0cb618c3c4..e53f0486c8 100644 --- a/intersight_gosdk/model_tam_advisory_count_list.go +++ b/intersight_gosdk/model_tam_advisory_count_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_advisory_count_response.go b/intersight_gosdk/model_tam_advisory_count_response.go index 4cd3adca3a..dd95cbc6e3 100644 --- a/intersight_gosdk/model_tam_advisory_count_response.go +++ b/intersight_gosdk/model_tam_advisory_count_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_advisory_definition.go b/intersight_gosdk/model_tam_advisory_definition.go index 42447f8f14..04074a5ecd 100644 --- a/intersight_gosdk/model_tam_advisory_definition.go +++ b/intersight_gosdk/model_tam_advisory_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -41,7 +41,7 @@ type TamAdvisoryDefinition struct { // Orion pod on which this advisory should process. * `tier1` - Advisory processing will be taken care in first advisory driver of multinode cluster. * `tier2` - Advisory processing will be taken care in second advisory driver of multinode cluster. ExecuteOnPod *string `json:"ExecuteOnPod,omitempty"` // A link to an external URL describing security Advisory in more details. - ExternalUrl *string `json:"ExternalUrl,omitempty"` + ExternalUrl *string `json:"ExternalUrl,omitempty" validate:"regexp=^$|^(?:http(s)?:\\/\\/)?[\\\\w.-]+(?:\\\\.[\\\\w\\\\.-]+)+[\\\\w\\\\-\\\\._~:\\/?#[\\\\]@!\\\\$&'\\\\(\\\\)\\\\*\\\\+,;=.]+$"` OtherRefUrls []string `json:"OtherRefUrls,omitempty"` // Recommended action to resolve the security advisory. Recommendation *string `json:"Recommendation,omitempty"` @@ -793,7 +793,7 @@ func (o *TamAdvisoryDefinition) UnmarshalJSON(data []byte) (err error) { // Orion pod on which this advisory should process. * `tier1` - Advisory processing will be taken care in first advisory driver of multinode cluster. * `tier2` - Advisory processing will be taken care in second advisory driver of multinode cluster. ExecuteOnPod *string `json:"ExecuteOnPod,omitempty"` // A link to an external URL describing security Advisory in more details. - ExternalUrl *string `json:"ExternalUrl,omitempty"` + ExternalUrl *string `json:"ExternalUrl,omitempty" validate:"regexp=^$|^(?:http(s)?:\\/\\/)?[\\\\w.-]+(?:\\\\.[\\\\w\\\\.-]+)+[\\\\w\\\\-\\\\._~:\\/?#[\\\\]@!\\\\$&'\\\\(\\\\)\\\\*\\\\+,;=.]+$"` OtherRefUrls []string `json:"OtherRefUrls,omitempty"` // Recommended action to resolve the security advisory. Recommendation *string `json:"Recommendation,omitempty"` diff --git a/intersight_gosdk/model_tam_advisory_definition_list.go b/intersight_gosdk/model_tam_advisory_definition_list.go index 48078c6fbb..455c54bcbf 100644 --- a/intersight_gosdk/model_tam_advisory_definition_list.go +++ b/intersight_gosdk/model_tam_advisory_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_advisory_definition_response.go b/intersight_gosdk/model_tam_advisory_definition_response.go index cc946989b9..6d632f9117 100644 --- a/intersight_gosdk/model_tam_advisory_definition_response.go +++ b/intersight_gosdk/model_tam_advisory_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_advisory_info.go b/intersight_gosdk/model_tam_advisory_info.go index 40a4404894..5ce2a054ac 100644 --- a/intersight_gosdk/model_tam_advisory_info.go +++ b/intersight_gosdk/model_tam_advisory_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_advisory_info_list.go b/intersight_gosdk/model_tam_advisory_info_list.go index 25d2b77cd3..13d389c2c8 100644 --- a/intersight_gosdk/model_tam_advisory_info_list.go +++ b/intersight_gosdk/model_tam_advisory_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_advisory_info_response.go b/intersight_gosdk/model_tam_advisory_info_response.go index bfcc59ca9e..b3e32f6eb6 100644 --- a/intersight_gosdk/model_tam_advisory_info_response.go +++ b/intersight_gosdk/model_tam_advisory_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_advisory_instance.go b/intersight_gosdk/model_tam_advisory_instance.go index 540e58eb93..5cc1553491 100644 --- a/intersight_gosdk/model_tam_advisory_instance.go +++ b/intersight_gosdk/model_tam_advisory_instance.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_advisory_instance_list.go b/intersight_gosdk/model_tam_advisory_instance_list.go index 136ac1c33c..a04aa76a85 100644 --- a/intersight_gosdk/model_tam_advisory_instance_list.go +++ b/intersight_gosdk/model_tam_advisory_instance_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_advisory_instance_response.go b/intersight_gosdk/model_tam_advisory_instance_response.go index 94a1602502..b7fc4f815e 100644 --- a/intersight_gosdk/model_tam_advisory_instance_response.go +++ b/intersight_gosdk/model_tam_advisory_instance_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_api_data_source.go b/intersight_gosdk/model_tam_api_data_source.go index d94347e4ba..73f053a872 100644 --- a/intersight_gosdk/model_tam_api_data_source.go +++ b/intersight_gosdk/model_tam_api_data_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_base_advisory.go b/intersight_gosdk/model_tam_base_advisory.go index 5ec31189cb..f8f9457718 100644 --- a/intersight_gosdk/model_tam_base_advisory.go +++ b/intersight_gosdk/model_tam_base_advisory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_base_advisory_details.go b/intersight_gosdk/model_tam_base_advisory_details.go index 5f0965950d..555669b667 100644 --- a/intersight_gosdk/model_tam_base_advisory_details.go +++ b/intersight_gosdk/model_tam_base_advisory_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_base_advisory_relationship.go b/intersight_gosdk/model_tam_base_advisory_relationship.go index 47940df3b3..c2eb8135ea 100644 --- a/intersight_gosdk/model_tam_base_advisory_relationship.go +++ b/intersight_gosdk/model_tam_base_advisory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_base_data_source.go b/intersight_gosdk/model_tam_base_data_source.go index e2580bed28..31267594e3 100644 --- a/intersight_gosdk/model_tam_base_data_source.go +++ b/intersight_gosdk/model_tam_base_data_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_eol_advisory_details.go b/intersight_gosdk/model_tam_eol_advisory_details.go index 4fa49e32c7..8189d5b246 100644 --- a/intersight_gosdk/model_tam_eol_advisory_details.go +++ b/intersight_gosdk/model_tam_eol_advisory_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_eol_severity.go b/intersight_gosdk/model_tam_eol_severity.go index 0080e1b216..c4bca435c5 100644 --- a/intersight_gosdk/model_tam_eol_severity.go +++ b/intersight_gosdk/model_tam_eol_severity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_identifiers.go b/intersight_gosdk/model_tam_identifiers.go index fb68727596..8f36165da8 100644 --- a/intersight_gosdk/model_tam_identifiers.go +++ b/intersight_gosdk/model_tam_identifiers.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_milestone.go b/intersight_gosdk/model_tam_milestone.go index 02d02c71ec..b8dfeafa1c 100644 --- a/intersight_gosdk/model_tam_milestone.go +++ b/intersight_gosdk/model_tam_milestone.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_psirt_severity.go b/intersight_gosdk/model_tam_psirt_severity.go index 86eb6bf81a..254a37de0b 100644 --- a/intersight_gosdk/model_tam_psirt_severity.go +++ b/intersight_gosdk/model_tam_psirt_severity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_query_entry.go b/intersight_gosdk/model_tam_query_entry.go index 62bfa31dda..506c6ebebe 100644 --- a/intersight_gosdk/model_tam_query_entry.go +++ b/intersight_gosdk/model_tam_query_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_s3_data_source.go b/intersight_gosdk/model_tam_s3_data_source.go index 98f56fa893..d7c9cd3e7e 100644 --- a/intersight_gosdk/model_tam_s3_data_source.go +++ b/intersight_gosdk/model_tam_s3_data_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_security_advisory.go b/intersight_gosdk/model_tam_security_advisory.go index fc344afa2b..3071cafec8 100644 --- a/intersight_gosdk/model_tam_security_advisory.go +++ b/intersight_gosdk/model_tam_security_advisory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -45,7 +45,7 @@ type TamSecurityAdvisory struct { // Orion pod on which this advisory should process. * `tier1` - Advisory processing will be taken care in first advisory driver of multinode cluster. * `tier2` - Advisory processing will be taken care in second advisory driver of multinode cluster. ExecuteOnPod *string `json:"ExecuteOnPod,omitempty"` // A link to an external URL describing security Advisory in more details. - ExternalUrl *string `json:"ExternalUrl,omitempty"` + ExternalUrl *string `json:"ExternalUrl,omitempty" validate:"regexp=^$|^(?:http(s)?:\\/\\/)?[\\\\w.-]+(?:\\\\.[\\\\w\\\\.-]+)+[\\\\w\\\\-\\\\._~:\\/?#[\\\\]@!\\\\$&'\\\\(\\\\)\\\\*\\\\+,;=.]+$"` OtherRefUrls []string `json:"OtherRefUrls,omitempty"` // Recommended action to resolve the security advisory. Recommendation *string `json:"Recommendation,omitempty"` @@ -861,7 +861,7 @@ func (o *TamSecurityAdvisory) UnmarshalJSON(data []byte) (err error) { // Orion pod on which this advisory should process. * `tier1` - Advisory processing will be taken care in first advisory driver of multinode cluster. * `tier2` - Advisory processing will be taken care in second advisory driver of multinode cluster. ExecuteOnPod *string `json:"ExecuteOnPod,omitempty"` // A link to an external URL describing security Advisory in more details. - ExternalUrl *string `json:"ExternalUrl,omitempty"` + ExternalUrl *string `json:"ExternalUrl,omitempty" validate:"regexp=^$|^(?:http(s)?:\\/\\/)?[\\\\w.-]+(?:\\\\.[\\\\w\\\\.-]+)+[\\\\w\\\\-\\\\._~:\\/?#[\\\\]@!\\\\$&'\\\\(\\\\)\\\\*\\\\+,;=.]+$"` OtherRefUrls []string `json:"OtherRefUrls,omitempty"` // Recommended action to resolve the security advisory. Recommendation *string `json:"Recommendation,omitempty"` diff --git a/intersight_gosdk/model_tam_security_advisory_details.go b/intersight_gosdk/model_tam_security_advisory_details.go index 1c5260639d..5df393ed95 100644 --- a/intersight_gosdk/model_tam_security_advisory_details.go +++ b/intersight_gosdk/model_tam_security_advisory_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_security_advisory_list.go b/intersight_gosdk/model_tam_security_advisory_list.go index 33c3d15d6b..d760d7bfef 100644 --- a/intersight_gosdk/model_tam_security_advisory_list.go +++ b/intersight_gosdk/model_tam_security_advisory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_security_advisory_response.go b/intersight_gosdk/model_tam_security_advisory_response.go index 1ab5e2d2a4..47801ab5ee 100644 --- a/intersight_gosdk/model_tam_security_advisory_response.go +++ b/intersight_gosdk/model_tam_security_advisory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_severity.go b/intersight_gosdk/model_tam_severity.go index 5c14648692..ce10a23a23 100644 --- a/intersight_gosdk/model_tam_severity.go +++ b/intersight_gosdk/model_tam_severity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_text_fsm_template_data_source.go b/intersight_gosdk/model_tam_text_fsm_template_data_source.go index 4f0dfc425d..667a812339 100644 --- a/intersight_gosdk/model_tam_text_fsm_template_data_source.go +++ b/intersight_gosdk/model_tam_text_fsm_template_data_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_task_fabric_mos_scoped_inventory.go b/intersight_gosdk/model_task_fabric_mos_scoped_inventory.go index 7998273693..4661beaa1e 100644 --- a/intersight_gosdk/model_task_fabric_mos_scoped_inventory.go +++ b/intersight_gosdk/model_task_fabric_mos_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_task_hitachi_scoped_inventory.go b/intersight_gosdk/model_task_hitachi_scoped_inventory.go index 25dd4969aa..0223dab4a3 100644 --- a/intersight_gosdk/model_task_hitachi_scoped_inventory.go +++ b/intersight_gosdk/model_task_hitachi_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_task_hyper_flex_management_scoped_inventory.go b/intersight_gosdk/model_task_hyper_flex_management_scoped_inventory.go index 03ebcd338b..ca1cbf5e07 100644 --- a/intersight_gosdk/model_task_hyper_flex_management_scoped_inventory.go +++ b/intersight_gosdk/model_task_hyper_flex_management_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_task_hyperflex_scoped_inventory.go b/intersight_gosdk/model_task_hyperflex_scoped_inventory.go index b385e25b1e..5e488f8cd6 100644 --- a/intersight_gosdk/model_task_hyperflex_scoped_inventory.go +++ b/intersight_gosdk/model_task_hyperflex_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_task_mds_scoped_inventory.go b/intersight_gosdk/model_task_mds_scoped_inventory.go index 4be975f7fa..520a775cc0 100644 --- a/intersight_gosdk/model_task_mds_scoped_inventory.go +++ b/intersight_gosdk/model_task_mds_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_task_mds_system_scoped_inventory.go b/intersight_gosdk/model_task_mds_system_scoped_inventory.go index 387d75dfe5..4e74a8384d 100644 --- a/intersight_gosdk/model_task_mds_system_scoped_inventory.go +++ b/intersight_gosdk/model_task_mds_system_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_task_meraki_scoped_inventory.go b/intersight_gosdk/model_task_meraki_scoped_inventory.go index 81c913e5db..0d7bfed092 100644 --- a/intersight_gosdk/model_task_meraki_scoped_inventory.go +++ b/intersight_gosdk/model_task_meraki_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_task_net_app_scoped_inventory.go b/intersight_gosdk/model_task_net_app_scoped_inventory.go index 4a79c6eb5b..1f46124206 100644 --- a/intersight_gosdk/model_task_net_app_scoped_inventory.go +++ b/intersight_gosdk/model_task_net_app_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_task_nexus_scoped_inventory.go b/intersight_gosdk/model_task_nexus_scoped_inventory.go index 9378889a90..92f971d956 100644 --- a/intersight_gosdk/model_task_nexus_scoped_inventory.go +++ b/intersight_gosdk/model_task_nexus_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_task_nexus_system_scoped_inventory.go b/intersight_gosdk/model_task_nexus_system_scoped_inventory.go index 4c0aa5e4ac..d3ee4f9b54 100644 --- a/intersight_gosdk/model_task_nexus_system_scoped_inventory.go +++ b/intersight_gosdk/model_task_nexus_system_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_task_nexus_vlan_scoped_inventory.go b/intersight_gosdk/model_task_nexus_vlan_scoped_inventory.go index d91d0c5a34..10f7304a34 100644 --- a/intersight_gosdk/model_task_nexus_vlan_scoped_inventory.go +++ b/intersight_gosdk/model_task_nexus_vlan_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_task_public_cloud_scoped_inventory.go b/intersight_gosdk/model_task_public_cloud_scoped_inventory.go index 88a0d37886..d36937f97b 100644 --- a/intersight_gosdk/model_task_public_cloud_scoped_inventory.go +++ b/intersight_gosdk/model_task_public_cloud_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_task_pure_scoped_inventory.go b/intersight_gosdk/model_task_pure_scoped_inventory.go index 9b5ac97709..15fae16940 100644 --- a/intersight_gosdk/model_task_pure_scoped_inventory.go +++ b/intersight_gosdk/model_task_pure_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_task_server_scoped_inventory.go b/intersight_gosdk/model_task_server_scoped_inventory.go index 5ae6b3f7d4..7232e0f5fe 100644 --- a/intersight_gosdk/model_task_server_scoped_inventory.go +++ b/intersight_gosdk/model_task_server_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_appliance_param.go b/intersight_gosdk/model_techsupportmanagement_appliance_param.go index 562d6e2f68..df41ff6ebe 100644 --- a/intersight_gosdk/model_techsupportmanagement_appliance_param.go +++ b/intersight_gosdk/model_techsupportmanagement_appliance_param.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_collection_control_policy.go b/intersight_gosdk/model_techsupportmanagement_collection_control_policy.go index f9406b8714..45a2d1fc1d 100644 --- a/intersight_gosdk/model_techsupportmanagement_collection_control_policy.go +++ b/intersight_gosdk/model_techsupportmanagement_collection_control_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_collection_control_policy_list.go b/intersight_gosdk/model_techsupportmanagement_collection_control_policy_list.go index 469dac886c..d7ba583774 100644 --- a/intersight_gosdk/model_techsupportmanagement_collection_control_policy_list.go +++ b/intersight_gosdk/model_techsupportmanagement_collection_control_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_collection_control_policy_response.go b/intersight_gosdk/model_techsupportmanagement_collection_control_policy_response.go index e7579e5978..56683ffcf7 100644 --- a/intersight_gosdk/model_techsupportmanagement_collection_control_policy_response.go +++ b/intersight_gosdk/model_techsupportmanagement_collection_control_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_download.go b/intersight_gosdk/model_techsupportmanagement_download.go index af7251c423..324e243a9d 100644 --- a/intersight_gosdk/model_techsupportmanagement_download.go +++ b/intersight_gosdk/model_techsupportmanagement_download.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_download_list.go b/intersight_gosdk/model_techsupportmanagement_download_list.go index 22d0f8a06b..23e635334a 100644 --- a/intersight_gosdk/model_techsupportmanagement_download_list.go +++ b/intersight_gosdk/model_techsupportmanagement_download_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_download_response.go b/intersight_gosdk/model_techsupportmanagement_download_response.go index 44546dfaa1..2888048aca 100644 --- a/intersight_gosdk/model_techsupportmanagement_download_response.go +++ b/intersight_gosdk/model_techsupportmanagement_download_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_end_point.go b/intersight_gosdk/model_techsupportmanagement_end_point.go index 553e13d446..9756f782cf 100644 --- a/intersight_gosdk/model_techsupportmanagement_end_point.go +++ b/intersight_gosdk/model_techsupportmanagement_end_point.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_end_point_list.go b/intersight_gosdk/model_techsupportmanagement_end_point_list.go index 7ba87904f0..e1870c3482 100644 --- a/intersight_gosdk/model_techsupportmanagement_end_point_list.go +++ b/intersight_gosdk/model_techsupportmanagement_end_point_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_end_point_response.go b/intersight_gosdk/model_techsupportmanagement_end_point_response.go index 9ee69f62ec..f0e2361283 100644 --- a/intersight_gosdk/model_techsupportmanagement_end_point_response.go +++ b/intersight_gosdk/model_techsupportmanagement_end_point_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_nia_param.go b/intersight_gosdk/model_techsupportmanagement_nia_param.go index 6a304ad980..06875cd711 100644 --- a/intersight_gosdk/model_techsupportmanagement_nia_param.go +++ b/intersight_gosdk/model_techsupportmanagement_nia_param.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_platform_param.go b/intersight_gosdk/model_techsupportmanagement_platform_param.go index f59b7bfe66..e564875d96 100644 --- a/intersight_gosdk/model_techsupportmanagement_platform_param.go +++ b/intersight_gosdk/model_techsupportmanagement_platform_param.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_tech_support_bundle.go b/intersight_gosdk/model_techsupportmanagement_tech_support_bundle.go index 5e52064179..d3a2b798eb 100644 --- a/intersight_gosdk/model_techsupportmanagement_tech_support_bundle.go +++ b/intersight_gosdk/model_techsupportmanagement_tech_support_bundle.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_tech_support_bundle_list.go b/intersight_gosdk/model_techsupportmanagement_tech_support_bundle_list.go index f6f1c56710..520d2a43f7 100644 --- a/intersight_gosdk/model_techsupportmanagement_tech_support_bundle_list.go +++ b/intersight_gosdk/model_techsupportmanagement_tech_support_bundle_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_tech_support_bundle_relationship.go b/intersight_gosdk/model_techsupportmanagement_tech_support_bundle_relationship.go index 48b32a5e91..df390307f8 100644 --- a/intersight_gosdk/model_techsupportmanagement_tech_support_bundle_relationship.go +++ b/intersight_gosdk/model_techsupportmanagement_tech_support_bundle_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_tech_support_bundle_response.go b/intersight_gosdk/model_techsupportmanagement_tech_support_bundle_response.go index 67020d99a5..451cd14df6 100644 --- a/intersight_gosdk/model_techsupportmanagement_tech_support_bundle_response.go +++ b/intersight_gosdk/model_techsupportmanagement_tech_support_bundle_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_tech_support_file_info.go b/intersight_gosdk/model_techsupportmanagement_tech_support_file_info.go index 3faaba217d..0c90d5b9ae 100644 --- a/intersight_gosdk/model_techsupportmanagement_tech_support_file_info.go +++ b/intersight_gosdk/model_techsupportmanagement_tech_support_file_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_tech_support_status.go b/intersight_gosdk/model_techsupportmanagement_tech_support_status.go index 8fe699b08a..2598ef610e 100644 --- a/intersight_gosdk/model_techsupportmanagement_tech_support_status.go +++ b/intersight_gosdk/model_techsupportmanagement_tech_support_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_tech_support_status_list.go b/intersight_gosdk/model_techsupportmanagement_tech_support_status_list.go index ae2ac4ffcc..cf1e29a701 100644 --- a/intersight_gosdk/model_techsupportmanagement_tech_support_status_list.go +++ b/intersight_gosdk/model_techsupportmanagement_tech_support_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_tech_support_status_relationship.go b/intersight_gosdk/model_techsupportmanagement_tech_support_status_relationship.go index 2b423916f1..e2bdb161f0 100644 --- a/intersight_gosdk/model_techsupportmanagement_tech_support_status_relationship.go +++ b/intersight_gosdk/model_techsupportmanagement_tech_support_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_tech_support_status_response.go b/intersight_gosdk/model_techsupportmanagement_tech_support_status_response.go index a06584f7ab..574903267a 100644 --- a/intersight_gosdk/model_techsupportmanagement_tech_support_status_response.go +++ b/intersight_gosdk/model_techsupportmanagement_tech_support_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_aggregate_search_spec.go b/intersight_gosdk/model_telemetry_druid_aggregate_search_spec.go index e2f2c48cf1..affba4555a 100644 --- a/intersight_gosdk/model_telemetry_druid_aggregate_search_spec.go +++ b/intersight_gosdk/model_telemetry_druid_aggregate_search_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_aggregator.go b/intersight_gosdk/model_telemetry_druid_aggregator.go index 612d24c700..dcfd0c85d4 100644 --- a/intersight_gosdk/model_telemetry_druid_aggregator.go +++ b/intersight_gosdk/model_telemetry_druid_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_and_filter.go b/intersight_gosdk/model_telemetry_druid_and_filter.go index 51115dc620..f91fe7dde7 100644 --- a/intersight_gosdk/model_telemetry_druid_and_filter.go +++ b/intersight_gosdk/model_telemetry_druid_and_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_any_aggregator.go b/intersight_gosdk/model_telemetry_druid_any_aggregator.go index 2b29f30da4..8bfc6a920e 100644 --- a/intersight_gosdk/model_telemetry_druid_any_aggregator.go +++ b/intersight_gosdk/model_telemetry_druid_any_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_arithmetic_post_aggregator.go b/intersight_gosdk/model_telemetry_druid_arithmetic_post_aggregator.go index ad5ededbc2..95a2d39b76 100644 --- a/intersight_gosdk/model_telemetry_druid_arithmetic_post_aggregator.go +++ b/intersight_gosdk/model_telemetry_druid_arithmetic_post_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_base_aggregator.go b/intersight_gosdk/model_telemetry_druid_base_aggregator.go index 6aa3722c53..977da5df2b 100644 --- a/intersight_gosdk/model_telemetry_druid_base_aggregator.go +++ b/intersight_gosdk/model_telemetry_druid_base_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_base_data_source.go b/intersight_gosdk/model_telemetry_druid_base_data_source.go index 61aa3f1841..53cd1dd87b 100644 --- a/intersight_gosdk/model_telemetry_druid_base_data_source.go +++ b/intersight_gosdk/model_telemetry_druid_base_data_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_base_dimension_spec.go b/intersight_gosdk/model_telemetry_druid_base_dimension_spec.go index a8693fa1b0..5d8f1d22a2 100644 --- a/intersight_gosdk/model_telemetry_druid_base_dimension_spec.go +++ b/intersight_gosdk/model_telemetry_druid_base_dimension_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_base_extraction_function.go b/intersight_gosdk/model_telemetry_druid_base_extraction_function.go index 78cf24add0..2b72f24f60 100644 --- a/intersight_gosdk/model_telemetry_druid_base_extraction_function.go +++ b/intersight_gosdk/model_telemetry_druid_base_extraction_function.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_base_filter.go b/intersight_gosdk/model_telemetry_druid_base_filter.go index 795f52d2fa..0c1fb4349c 100644 --- a/intersight_gosdk/model_telemetry_druid_base_filter.go +++ b/intersight_gosdk/model_telemetry_druid_base_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_base_granularity.go b/intersight_gosdk/model_telemetry_druid_base_granularity.go index 39576936f2..b97a979034 100644 --- a/intersight_gosdk/model_telemetry_druid_base_granularity.go +++ b/intersight_gosdk/model_telemetry_druid_base_granularity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_base_having_filter.go b/intersight_gosdk/model_telemetry_druid_base_having_filter.go index 0409c0b276..ae29c1cea3 100644 --- a/intersight_gosdk/model_telemetry_druid_base_having_filter.go +++ b/intersight_gosdk/model_telemetry_druid_base_having_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_base_limit_spec.go b/intersight_gosdk/model_telemetry_druid_base_limit_spec.go index af62d198e1..14caf1c933 100644 --- a/intersight_gosdk/model_telemetry_druid_base_limit_spec.go +++ b/intersight_gosdk/model_telemetry_druid_base_limit_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_base_post_aggregator.go b/intersight_gosdk/model_telemetry_druid_base_post_aggregator.go index b9dd00a22f..286d75d2f0 100644 --- a/intersight_gosdk/model_telemetry_druid_base_post_aggregator.go +++ b/intersight_gosdk/model_telemetry_druid_base_post_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_base_query_spec.go b/intersight_gosdk/model_telemetry_druid_base_query_spec.go index 3b89813e05..218ae5bf45 100644 --- a/intersight_gosdk/model_telemetry_druid_base_query_spec.go +++ b/intersight_gosdk/model_telemetry_druid_base_query_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_base_request.go b/intersight_gosdk/model_telemetry_druid_base_request.go index 96b47dcaa5..683a0cb4f5 100644 --- a/intersight_gosdk/model_telemetry_druid_base_request.go +++ b/intersight_gosdk/model_telemetry_druid_base_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_base_search_spec.go b/intersight_gosdk/model_telemetry_druid_base_search_spec.go index 433e545d6c..be9fd058ae 100644 --- a/intersight_gosdk/model_telemetry_druid_base_search_spec.go +++ b/intersight_gosdk/model_telemetry_druid_base_search_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_base_top_n_metric_spec.go b/intersight_gosdk/model_telemetry_druid_base_top_n_metric_spec.go index 0ab5b9542d..7834da9207 100644 --- a/intersight_gosdk/model_telemetry_druid_base_top_n_metric_spec.go +++ b/intersight_gosdk/model_telemetry_druid_base_top_n_metric_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_bound_filter.go b/intersight_gosdk/model_telemetry_druid_bound_filter.go index 938bf1a2ee..a441a35c01 100644 --- a/intersight_gosdk/model_telemetry_druid_bound_filter.go +++ b/intersight_gosdk/model_telemetry_druid_bound_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_column_comparison_filter.go b/intersight_gosdk/model_telemetry_druid_column_comparison_filter.go index 955d451d6d..00c4d87883 100644 --- a/intersight_gosdk/model_telemetry_druid_column_comparison_filter.go +++ b/intersight_gosdk/model_telemetry_druid_column_comparison_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_constant_post_aggregator.go b/intersight_gosdk/model_telemetry_druid_constant_post_aggregator.go index 2716475956..dd579024eb 100644 --- a/intersight_gosdk/model_telemetry_druid_constant_post_aggregator.go +++ b/intersight_gosdk/model_telemetry_druid_constant_post_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_contains_search_spec.go b/intersight_gosdk/model_telemetry_druid_contains_search_spec.go index 15eb3d815a..bf147f87ec 100644 --- a/intersight_gosdk/model_telemetry_druid_contains_search_spec.go +++ b/intersight_gosdk/model_telemetry_druid_contains_search_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_count_aggregator.go b/intersight_gosdk/model_telemetry_druid_count_aggregator.go index 66a2f8ad3d..c5344589e9 100644 --- a/intersight_gosdk/model_telemetry_druid_count_aggregator.go +++ b/intersight_gosdk/model_telemetry_druid_count_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_data_source.go b/intersight_gosdk/model_telemetry_druid_data_source.go index 3e90cab2cd..fe2855c855 100644 --- a/intersight_gosdk/model_telemetry_druid_data_source.go +++ b/intersight_gosdk/model_telemetry_druid_data_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_data_source_metadata_request.go b/intersight_gosdk/model_telemetry_druid_data_source_metadata_request.go index cb22ede8af..5d3ab742e0 100644 --- a/intersight_gosdk/model_telemetry_druid_data_source_metadata_request.go +++ b/intersight_gosdk/model_telemetry_druid_data_source_metadata_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_data_source_metadata_result.go b/intersight_gosdk/model_telemetry_druid_data_source_metadata_result.go index f0417c2926..c895e31d4e 100644 --- a/intersight_gosdk/model_telemetry_druid_data_source_metadata_result.go +++ b/intersight_gosdk/model_telemetry_druid_data_source_metadata_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_default_dimension_spec.go b/intersight_gosdk/model_telemetry_druid_default_dimension_spec.go index ab6338d024..6a4c25cf52 100644 --- a/intersight_gosdk/model_telemetry_druid_default_dimension_spec.go +++ b/intersight_gosdk/model_telemetry_druid_default_dimension_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_default_limit_spec.go b/intersight_gosdk/model_telemetry_druid_default_limit_spec.go index 793b81cab3..53495a199a 100644 --- a/intersight_gosdk/model_telemetry_druid_default_limit_spec.go +++ b/intersight_gosdk/model_telemetry_druid_default_limit_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_dimension_spec.go b/intersight_gosdk/model_telemetry_druid_dimension_spec.go index 83dab13b31..cde6d1f1a2 100644 --- a/intersight_gosdk/model_telemetry_druid_dimension_spec.go +++ b/intersight_gosdk/model_telemetry_druid_dimension_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_dimension_top_n_metric_spec.go b/intersight_gosdk/model_telemetry_druid_dimension_top_n_metric_spec.go index 5c2dd4fbaf..5b874828e7 100644 --- a/intersight_gosdk/model_telemetry_druid_dimension_top_n_metric_spec.go +++ b/intersight_gosdk/model_telemetry_druid_dimension_top_n_metric_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_duration_granularity.go b/intersight_gosdk/model_telemetry_druid_duration_granularity.go index 233f61c6b7..7f405e33b0 100644 --- a/intersight_gosdk/model_telemetry_druid_duration_granularity.go +++ b/intersight_gosdk/model_telemetry_druid_duration_granularity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_equality_filter.go b/intersight_gosdk/model_telemetry_druid_equality_filter.go index 86ae256567..e74835412a 100644 --- a/intersight_gosdk/model_telemetry_druid_equality_filter.go +++ b/intersight_gosdk/model_telemetry_druid_equality_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_error.go b/intersight_gosdk/model_telemetry_druid_error.go index 752c366873..178b248ba4 100644 --- a/intersight_gosdk/model_telemetry_druid_error.go +++ b/intersight_gosdk/model_telemetry_druid_error.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_expression_filter.go b/intersight_gosdk/model_telemetry_druid_expression_filter.go index ad1000064a..7a7afe873b 100644 --- a/intersight_gosdk/model_telemetry_druid_expression_filter.go +++ b/intersight_gosdk/model_telemetry_druid_expression_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_expression_post_aggregator.go b/intersight_gosdk/model_telemetry_druid_expression_post_aggregator.go index 4c34c7e20e..883bb7b589 100644 --- a/intersight_gosdk/model_telemetry_druid_expression_post_aggregator.go +++ b/intersight_gosdk/model_telemetry_druid_expression_post_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_extraction_dimension_spec.go b/intersight_gosdk/model_telemetry_druid_extraction_dimension_spec.go index 640ac3fd4a..1edcddd6f6 100644 --- a/intersight_gosdk/model_telemetry_druid_extraction_dimension_spec.go +++ b/intersight_gosdk/model_telemetry_druid_extraction_dimension_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_extraction_function.go b/intersight_gosdk/model_telemetry_druid_extraction_function.go index cc3194f5ea..8422b62740 100644 --- a/intersight_gosdk/model_telemetry_druid_extraction_function.go +++ b/intersight_gosdk/model_telemetry_druid_extraction_function.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_extraction_function_bucket.go b/intersight_gosdk/model_telemetry_druid_extraction_function_bucket.go index acdb76763d..cfffa0a8d8 100644 --- a/intersight_gosdk/model_telemetry_druid_extraction_function_bucket.go +++ b/intersight_gosdk/model_telemetry_druid_extraction_function_bucket.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_extraction_function_cascade.go b/intersight_gosdk/model_telemetry_druid_extraction_function_cascade.go index 316f7c6b58..d4f7211782 100644 --- a/intersight_gosdk/model_telemetry_druid_extraction_function_cascade.go +++ b/intersight_gosdk/model_telemetry_druid_extraction_function_cascade.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_extraction_function_inline_lookup.go b/intersight_gosdk/model_telemetry_druid_extraction_function_inline_lookup.go index d1436bccf6..fbf46afb18 100644 --- a/intersight_gosdk/model_telemetry_druid_extraction_function_inline_lookup.go +++ b/intersight_gosdk/model_telemetry_druid_extraction_function_inline_lookup.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_extraction_function_inline_lookup_all_of_lookup.go b/intersight_gosdk/model_telemetry_druid_extraction_function_inline_lookup_all_of_lookup.go index 24c6d1cdbc..0071e35a7d 100644 --- a/intersight_gosdk/model_telemetry_druid_extraction_function_inline_lookup_all_of_lookup.go +++ b/intersight_gosdk/model_telemetry_druid_extraction_function_inline_lookup_all_of_lookup.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_extraction_function_lower_case.go b/intersight_gosdk/model_telemetry_druid_extraction_function_lower_case.go index 59f99ddc03..93fa2e2a35 100644 --- a/intersight_gosdk/model_telemetry_druid_extraction_function_lower_case.go +++ b/intersight_gosdk/model_telemetry_druid_extraction_function_lower_case.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_extraction_function_partial.go b/intersight_gosdk/model_telemetry_druid_extraction_function_partial.go index 8486c9164f..bea304ae94 100644 --- a/intersight_gosdk/model_telemetry_druid_extraction_function_partial.go +++ b/intersight_gosdk/model_telemetry_druid_extraction_function_partial.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_extraction_function_regex.go b/intersight_gosdk/model_telemetry_druid_extraction_function_regex.go index b1d03fdbf8..98e79a999e 100644 --- a/intersight_gosdk/model_telemetry_druid_extraction_function_regex.go +++ b/intersight_gosdk/model_telemetry_druid_extraction_function_regex.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_extraction_function_search_query.go b/intersight_gosdk/model_telemetry_druid_extraction_function_search_query.go index b156192c2a..b754d0a0eb 100644 --- a/intersight_gosdk/model_telemetry_druid_extraction_function_search_query.go +++ b/intersight_gosdk/model_telemetry_druid_extraction_function_search_query.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_extraction_function_string_format.go b/intersight_gosdk/model_telemetry_druid_extraction_function_string_format.go index 96621d9a59..3f9b6c4dc7 100644 --- a/intersight_gosdk/model_telemetry_druid_extraction_function_string_format.go +++ b/intersight_gosdk/model_telemetry_druid_extraction_function_string_format.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_extraction_function_strlen.go b/intersight_gosdk/model_telemetry_druid_extraction_function_strlen.go index 5492c36414..02366a8bb0 100644 --- a/intersight_gosdk/model_telemetry_druid_extraction_function_strlen.go +++ b/intersight_gosdk/model_telemetry_druid_extraction_function_strlen.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_extraction_function_substring.go b/intersight_gosdk/model_telemetry_druid_extraction_function_substring.go index acb9141fd0..f5f05c6a25 100644 --- a/intersight_gosdk/model_telemetry_druid_extraction_function_substring.go +++ b/intersight_gosdk/model_telemetry_druid_extraction_function_substring.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_extraction_function_time_format.go b/intersight_gosdk/model_telemetry_druid_extraction_function_time_format.go index 797b20e7e9..5a710d2292 100644 --- a/intersight_gosdk/model_telemetry_druid_extraction_function_time_format.go +++ b/intersight_gosdk/model_telemetry_druid_extraction_function_time_format.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_extraction_function_time_parsing.go b/intersight_gosdk/model_telemetry_druid_extraction_function_time_parsing.go index 409e838cfe..459b2867b7 100644 --- a/intersight_gosdk/model_telemetry_druid_extraction_function_time_parsing.go +++ b/intersight_gosdk/model_telemetry_druid_extraction_function_time_parsing.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_extraction_function_upper_case.go b/intersight_gosdk/model_telemetry_druid_extraction_function_upper_case.go index 1d926d24e0..36f09f7ddc 100644 --- a/intersight_gosdk/model_telemetry_druid_extraction_function_upper_case.go +++ b/intersight_gosdk/model_telemetry_druid_extraction_function_upper_case.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_false_filter.go b/intersight_gosdk/model_telemetry_druid_false_filter.go index bc12c8a21d..b2dea6fa30 100644 --- a/intersight_gosdk/model_telemetry_druid_false_filter.go +++ b/intersight_gosdk/model_telemetry_druid_false_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_field_accessor_post_aggregator.go b/intersight_gosdk/model_telemetry_druid_field_accessor_post_aggregator.go index 856023818a..e641a9cda8 100644 --- a/intersight_gosdk/model_telemetry_druid_field_accessor_post_aggregator.go +++ b/intersight_gosdk/model_telemetry_druid_field_accessor_post_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_filter.go b/intersight_gosdk/model_telemetry_druid_filter.go index c685092216..32922fcfba 100644 --- a/intersight_gosdk/model_telemetry_druid_filter.go +++ b/intersight_gosdk/model_telemetry_druid_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_filtered_aggregator.go b/intersight_gosdk/model_telemetry_druid_filtered_aggregator.go index 1fe25cc247..240b3cee98 100644 --- a/intersight_gosdk/model_telemetry_druid_filtered_aggregator.go +++ b/intersight_gosdk/model_telemetry_druid_filtered_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_first_last_aggregator.go b/intersight_gosdk/model_telemetry_druid_first_last_aggregator.go index 3dc8a02360..f84942bada 100644 --- a/intersight_gosdk/model_telemetry_druid_first_last_aggregator.go +++ b/intersight_gosdk/model_telemetry_druid_first_last_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_fragment_search_spec.go b/intersight_gosdk/model_telemetry_druid_fragment_search_spec.go index 6e9649de57..f93a4f2dc7 100644 --- a/intersight_gosdk/model_telemetry_druid_fragment_search_spec.go +++ b/intersight_gosdk/model_telemetry_druid_fragment_search_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_granularity.go b/intersight_gosdk/model_telemetry_druid_granularity.go index 2f768d15e4..65995b4e60 100644 --- a/intersight_gosdk/model_telemetry_druid_granularity.go +++ b/intersight_gosdk/model_telemetry_druid_granularity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_greatest_least_post_aggregator.go b/intersight_gosdk/model_telemetry_druid_greatest_least_post_aggregator.go index 0f6bb78774..c60b98114d 100644 --- a/intersight_gosdk/model_telemetry_druid_greatest_least_post_aggregator.go +++ b/intersight_gosdk/model_telemetry_druid_greatest_least_post_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_group_by_request.go b/intersight_gosdk/model_telemetry_druid_group_by_request.go index 1c531cccc6..f3ccec3c14 100644 --- a/intersight_gosdk/model_telemetry_druid_group_by_request.go +++ b/intersight_gosdk/model_telemetry_druid_group_by_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_group_by_result.go b/intersight_gosdk/model_telemetry_druid_group_by_result.go index a9a831797f..64efc5a8b8 100644 --- a/intersight_gosdk/model_telemetry_druid_group_by_result.go +++ b/intersight_gosdk/model_telemetry_druid_group_by_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_having_dimension_selector_filter.go b/intersight_gosdk/model_telemetry_druid_having_dimension_selector_filter.go index a655e27b67..7ce813552d 100644 --- a/intersight_gosdk/model_telemetry_druid_having_dimension_selector_filter.go +++ b/intersight_gosdk/model_telemetry_druid_having_dimension_selector_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_having_filter.go b/intersight_gosdk/model_telemetry_druid_having_filter.go index dcc9ea9dd9..a32f8adb29 100644 --- a/intersight_gosdk/model_telemetry_druid_having_filter.go +++ b/intersight_gosdk/model_telemetry_druid_having_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_having_numeric_filter.go b/intersight_gosdk/model_telemetry_druid_having_numeric_filter.go index 8e290503e8..8834c21c12 100644 --- a/intersight_gosdk/model_telemetry_druid_having_numeric_filter.go +++ b/intersight_gosdk/model_telemetry_druid_having_numeric_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_having_query_filter.go b/intersight_gosdk/model_telemetry_druid_having_query_filter.go index baed6862c5..a60409b977 100644 --- a/intersight_gosdk/model_telemetry_druid_having_query_filter.go +++ b/intersight_gosdk/model_telemetry_druid_having_query_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_hyper_unique_post_aggregator.go b/intersight_gosdk/model_telemetry_druid_hyper_unique_post_aggregator.go index c56b4d5795..c210e59f84 100644 --- a/intersight_gosdk/model_telemetry_druid_hyper_unique_post_aggregator.go +++ b/intersight_gosdk/model_telemetry_druid_hyper_unique_post_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_in_filter.go b/intersight_gosdk/model_telemetry_druid_in_filter.go index 42deccf0a9..4a3c618045 100644 --- a/intersight_gosdk/model_telemetry_druid_in_filter.go +++ b/intersight_gosdk/model_telemetry_druid_in_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_inline_data_source.go b/intersight_gosdk/model_telemetry_druid_inline_data_source.go index 48479c0b22..f500dd6f30 100644 --- a/intersight_gosdk/model_telemetry_druid_inline_data_source.go +++ b/intersight_gosdk/model_telemetry_druid_inline_data_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_insensitive_contains_search_spec.go b/intersight_gosdk/model_telemetry_druid_insensitive_contains_search_spec.go index 8166223180..e565fc5660 100644 --- a/intersight_gosdk/model_telemetry_druid_insensitive_contains_search_spec.go +++ b/intersight_gosdk/model_telemetry_druid_insensitive_contains_search_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_interval_filter.go b/intersight_gosdk/model_telemetry_druid_interval_filter.go index 50f51b0ed0..d122cedf37 100644 --- a/intersight_gosdk/model_telemetry_druid_interval_filter.go +++ b/intersight_gosdk/model_telemetry_druid_interval_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_interval_result.go b/intersight_gosdk/model_telemetry_druid_interval_result.go index 18da95235d..5191462f9a 100644 --- a/intersight_gosdk/model_telemetry_druid_interval_result.go +++ b/intersight_gosdk/model_telemetry_druid_interval_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_inverted_top_n_metric_spec.go b/intersight_gosdk/model_telemetry_druid_inverted_top_n_metric_spec.go index 7c6054b827..c3681abec5 100644 --- a/intersight_gosdk/model_telemetry_druid_inverted_top_n_metric_spec.go +++ b/intersight_gosdk/model_telemetry_druid_inverted_top_n_metric_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_join_data_source.go b/intersight_gosdk/model_telemetry_druid_join_data_source.go index a1eea6dd30..e76061df7e 100644 --- a/intersight_gosdk/model_telemetry_druid_join_data_source.go +++ b/intersight_gosdk/model_telemetry_druid_join_data_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_like_filter.go b/intersight_gosdk/model_telemetry_druid_like_filter.go index 8c1704f7be..a899fb929e 100644 --- a/intersight_gosdk/model_telemetry_druid_like_filter.go +++ b/intersight_gosdk/model_telemetry_druid_like_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_lookup_data_source.go b/intersight_gosdk/model_telemetry_druid_lookup_data_source.go index 8fd31e81d2..82aeb6f14d 100644 --- a/intersight_gosdk/model_telemetry_druid_lookup_data_source.go +++ b/intersight_gosdk/model_telemetry_druid_lookup_data_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_min_max_aggregator.go b/intersight_gosdk/model_telemetry_druid_min_max_aggregator.go index d3a8aa4060..82904bbcdd 100644 --- a/intersight_gosdk/model_telemetry_druid_min_max_aggregator.go +++ b/intersight_gosdk/model_telemetry_druid_min_max_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_not_filter.go b/intersight_gosdk/model_telemetry_druid_not_filter.go index a9d7ec101a..f793f1268f 100644 --- a/intersight_gosdk/model_telemetry_druid_not_filter.go +++ b/intersight_gosdk/model_telemetry_druid_not_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_null_filter.go b/intersight_gosdk/model_telemetry_druid_null_filter.go index 2b9d45df81..d2283cf964 100644 --- a/intersight_gosdk/model_telemetry_druid_null_filter.go +++ b/intersight_gosdk/model_telemetry_druid_null_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_numeric_top_n_metric_spec.go b/intersight_gosdk/model_telemetry_druid_numeric_top_n_metric_spec.go index 02a5626362..ca141e49af 100644 --- a/intersight_gosdk/model_telemetry_druid_numeric_top_n_metric_spec.go +++ b/intersight_gosdk/model_telemetry_druid_numeric_top_n_metric_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_or_filter.go b/intersight_gosdk/model_telemetry_druid_or_filter.go index 7decd5bc71..f34a933152 100644 --- a/intersight_gosdk/model_telemetry_druid_or_filter.go +++ b/intersight_gosdk/model_telemetry_druid_or_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_order_by_column_spec.go b/intersight_gosdk/model_telemetry_druid_order_by_column_spec.go index 2d558311c7..ab9aa9dc53 100644 --- a/intersight_gosdk/model_telemetry_druid_order_by_column_spec.go +++ b/intersight_gosdk/model_telemetry_druid_order_by_column_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_period_granularity.go b/intersight_gosdk/model_telemetry_druid_period_granularity.go index 49b1a56260..78de9357ee 100644 --- a/intersight_gosdk/model_telemetry_druid_period_granularity.go +++ b/intersight_gosdk/model_telemetry_druid_period_granularity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_post_aggregator.go b/intersight_gosdk/model_telemetry_druid_post_aggregator.go index b8d8be33b2..d99b576d9b 100644 --- a/intersight_gosdk/model_telemetry_druid_post_aggregator.go +++ b/intersight_gosdk/model_telemetry_druid_post_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_query_context.go b/intersight_gosdk/model_telemetry_druid_query_context.go index 79868dda0c..e680f5c715 100644 --- a/intersight_gosdk/model_telemetry_druid_query_context.go +++ b/intersight_gosdk/model_telemetry_druid_query_context.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_query_data_source.go b/intersight_gosdk/model_telemetry_druid_query_data_source.go index 192edb1bcf..7f202e1afb 100644 --- a/intersight_gosdk/model_telemetry_druid_query_data_source.go +++ b/intersight_gosdk/model_telemetry_druid_query_data_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_query_spec.go b/intersight_gosdk/model_telemetry_druid_query_spec.go index 61e0dc004c..53b41cabb1 100644 --- a/intersight_gosdk/model_telemetry_druid_query_spec.go +++ b/intersight_gosdk/model_telemetry_druid_query_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_query_spec_contains.go b/intersight_gosdk/model_telemetry_druid_query_spec_contains.go index f80e3c48a6..8d97ac586c 100644 --- a/intersight_gosdk/model_telemetry_druid_query_spec_contains.go +++ b/intersight_gosdk/model_telemetry_druid_query_spec_contains.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_query_spec_fragment.go b/intersight_gosdk/model_telemetry_druid_query_spec_fragment.go index 32e89e308a..723046191a 100644 --- a/intersight_gosdk/model_telemetry_druid_query_spec_fragment.go +++ b/intersight_gosdk/model_telemetry_druid_query_spec_fragment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_query_spec_insensitive_contains.go b/intersight_gosdk/model_telemetry_druid_query_spec_insensitive_contains.go index 0a0a0256e1..fc28eac884 100644 --- a/intersight_gosdk/model_telemetry_druid_query_spec_insensitive_contains.go +++ b/intersight_gosdk/model_telemetry_druid_query_spec_insensitive_contains.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_range_filter.go b/intersight_gosdk/model_telemetry_druid_range_filter.go index 56580eaeb1..365246c7c3 100644 --- a/intersight_gosdk/model_telemetry_druid_range_filter.go +++ b/intersight_gosdk/model_telemetry_druid_range_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_regex_filter.go b/intersight_gosdk/model_telemetry_druid_regex_filter.go index 736fe91b5a..10e07afbe3 100644 --- a/intersight_gosdk/model_telemetry_druid_regex_filter.go +++ b/intersight_gosdk/model_telemetry_druid_regex_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_regex_search_spec.go b/intersight_gosdk/model_telemetry_druid_regex_search_spec.go index 71e33a7c4e..f3ae0ff2d7 100644 --- a/intersight_gosdk/model_telemetry_druid_regex_search_spec.go +++ b/intersight_gosdk/model_telemetry_druid_regex_search_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_scan_request.go b/intersight_gosdk/model_telemetry_druid_scan_request.go index 5ed8e185f3..b842bb4ef9 100644 --- a/intersight_gosdk/model_telemetry_druid_scan_request.go +++ b/intersight_gosdk/model_telemetry_druid_scan_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_scan_result.go b/intersight_gosdk/model_telemetry_druid_scan_result.go index a2e75f5b33..86327bc82f 100644 --- a/intersight_gosdk/model_telemetry_druid_scan_result.go +++ b/intersight_gosdk/model_telemetry_druid_scan_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_search_filter.go b/intersight_gosdk/model_telemetry_druid_search_filter.go index 674bcd578c..874a5e4e14 100644 --- a/intersight_gosdk/model_telemetry_druid_search_filter.go +++ b/intersight_gosdk/model_telemetry_druid_search_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_search_request.go b/intersight_gosdk/model_telemetry_druid_search_request.go index fd8482f3a8..88b0f38f6c 100644 --- a/intersight_gosdk/model_telemetry_druid_search_request.go +++ b/intersight_gosdk/model_telemetry_druid_search_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_search_result.go b/intersight_gosdk/model_telemetry_druid_search_result.go index fb045a093c..aac1c80f56 100644 --- a/intersight_gosdk/model_telemetry_druid_search_result.go +++ b/intersight_gosdk/model_telemetry_druid_search_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_segment_metadata_request.go b/intersight_gosdk/model_telemetry_druid_segment_metadata_request.go index 191becedcd..969e35d048 100644 --- a/intersight_gosdk/model_telemetry_druid_segment_metadata_request.go +++ b/intersight_gosdk/model_telemetry_druid_segment_metadata_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_segment_metadata_result.go b/intersight_gosdk/model_telemetry_druid_segment_metadata_result.go index 5144fb4227..49683ebc56 100644 --- a/intersight_gosdk/model_telemetry_druid_segment_metadata_result.go +++ b/intersight_gosdk/model_telemetry_druid_segment_metadata_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_selector_filter.go b/intersight_gosdk/model_telemetry_druid_selector_filter.go index 8f35fb7cb0..f634d6deef 100644 --- a/intersight_gosdk/model_telemetry_druid_selector_filter.go +++ b/intersight_gosdk/model_telemetry_druid_selector_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_string_any_aggregator.go b/intersight_gosdk/model_telemetry_druid_string_any_aggregator.go index 07362028a6..4494321a37 100644 --- a/intersight_gosdk/model_telemetry_druid_string_any_aggregator.go +++ b/intersight_gosdk/model_telemetry_druid_string_any_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_string_first_last_aggregator.go b/intersight_gosdk/model_telemetry_druid_string_first_last_aggregator.go index edaaff9cc2..452eb2e1d3 100644 --- a/intersight_gosdk/model_telemetry_druid_string_first_last_aggregator.go +++ b/intersight_gosdk/model_telemetry_druid_string_first_last_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_sum_aggregator.go b/intersight_gosdk/model_telemetry_druid_sum_aggregator.go index 13b3a9ee3f..a7a0f27d08 100644 --- a/intersight_gosdk/model_telemetry_druid_sum_aggregator.go +++ b/intersight_gosdk/model_telemetry_druid_sum_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_table_data_source.go b/intersight_gosdk/model_telemetry_druid_table_data_source.go index 6d69b0ab8c..f81877cfb7 100644 --- a/intersight_gosdk/model_telemetry_druid_table_data_source.go +++ b/intersight_gosdk/model_telemetry_druid_table_data_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_theta_sketch_aggregator.go b/intersight_gosdk/model_telemetry_druid_theta_sketch_aggregator.go index de07bd6dc6..a8e00d7d5a 100644 --- a/intersight_gosdk/model_telemetry_druid_theta_sketch_aggregator.go +++ b/intersight_gosdk/model_telemetry_druid_theta_sketch_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_theta_sketch_estimate_post_aggregator.go b/intersight_gosdk/model_telemetry_druid_theta_sketch_estimate_post_aggregator.go index 00a7a9b470..ee269dce1f 100644 --- a/intersight_gosdk/model_telemetry_druid_theta_sketch_estimate_post_aggregator.go +++ b/intersight_gosdk/model_telemetry_druid_theta_sketch_estimate_post_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_theta_sketch_operations_post_aggregator.go b/intersight_gosdk/model_telemetry_druid_theta_sketch_operations_post_aggregator.go index 55bfcd7483..1498c08ad2 100644 --- a/intersight_gosdk/model_telemetry_druid_theta_sketch_operations_post_aggregator.go +++ b/intersight_gosdk/model_telemetry_druid_theta_sketch_operations_post_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_time_boundary_request.go b/intersight_gosdk/model_telemetry_druid_time_boundary_request.go index 84f4e9907c..47b6595106 100644 --- a/intersight_gosdk/model_telemetry_druid_time_boundary_request.go +++ b/intersight_gosdk/model_telemetry_druid_time_boundary_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_time_boundary_result.go b/intersight_gosdk/model_telemetry_druid_time_boundary_result.go index b6818d0024..2e471ea3bb 100644 --- a/intersight_gosdk/model_telemetry_druid_time_boundary_result.go +++ b/intersight_gosdk/model_telemetry_druid_time_boundary_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_time_series_request.go b/intersight_gosdk/model_telemetry_druid_time_series_request.go index ee1e8dd1ea..78dea56df8 100644 --- a/intersight_gosdk/model_telemetry_druid_time_series_request.go +++ b/intersight_gosdk/model_telemetry_druid_time_series_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_top_n_metric_spec.go b/intersight_gosdk/model_telemetry_druid_top_n_metric_spec.go index 03d6fe2283..2c0198f213 100644 --- a/intersight_gosdk/model_telemetry_druid_top_n_metric_spec.go +++ b/intersight_gosdk/model_telemetry_druid_top_n_metric_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_top_n_request.go b/intersight_gosdk/model_telemetry_druid_top_n_request.go index 56181d61e5..3427248ce4 100644 --- a/intersight_gosdk/model_telemetry_druid_top_n_request.go +++ b/intersight_gosdk/model_telemetry_druid_top_n_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_top_n_result.go b/intersight_gosdk/model_telemetry_druid_top_n_result.go index 843e393945..a4a328898c 100644 --- a/intersight_gosdk/model_telemetry_druid_top_n_result.go +++ b/intersight_gosdk/model_telemetry_druid_top_n_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_true_filter.go b/intersight_gosdk/model_telemetry_druid_true_filter.go index a01347cb04..331dc60d85 100644 --- a/intersight_gosdk/model_telemetry_druid_true_filter.go +++ b/intersight_gosdk/model_telemetry_druid_true_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_union_data_source.go b/intersight_gosdk/model_telemetry_druid_union_data_source.go index 9aad7ee1be..4392eb490c 100644 --- a/intersight_gosdk/model_telemetry_druid_union_data_source.go +++ b/intersight_gosdk/model_telemetry_druid_union_data_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_template_transformation_stage.go b/intersight_gosdk/model_template_transformation_stage.go index 6f51d1b951..ee89d2405a 100644 --- a/intersight_gosdk/model_template_transformation_stage.go +++ b/intersight_gosdk/model_template_transformation_stage.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type TemplateTransformationStage struct { // A collection of arguments for the function being executed. FunctionArguments interface{} `json:"FunctionArguments,omitempty"` // The unique name by which the output of this transformation stage can be accessed in further stages. Only alphanumeric characters are allowed. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]{1,64}$"` AdditionalProperties map[string]interface{} } @@ -312,7 +312,7 @@ func (o *TemplateTransformationStage) UnmarshalJSON(data []byte) (err error) { // A collection of arguments for the function being executed. FunctionArguments interface{} `json:"FunctionArguments,omitempty"` // The unique name by which the output of this transformation stage can be accessed in further stages. Only alphanumeric characters are allowed. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]{1,64}$"` } varTemplateTransformationStageWithoutEmbeddedStruct := TemplateTransformationStageWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_terminal_audit_log.go b/intersight_gosdk/model_terminal_audit_log.go index 3885d81c09..cffa3409cf 100644 --- a/intersight_gosdk/model_terminal_audit_log.go +++ b/intersight_gosdk/model_terminal_audit_log.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_terminal_audit_log_list.go b/intersight_gosdk/model_terminal_audit_log_list.go index 0189bde227..ddcaa76138 100644 --- a/intersight_gosdk/model_terminal_audit_log_list.go +++ b/intersight_gosdk/model_terminal_audit_log_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_terminal_audit_log_response.go b/intersight_gosdk/model_terminal_audit_log_response.go index 1a20a75740..0f7edea881 100644 --- a/intersight_gosdk/model_terminal_audit_log_response.go +++ b/intersight_gosdk/model_terminal_audit_log_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_terraform_cloud_resource.go b/intersight_gosdk/model_terraform_cloud_resource.go index f954b54728..92868d117d 100644 --- a/intersight_gosdk/model_terraform_cloud_resource.go +++ b/intersight_gosdk/model_terraform_cloud_resource.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_terraform_executor.go b/intersight_gosdk/model_terraform_executor.go index e83ac396db..0d50cd1155 100644 --- a/intersight_gosdk/model_terraform_executor.go +++ b/intersight_gosdk/model_terraform_executor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_terraform_executor_list.go b/intersight_gosdk/model_terraform_executor_list.go index 4b254d86db..a8266dbdd5 100644 --- a/intersight_gosdk/model_terraform_executor_list.go +++ b/intersight_gosdk/model_terraform_executor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_terraform_executor_response.go b/intersight_gosdk/model_terraform_executor_response.go index 79d4964a90..1802984a91 100644 --- a/intersight_gosdk/model_terraform_executor_response.go +++ b/intersight_gosdk/model_terraform_executor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_terraform_runstate.go b/intersight_gosdk/model_terraform_runstate.go index df00948b45..9fa09e7c5b 100644 --- a/intersight_gosdk/model_terraform_runstate.go +++ b/intersight_gosdk/model_terraform_runstate.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_thermal_policy.go b/intersight_gosdk/model_thermal_policy.go index 1cc4dc79f2..26fa54398e 100644 --- a/intersight_gosdk/model_thermal_policy.go +++ b/intersight_gosdk/model_thermal_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_thermal_policy_inventory.go b/intersight_gosdk/model_thermal_policy_inventory.go index fa75362ccc..6a7ca769d0 100644 --- a/intersight_gosdk/model_thermal_policy_inventory.go +++ b/intersight_gosdk/model_thermal_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_thermal_policy_inventory_list.go b/intersight_gosdk/model_thermal_policy_inventory_list.go index be955b9c81..212de92bc6 100644 --- a/intersight_gosdk/model_thermal_policy_inventory_list.go +++ b/intersight_gosdk/model_thermal_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_thermal_policy_inventory_response.go b/intersight_gosdk/model_thermal_policy_inventory_response.go index 0fd7997f6c..53c0d79db4 100644 --- a/intersight_gosdk/model_thermal_policy_inventory_response.go +++ b/intersight_gosdk/model_thermal_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_thermal_policy_list.go b/intersight_gosdk/model_thermal_policy_list.go index 79df1c54f4..88ad159f58 100644 --- a/intersight_gosdk/model_thermal_policy_list.go +++ b/intersight_gosdk/model_thermal_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_thermal_policy_response.go b/intersight_gosdk/model_thermal_policy_response.go index 435d0bc030..e82ed04bf2 100644 --- a/intersight_gosdk/model_thermal_policy_response.go +++ b/intersight_gosdk/model_thermal_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_top_system.go b/intersight_gosdk/model_top_system.go index 405a54744b..1ed8bc0011 100644 --- a/intersight_gosdk/model_top_system.go +++ b/intersight_gosdk/model_top_system.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_top_system_list.go b/intersight_gosdk/model_top_system_list.go index 4639ee840b..d2337ed082 100644 --- a/intersight_gosdk/model_top_system_list.go +++ b/intersight_gosdk/model_top_system_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_top_system_relationship.go b/intersight_gosdk/model_top_system_relationship.go index 08a1c122db..0d1988cc23 100644 --- a/intersight_gosdk/model_top_system_relationship.go +++ b/intersight_gosdk/model_top_system_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_top_system_response.go b/intersight_gosdk/model_top_system_response.go index 6fe814689b..e446076b0d 100644 --- a/intersight_gosdk/model_top_system_response.go +++ b/intersight_gosdk/model_top_system_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tunneling_tunnel.go b/intersight_gosdk/model_tunneling_tunnel.go index b5d76628c3..f370c53fb2 100644 --- a/intersight_gosdk/model_tunneling_tunnel.go +++ b/intersight_gosdk/model_tunneling_tunnel.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ucsd_backup_info.go b/intersight_gosdk/model_ucsd_backup_info.go index 1abda56c70..729a174e11 100644 --- a/intersight_gosdk/model_ucsd_backup_info.go +++ b/intersight_gosdk/model_ucsd_backup_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ucsd_backup_info_list.go b/intersight_gosdk/model_ucsd_backup_info_list.go index 024e5f2fbf..7a70ea41ed 100644 --- a/intersight_gosdk/model_ucsd_backup_info_list.go +++ b/intersight_gosdk/model_ucsd_backup_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ucsd_backup_info_response.go b/intersight_gosdk/model_ucsd_backup_info_response.go index 7e929a1cf3..e1ea54a377 100644 --- a/intersight_gosdk/model_ucsd_backup_info_response.go +++ b/intersight_gosdk/model_ucsd_backup_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ucsd_connector_pack.go b/intersight_gosdk/model_ucsd_connector_pack.go index 9e4c343cd7..18a69c09e1 100644 --- a/intersight_gosdk/model_ucsd_connector_pack.go +++ b/intersight_gosdk/model_ucsd_connector_pack.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ucsd_ucsd_restore_parameters.go b/intersight_gosdk/model_ucsd_ucsd_restore_parameters.go index e1e62d8595..3cab5a7c5e 100644 --- a/intersight_gosdk/model_ucsd_ucsd_restore_parameters.go +++ b/intersight_gosdk/model_ucsd_ucsd_restore_parameters.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ucsdconnector_rest_client_message.go b/intersight_gosdk/model_ucsdconnector_rest_client_message.go index cd0b824ec7..1d7ac1a161 100644 --- a/intersight_gosdk/model_ucsdconnector_rest_client_message.go +++ b/intersight_gosdk/model_ucsdconnector_rest_client_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_block.go b/intersight_gosdk/model_uuidpool_block.go index c98a6903f2..054b537509 100644 --- a/intersight_gosdk/model_uuidpool_block.go +++ b/intersight_gosdk/model_uuidpool_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_block_list.go b/intersight_gosdk/model_uuidpool_block_list.go index 12b535f7e5..d8cf28cf1c 100644 --- a/intersight_gosdk/model_uuidpool_block_list.go +++ b/intersight_gosdk/model_uuidpool_block_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_block_relationship.go b/intersight_gosdk/model_uuidpool_block_relationship.go index 7b741e608a..4fe781ffaf 100644 --- a/intersight_gosdk/model_uuidpool_block_relationship.go +++ b/intersight_gosdk/model_uuidpool_block_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_block_response.go b/intersight_gosdk/model_uuidpool_block_response.go index be9cfaea8d..372512ab9f 100644 --- a/intersight_gosdk/model_uuidpool_block_response.go +++ b/intersight_gosdk/model_uuidpool_block_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_pool.go b/intersight_gosdk/model_uuidpool_pool.go index bd3e9a04cb..530d10782a 100644 --- a/intersight_gosdk/model_uuidpool_pool.go +++ b/intersight_gosdk/model_uuidpool_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type UuidpoolPool struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The UUID prefix must be in hexadecimal format xxxxxxxx-xxxx-xxxx. - Prefix *string `json:"Prefix,omitempty"` + Prefix *string `json:"Prefix,omitempty" validate:"regexp=^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}$"` UuidSuffixBlocks []UuidpoolUuidBlock `json:"UuidSuffixBlocks,omitempty"` // An array of relationships to uuidpoolBlock resources. BlockHeads []UuidpoolBlockRelationship `json:"BlockHeads,omitempty"` @@ -395,7 +395,7 @@ func (o *UuidpoolPool) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The UUID prefix must be in hexadecimal format xxxxxxxx-xxxx-xxxx. - Prefix *string `json:"Prefix,omitempty"` + Prefix *string `json:"Prefix,omitempty" validate:"regexp=^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}$"` UuidSuffixBlocks []UuidpoolUuidBlock `json:"UuidSuffixBlocks,omitempty"` // An array of relationships to uuidpoolBlock resources. BlockHeads []UuidpoolBlockRelationship `json:"BlockHeads,omitempty"` diff --git a/intersight_gosdk/model_uuidpool_pool_list.go b/intersight_gosdk/model_uuidpool_pool_list.go index e98bf9e548..a1ea4955a7 100644 --- a/intersight_gosdk/model_uuidpool_pool_list.go +++ b/intersight_gosdk/model_uuidpool_pool_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_pool_member.go b/intersight_gosdk/model_uuidpool_pool_member.go index fbf0359f2d..5821ab8a5f 100644 --- a/intersight_gosdk/model_uuidpool_pool_member.go +++ b/intersight_gosdk/model_uuidpool_pool_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_pool_member_list.go b/intersight_gosdk/model_uuidpool_pool_member_list.go index 3bde4e6c97..ec64fbffee 100644 --- a/intersight_gosdk/model_uuidpool_pool_member_list.go +++ b/intersight_gosdk/model_uuidpool_pool_member_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_pool_member_relationship.go b/intersight_gosdk/model_uuidpool_pool_member_relationship.go index f0f9eca41b..68215647c1 100644 --- a/intersight_gosdk/model_uuidpool_pool_member_relationship.go +++ b/intersight_gosdk/model_uuidpool_pool_member_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_pool_member_response.go b/intersight_gosdk/model_uuidpool_pool_member_response.go index 198edccd7a..10e8a25f2f 100644 --- a/intersight_gosdk/model_uuidpool_pool_member_response.go +++ b/intersight_gosdk/model_uuidpool_pool_member_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_pool_relationship.go b/intersight_gosdk/model_uuidpool_pool_relationship.go index 28b64a42a1..8022cec363 100644 --- a/intersight_gosdk/model_uuidpool_pool_relationship.go +++ b/intersight_gosdk/model_uuidpool_pool_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_pool_response.go b/intersight_gosdk/model_uuidpool_pool_response.go index 30e259946c..c26a9c9af5 100644 --- a/intersight_gosdk/model_uuidpool_pool_response.go +++ b/intersight_gosdk/model_uuidpool_pool_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_reservation.go b/intersight_gosdk/model_uuidpool_reservation.go index b5cce98064..2587beac05 100644 --- a/intersight_gosdk/model_uuidpool_reservation.go +++ b/intersight_gosdk/model_uuidpool_reservation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type UuidpoolReservation struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // UUID identity to be reserved. - Identity *string `json:"Identity,omitempty"` + Identity *string `json:"Identity,omitempty" validate:"regexp=^$|^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"` Block NullableUuidpoolBlockRelationship `json:"Block,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` Pool NullableUuidpoolPoolRelationship `json:"Pool,omitempty"` @@ -470,7 +470,7 @@ func (o *UuidpoolReservation) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // UUID identity to be reserved. - Identity *string `json:"Identity,omitempty"` + Identity *string `json:"Identity,omitempty" validate:"regexp=^$|^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"` Block NullableUuidpoolBlockRelationship `json:"Block,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` Pool NullableUuidpoolPoolRelationship `json:"Pool,omitempty"` diff --git a/intersight_gosdk/model_uuidpool_reservation_list.go b/intersight_gosdk/model_uuidpool_reservation_list.go index 7480c07c03..badd7f235a 100644 --- a/intersight_gosdk/model_uuidpool_reservation_list.go +++ b/intersight_gosdk/model_uuidpool_reservation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_reservation_reference.go b/intersight_gosdk/model_uuidpool_reservation_reference.go index f671bcae01..332bdcb232 100644 --- a/intersight_gosdk/model_uuidpool_reservation_reference.go +++ b/intersight_gosdk/model_uuidpool_reservation_reference.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_reservation_relationship.go b/intersight_gosdk/model_uuidpool_reservation_relationship.go index ab4b79c3f0..49c4fe2440 100644 --- a/intersight_gosdk/model_uuidpool_reservation_relationship.go +++ b/intersight_gosdk/model_uuidpool_reservation_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_reservation_response.go b/intersight_gosdk/model_uuidpool_reservation_response.go index 73e2885716..328cdcd121 100644 --- a/intersight_gosdk/model_uuidpool_reservation_response.go +++ b/intersight_gosdk/model_uuidpool_reservation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_universe.go b/intersight_gosdk/model_uuidpool_universe.go index 2cfea2a23b..bb1cc87a13 100644 --- a/intersight_gosdk/model_uuidpool_universe.go +++ b/intersight_gosdk/model_uuidpool_universe.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_universe_list.go b/intersight_gosdk/model_uuidpool_universe_list.go index 2eca4c405d..2a15c227e5 100644 --- a/intersight_gosdk/model_uuidpool_universe_list.go +++ b/intersight_gosdk/model_uuidpool_universe_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_universe_relationship.go b/intersight_gosdk/model_uuidpool_universe_relationship.go index b161054cb5..359c020f00 100644 --- a/intersight_gosdk/model_uuidpool_universe_relationship.go +++ b/intersight_gosdk/model_uuidpool_universe_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_universe_response.go b/intersight_gosdk/model_uuidpool_universe_response.go index 258796aaea..41872097c7 100644 --- a/intersight_gosdk/model_uuidpool_universe_response.go +++ b/intersight_gosdk/model_uuidpool_universe_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_uuid_block.go b/intersight_gosdk/model_uuidpool_uuid_block.go index ddc9f4f042..4634dd6bd3 100644 --- a/intersight_gosdk/model_uuidpool_uuid_block.go +++ b/intersight_gosdk/model_uuidpool_uuid_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type UuidpoolUuidBlock struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Starting UUID suffix of the block must be in hexadecimal format xxxx-xxxxxxxxxxxx. - From *string `json:"From,omitempty"` + From *string `json:"From,omitempty" validate:"regexp=^$|^[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"` // Starting UUID suffix of the block must be in hexadecimal format xxxx-xxxxxxxxxxxx. - To *string `json:"To,omitempty"` + To *string `json:"To,omitempty" validate:"regexp=^$|^[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"` AdditionalProperties map[string]interface{} } @@ -270,9 +270,9 @@ func (o *UuidpoolUuidBlock) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Starting UUID suffix of the block must be in hexadecimal format xxxx-xxxxxxxxxxxx. - From *string `json:"From,omitempty"` + From *string `json:"From,omitempty" validate:"regexp=^$|^[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"` // Starting UUID suffix of the block must be in hexadecimal format xxxx-xxxxxxxxxxxx. - To *string `json:"To,omitempty"` + To *string `json:"To,omitempty" validate:"regexp=^$|^[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"` } varUuidpoolUuidBlockWithoutEmbeddedStruct := UuidpoolUuidBlockWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_uuidpool_uuid_lease.go b/intersight_gosdk/model_uuidpool_uuid_lease.go index 5a2d8449ea..461b46dafd 100644 --- a/intersight_gosdk/model_uuidpool_uuid_lease.go +++ b/intersight_gosdk/model_uuidpool_uuid_lease.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,7 +30,7 @@ type UuidpoolUuidLease struct { ObjectType string `json:"ObjectType"` Reservation *UuidpoolReservationReference `json:"Reservation,omitempty"` // UUID Prefix+Suffix numbers. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"` AssignedToEntity NullableMoBaseMoRelationship `json:"AssignedToEntity,omitempty"` Pool NullableUuidpoolPoolRelationship `json:"Pool,omitempty"` PoolMember NullableUuidpoolPoolMemberRelationship `json:"PoolMember,omitempty"` @@ -462,7 +462,7 @@ func (o *UuidpoolUuidLease) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` Reservation *UuidpoolReservationReference `json:"Reservation,omitempty"` // UUID Prefix+Suffix numbers. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"` AssignedToEntity NullableMoBaseMoRelationship `json:"AssignedToEntity,omitempty"` Pool NullableUuidpoolPoolRelationship `json:"Pool,omitempty"` PoolMember NullableUuidpoolPoolMemberRelationship `json:"PoolMember,omitempty"` diff --git a/intersight_gosdk/model_uuidpool_uuid_lease_list.go b/intersight_gosdk/model_uuidpool_uuid_lease_list.go index 4c6b39bfe5..731c460688 100644 --- a/intersight_gosdk/model_uuidpool_uuid_lease_list.go +++ b/intersight_gosdk/model_uuidpool_uuid_lease_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_uuid_lease_relationship.go b/intersight_gosdk/model_uuidpool_uuid_lease_relationship.go index 4d7f60665c..a2b07e2041 100644 --- a/intersight_gosdk/model_uuidpool_uuid_lease_relationship.go +++ b/intersight_gosdk/model_uuidpool_uuid_lease_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_uuid_lease_response.go b/intersight_gosdk/model_uuidpool_uuid_lease_response.go index 6b1bd9712e..c8a41a3cf6 100644 --- a/intersight_gosdk/model_uuidpool_uuid_lease_response.go +++ b/intersight_gosdk/model_uuidpool_uuid_lease_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_view_health_status.go b/intersight_gosdk/model_view_health_status.go index 4442792e79..85ddfd7788 100644 --- a/intersight_gosdk/model_view_health_status.go +++ b/intersight_gosdk/model_view_health_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_view_health_status_list.go b/intersight_gosdk/model_view_health_status_list.go index 896912ff2e..431e16172c 100644 --- a/intersight_gosdk/model_view_health_status_list.go +++ b/intersight_gosdk/model_view_health_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_view_health_status_response.go b/intersight_gosdk/model_view_health_status_response.go index 9d245ddb7a..137f42df7c 100644 --- a/intersight_gosdk/model_view_health_status_response.go +++ b/intersight_gosdk/model_view_health_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_view_server.go b/intersight_gosdk/model_view_server.go index 01eff900de..9d51b3517b 100644 --- a/intersight_gosdk/model_view_server.go +++ b/intersight_gosdk/model_view_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_view_server_list.go b/intersight_gosdk/model_view_server_list.go index a57a545468..30c3103f36 100644 --- a/intersight_gosdk/model_view_server_list.go +++ b/intersight_gosdk/model_view_server_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_view_server_response.go b/intersight_gosdk/model_view_server_response.go index 4ba03cd8ca..8d724f0cfa 100644 --- a/intersight_gosdk/model_view_server_response.go +++ b/intersight_gosdk/model_view_server_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_action_info.go b/intersight_gosdk/model_virtualization_action_info.go index 333e555e4b..e6fc82211d 100644 --- a/intersight_gosdk/model_virtualization_action_info.go +++ b/intersight_gosdk/model_virtualization_action_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_aws_vm_compute_configuration.go b/intersight_gosdk/model_virtualization_aws_vm_compute_configuration.go index ebd034d1a1..3e08d64de5 100644 --- a/intersight_gosdk/model_virtualization_aws_vm_compute_configuration.go +++ b/intersight_gosdk/model_virtualization_aws_vm_compute_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_aws_vm_configuration.go b/intersight_gosdk/model_virtualization_aws_vm_configuration.go index 783799d1b7..dd5e87c2ce 100644 --- a/intersight_gosdk/model_virtualization_aws_vm_configuration.go +++ b/intersight_gosdk/model_virtualization_aws_vm_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_aws_vm_network_configuration.go b/intersight_gosdk/model_virtualization_aws_vm_network_configuration.go index f18e96f5bb..f3a656c42d 100644 --- a/intersight_gosdk/model_virtualization_aws_vm_network_configuration.go +++ b/intersight_gosdk/model_virtualization_aws_vm_network_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_aws_vm_storage_configuration.go b/intersight_gosdk/model_virtualization_aws_vm_storage_configuration.go index 83f2e1ace5..d531f3622a 100644 --- a/intersight_gosdk/model_virtualization_aws_vm_storage_configuration.go +++ b/intersight_gosdk/model_virtualization_aws_vm_storage_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_cluster.go b/intersight_gosdk/model_virtualization_base_cluster.go index 97a96f1806..f9c3c4f085 100644 --- a/intersight_gosdk/model_virtualization_base_cluster.go +++ b/intersight_gosdk/model_virtualization_base_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_cluster_relationship.go b/intersight_gosdk/model_virtualization_base_cluster_relationship.go index 6ba319549e..93a36c6394 100644 --- a/intersight_gosdk/model_virtualization_base_cluster_relationship.go +++ b/intersight_gosdk/model_virtualization_base_cluster_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_custom_spec.go b/intersight_gosdk/model_virtualization_base_custom_spec.go index f19fbaa5aa..33ab610a52 100644 --- a/intersight_gosdk/model_virtualization_base_custom_spec.go +++ b/intersight_gosdk/model_virtualization_base_custom_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_datacenter.go b/intersight_gosdk/model_virtualization_base_datacenter.go index 3be209f4ea..847bd20b06 100644 --- a/intersight_gosdk/model_virtualization_base_datacenter.go +++ b/intersight_gosdk/model_virtualization_base_datacenter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_datastore.go b/intersight_gosdk/model_virtualization_base_datastore.go index 998a130f7f..ca61323540 100644 --- a/intersight_gosdk/model_virtualization_base_datastore.go +++ b/intersight_gosdk/model_virtualization_base_datastore.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_datastore_cluster.go b/intersight_gosdk/model_virtualization_base_datastore_cluster.go index 16e040b6ea..02825ef48d 100644 --- a/intersight_gosdk/model_virtualization_base_datastore_cluster.go +++ b/intersight_gosdk/model_virtualization_base_datastore_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_distributed_network.go b/intersight_gosdk/model_virtualization_base_distributed_network.go index f312642cc1..4300fbacc6 100644 --- a/intersight_gosdk/model_virtualization_base_distributed_network.go +++ b/intersight_gosdk/model_virtualization_base_distributed_network.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_distributed_switch.go b/intersight_gosdk/model_virtualization_base_distributed_switch.go index ba69238b9a..9f77d4499d 100644 --- a/intersight_gosdk/model_virtualization_base_distributed_switch.go +++ b/intersight_gosdk/model_virtualization_base_distributed_switch.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_folder.go b/intersight_gosdk/model_virtualization_base_folder.go index 9e055ad546..3ecda098ea 100644 --- a/intersight_gosdk/model_virtualization_base_folder.go +++ b/intersight_gosdk/model_virtualization_base_folder.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_host.go b/intersight_gosdk/model_virtualization_base_host.go index 8d0cf1107f..62ca758e11 100644 --- a/intersight_gosdk/model_virtualization_base_host.go +++ b/intersight_gosdk/model_virtualization_base_host.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -50,7 +50,7 @@ type VirtualizationBaseHost struct { // The uptime of the host, stored as Duration (from w3c). UpTime *string `json:"UpTime,omitempty"` // Universally unique identity of this host (example b3d4483b-5560-9342-8309-b486c9236610). Internally generated. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Commercial vendor details of this hardware. Vendor *string `json:"Vendor,omitempty"` AdditionalProperties map[string]interface{} @@ -807,7 +807,7 @@ func (o *VirtualizationBaseHost) UnmarshalJSON(data []byte) (err error) { // The uptime of the host, stored as Duration (from w3c). UpTime *string `json:"UpTime,omitempty"` // Universally unique identity of this host (example b3d4483b-5560-9342-8309-b486c9236610). Internally generated. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Commercial vendor details of this hardware. Vendor *string `json:"Vendor,omitempty"` } diff --git a/intersight_gosdk/model_virtualization_base_host_configuration.go b/intersight_gosdk/model_virtualization_base_host_configuration.go index f39327ca6a..7b589820e9 100644 --- a/intersight_gosdk/model_virtualization_base_host_configuration.go +++ b/intersight_gosdk/model_virtualization_base_host_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_host_gpu.go b/intersight_gosdk/model_virtualization_base_host_gpu.go index 448225be88..a72835911a 100644 --- a/intersight_gosdk/model_virtualization_base_host_gpu.go +++ b/intersight_gosdk/model_virtualization_base_host_gpu.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_host_pci_device.go b/intersight_gosdk/model_virtualization_base_host_pci_device.go index 61ff39bf78..c39915e228 100644 --- a/intersight_gosdk/model_virtualization_base_host_pci_device.go +++ b/intersight_gosdk/model_virtualization_base_host_pci_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_host_pci_device_relationship.go b/intersight_gosdk/model_virtualization_base_host_pci_device_relationship.go index 44638067f8..718deb870a 100644 --- a/intersight_gosdk/model_virtualization_base_host_pci_device_relationship.go +++ b/intersight_gosdk/model_virtualization_base_host_pci_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_host_relationship.go b/intersight_gosdk/model_virtualization_base_host_relationship.go index 0d9d4112dd..b5855e1884 100644 --- a/intersight_gosdk/model_virtualization_base_host_relationship.go +++ b/intersight_gosdk/model_virtualization_base_host_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_hypervisor_manager.go b/intersight_gosdk/model_virtualization_base_hypervisor_manager.go index 9fab4616c4..62f585b499 100644 --- a/intersight_gosdk/model_virtualization_base_hypervisor_manager.go +++ b/intersight_gosdk/model_virtualization_base_hypervisor_manager.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type VirtualizationBaseHypervisorManager struct { // Identity of the hypervisor (not manipulated by user). It could be a UUID too. For example, c917093f-5443-4748-bc09-eec72ded7608. Identity *string `json:"Identity,omitempty"` // The user provided name for the hypervisor manager. For example, vCenterIreland. Usually, this name is subject to manipulation by the user. It is not the identity of the hypervisor. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_-]{1,32}$"` // Release version of the Hypervisor Manger (VMware vCenter Server 6.0.0 build-4541947). Version *string `json:"Version,omitempty"` RegisteredDevice NullableAssetDeviceRegistrationRelationship `json:"RegisteredDevice,omitempty"` @@ -395,7 +395,7 @@ func (o *VirtualizationBaseHypervisorManager) UnmarshalJSON(data []byte) (err er // Identity of the hypervisor (not manipulated by user). It could be a UUID too. For example, c917093f-5443-4748-bc09-eec72ded7608. Identity *string `json:"Identity,omitempty"` // The user provided name for the hypervisor manager. For example, vCenterIreland. Usually, this name is subject to manipulation by the user. It is not the identity of the hypervisor. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_-]{1,32}$"` // Release version of the Hypervisor Manger (VMware vCenter Server 6.0.0 build-4541947). Version *string `json:"Version,omitempty"` RegisteredDevice NullableAssetDeviceRegistrationRelationship `json:"RegisteredDevice,omitempty"` diff --git a/intersight_gosdk/model_virtualization_base_kernel_network.go b/intersight_gosdk/model_virtualization_base_kernel_network.go index b64af15d93..cf255f1ff4 100644 --- a/intersight_gosdk/model_virtualization_base_kernel_network.go +++ b/intersight_gosdk/model_virtualization_base_kernel_network.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_network.go b/intersight_gosdk/model_virtualization_base_network.go index 6198780906..6280ad1174 100644 --- a/intersight_gosdk/model_virtualization_base_network.go +++ b/intersight_gosdk/model_virtualization_base_network.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_network_relationship.go b/intersight_gosdk/model_virtualization_base_network_relationship.go index 401ec6d079..e8433fb0b8 100644 --- a/intersight_gosdk/model_virtualization_base_network_relationship.go +++ b/intersight_gosdk/model_virtualization_base_network_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_physical_network_interface.go b/intersight_gosdk/model_virtualization_base_physical_network_interface.go index 726ed845fc..36c7b7930f 100644 --- a/intersight_gosdk/model_virtualization_base_physical_network_interface.go +++ b/intersight_gosdk/model_virtualization_base_physical_network_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_placement.go b/intersight_gosdk/model_virtualization_base_placement.go index c417873827..2436635b5a 100644 --- a/intersight_gosdk/model_virtualization_base_placement.go +++ b/intersight_gosdk/model_virtualization_base_placement.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type VirtualizationBasePlacement struct { // Name of the virtual machine placement. It is the name of the VPC (Virtual Private Cloud) in case of AWS virtual machine, and datacenter name in case of VMware virtual machine. Name *string `json:"Name,omitempty"` // The uuid of this placement. The uuid is internally generated and not user specified. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` AdditionalProperties map[string]interface{} } @@ -249,7 +249,7 @@ func (o *VirtualizationBasePlacement) UnmarshalJSON(data []byte) (err error) { // Name of the virtual machine placement. It is the name of the VPC (Virtual Private Cloud) in case of AWS virtual machine, and datacenter name in case of VMware virtual machine. Name *string `json:"Name,omitempty"` // The uuid of this placement. The uuid is internally generated and not user specified. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` } varVirtualizationBasePlacementWithoutEmbeddedStruct := VirtualizationBasePlacementWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_virtualization_base_source_device.go b/intersight_gosdk/model_virtualization_base_source_device.go index c5b4f8b2f3..0cace599cd 100644 --- a/intersight_gosdk/model_virtualization_base_source_device.go +++ b/intersight_gosdk/model_virtualization_base_source_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_switch.go b/intersight_gosdk/model_virtualization_base_switch.go index 9f0eded6b4..be3dd982cb 100644 --- a/intersight_gosdk/model_virtualization_base_switch.go +++ b/intersight_gosdk/model_virtualization_base_switch.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_virtual_disk.go b/intersight_gosdk/model_virtualization_base_virtual_disk.go index 000343679e..c9df3736e8 100644 --- a/intersight_gosdk/model_virtualization_base_virtual_disk.go +++ b/intersight_gosdk/model_virtualization_base_virtual_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_virtual_machine.go b/intersight_gosdk/model_virtualization_base_virtual_machine.go index 565d0d40bd..d0048b259c 100644 --- a/intersight_gosdk/model_virtualization_base_virtual_machine.go +++ b/intersight_gosdk/model_virtualization_base_virtual_machine.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -53,7 +53,7 @@ type VirtualizationBaseVirtualMachine struct { // The current state of the virtual machine. For example, starting, stopped, etc. * `None` - A place holder for the default value. * `Creating` - Virtual machine creation is in progress. * `Pending` - The virtual machine is preparing to enter the started state. * `Starting` - The virtual machine is starting. * `Started` - The virtual machine is running and ready for use. * `Stopping` - The virtual machine is preparing to be stopped. * `Stopped` - The virtual machine is shut down and cannot be used. The virtual machine can be started again at any time. * `Pausing` - The virtual machine is preparing to be paused. * `Paused` - The virtual machine enters into paused state due to low free disk space. * `Suspending` - The virtual machine is preparing to be suspended. * `Suspended` - Virtual machine is in sleep mode.When a virtual machine is suspended, the current state of theoperating system, and applications is saved, and the virtual machine put into a suspended mode. * `Deleting` - The virtual machine is preparing to be terminated. * `Terminated` - The virtual machine has been permanently deleted and cannot be started. * `Rebooting` - The virtual machine reboot is in progress. * `Error` - The deployment of virtual machine is failed. * `Warning` - The virtual machine is in warning state. State *string `json:"State,omitempty"` // The uuid of this virtual machine. The uuid is internally generated and not user specified. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Time when this virtualmachine is created. VmCreationTime *time.Time `json:"VmCreationTime,omitempty"` AdditionalProperties map[string]interface{} @@ -845,7 +845,7 @@ func (o *VirtualizationBaseVirtualMachine) UnmarshalJSON(data []byte) (err error // The current state of the virtual machine. For example, starting, stopped, etc. * `None` - A place holder for the default value. * `Creating` - Virtual machine creation is in progress. * `Pending` - The virtual machine is preparing to enter the started state. * `Starting` - The virtual machine is starting. * `Started` - The virtual machine is running and ready for use. * `Stopping` - The virtual machine is preparing to be stopped. * `Stopped` - The virtual machine is shut down and cannot be used. The virtual machine can be started again at any time. * `Pausing` - The virtual machine is preparing to be paused. * `Paused` - The virtual machine enters into paused state due to low free disk space. * `Suspending` - The virtual machine is preparing to be suspended. * `Suspended` - Virtual machine is in sleep mode.When a virtual machine is suspended, the current state of theoperating system, and applications is saved, and the virtual machine put into a suspended mode. * `Deleting` - The virtual machine is preparing to be terminated. * `Terminated` - The virtual machine has been permanently deleted and cannot be started. * `Rebooting` - The virtual machine reboot is in progress. * `Error` - The deployment of virtual machine is failed. * `Warning` - The virtual machine is in warning state. State *string `json:"State,omitempty"` // The uuid of this virtual machine. The uuid is internally generated and not user specified. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Time when this virtualmachine is created. VmCreationTime *time.Time `json:"VmCreationTime,omitempty"` } diff --git a/intersight_gosdk/model_virtualization_base_virtual_machine_gpu.go b/intersight_gosdk/model_virtualization_base_virtual_machine_gpu.go index 42a17dd68c..235018da5b 100644 --- a/intersight_gosdk/model_virtualization_base_virtual_machine_gpu.go +++ b/intersight_gosdk/model_virtualization_base_virtual_machine_gpu.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_virtual_machine_pci_device.go b/intersight_gosdk/model_virtualization_base_virtual_machine_pci_device.go index 4f6f1c9342..d75b3cb295 100644 --- a/intersight_gosdk/model_virtualization_base_virtual_machine_pci_device.go +++ b/intersight_gosdk/model_virtualization_base_virtual_machine_pci_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_virtual_machine_relationship.go b/intersight_gosdk/model_virtualization_base_virtual_machine_relationship.go index c014387c38..ef0e836a75 100644 --- a/intersight_gosdk/model_virtualization_base_virtual_machine_relationship.go +++ b/intersight_gosdk/model_virtualization_base_virtual_machine_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_virtual_machine_snapshot.go b/intersight_gosdk/model_virtualization_base_virtual_machine_snapshot.go index 1b6e24077d..66f3cbf79d 100644 --- a/intersight_gosdk/model_virtualization_base_virtual_machine_snapshot.go +++ b/intersight_gosdk/model_virtualization_base_virtual_machine_snapshot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_virtual_network.go b/intersight_gosdk/model_virtualization_base_virtual_network.go index 9a96757804..b222afcbab 100644 --- a/intersight_gosdk/model_virtualization_base_virtual_network.go +++ b/intersight_gosdk/model_virtualization_base_virtual_network.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_virtual_network_interface.go b/intersight_gosdk/model_virtualization_base_virtual_network_interface.go index 801d835dc7..a5c89066a9 100644 --- a/intersight_gosdk/model_virtualization_base_virtual_network_interface.go +++ b/intersight_gosdk/model_virtualization_base_virtual_network_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_virtual_network_interface_card.go b/intersight_gosdk/model_virtualization_base_virtual_network_interface_card.go index aba2544413..1f3158dceb 100644 --- a/intersight_gosdk/model_virtualization_base_virtual_network_interface_card.go +++ b/intersight_gosdk/model_virtualization_base_virtual_network_interface_card.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type VirtualizationBaseVirtualNetworkInterfaceCard struct { // Type or model of the virtual network interface card. * `Unknown` - The type of the network adaptor type is unknown. * `E1000` - Emulated version of the Intel 82545EM Gigabit Ethernet NIC. * `SRIOV` - Representation of a virtual function (VF) on a physical NIC with SR-IOV support. * `VMXNET2` - VMXNET 2 (Enhanced) is available only for some guest operating systems on ESX/ESXi 3.5 and later. * `VMXNET3` - VMXNET 3 offers all the features available in VMXNET 2 and adds several new features. * `E1000E` - E1000E – emulates a newer real network adapter, the 1 Gbit Intel 82574, and is available for Windows 2012 and later. The E1000E needs virtual machine hardware version 8 or later. * `NE2K_PCI` - The Ne2000 network card uses two ring buffers for packet handling. These are circular buffers made of 256-byte pages that the chip's DMA logic will use to store received packets or to get received packets. * `PCnet` - The PCnet-PCI II is a PCI network adapter. It has built-in support for CRC checks and can automatically pad short packets to the minimum Ethernet length. * `RTL8139` - The RTL8139 is a fast Ethernet card that operates at 10/100 Mbps. It is compliant with PCI version 2.0/2.1 and it is known for reliability and superior performance. * `VirtIO` - VirtIO is a standardized interface which allows virtual machines access to simplified \"virtual\" devices, such as block devices, network adapters and consoles. Accessing devices through VirtIO on a guest VM improves performance over more traditional \"emulated\" devices, as VirtIO devices require only the bare minimum setup and configuration needed to send and receive data, while the host machine handles the majority of the setup and maintenance of the actual physical hardware. * `` - Default network adaptor type supported by the hypervisor. AdapterType *string `json:"AdapterType,omitempty"` // MAC address assigned to the virtual network interface card. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"` // Name of the virtual network interface card. Name *string `json:"Name,omitempty"` AdditionalProperties map[string]interface{} @@ -313,7 +313,7 @@ func (o *VirtualizationBaseVirtualNetworkInterfaceCard) UnmarshalJSON(data []byt // Type or model of the virtual network interface card. * `Unknown` - The type of the network adaptor type is unknown. * `E1000` - Emulated version of the Intel 82545EM Gigabit Ethernet NIC. * `SRIOV` - Representation of a virtual function (VF) on a physical NIC with SR-IOV support. * `VMXNET2` - VMXNET 2 (Enhanced) is available only for some guest operating systems on ESX/ESXi 3.5 and later. * `VMXNET3` - VMXNET 3 offers all the features available in VMXNET 2 and adds several new features. * `E1000E` - E1000E – emulates a newer real network adapter, the 1 Gbit Intel 82574, and is available for Windows 2012 and later. The E1000E needs virtual machine hardware version 8 or later. * `NE2K_PCI` - The Ne2000 network card uses two ring buffers for packet handling. These are circular buffers made of 256-byte pages that the chip's DMA logic will use to store received packets or to get received packets. * `PCnet` - The PCnet-PCI II is a PCI network adapter. It has built-in support for CRC checks and can automatically pad short packets to the minimum Ethernet length. * `RTL8139` - The RTL8139 is a fast Ethernet card that operates at 10/100 Mbps. It is compliant with PCI version 2.0/2.1 and it is known for reliability and superior performance. * `VirtIO` - VirtIO is a standardized interface which allows virtual machines access to simplified \"virtual\" devices, such as block devices, network adapters and consoles. Accessing devices through VirtIO on a guest VM improves performance over more traditional \"emulated\" devices, as VirtIO devices require only the bare minimum setup and configuration needed to send and receive data, while the host machine handles the majority of the setup and maintenance of the actual physical hardware. * `` - Default network adaptor type supported by the hypervisor. AdapterType *string `json:"AdapterType,omitempty"` // MAC address assigned to the virtual network interface card. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"` // Name of the virtual network interface card. Name *string `json:"Name,omitempty"` } diff --git a/intersight_gosdk/model_virtualization_base_virtual_switch.go b/intersight_gosdk/model_virtualization_base_virtual_switch.go index 6ebb9e1a7e..4e0f98b698 100644 --- a/intersight_gosdk/model_virtualization_base_virtual_switch.go +++ b/intersight_gosdk/model_virtualization_base_virtual_switch.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_vm_configuration.go b/intersight_gosdk/model_virtualization_base_vm_configuration.go index 9fa2817ce4..b28365c449 100644 --- a/intersight_gosdk/model_virtualization_base_vm_configuration.go +++ b/intersight_gosdk/model_virtualization_base_vm_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_cloud_init_config.go b/intersight_gosdk/model_virtualization_cloud_init_config.go index 0950beb283..195c0f653e 100644 --- a/intersight_gosdk/model_virtualization_cloud_init_config.go +++ b/intersight_gosdk/model_virtualization_cloud_init_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_cloud_vm_compute_configuration.go b/intersight_gosdk/model_virtualization_cloud_vm_compute_configuration.go index 255d2385c8..ab33d89633 100644 --- a/intersight_gosdk/model_virtualization_cloud_vm_compute_configuration.go +++ b/intersight_gosdk/model_virtualization_cloud_vm_compute_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_cloud_vm_configuration.go b/intersight_gosdk/model_virtualization_cloud_vm_configuration.go index be72b4aecb..c5b84bf776 100644 --- a/intersight_gosdk/model_virtualization_cloud_vm_configuration.go +++ b/intersight_gosdk/model_virtualization_cloud_vm_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_cloud_vm_network_configuration.go b/intersight_gosdk/model_virtualization_cloud_vm_network_configuration.go index 3e31c9e0e1..264f7a20da 100644 --- a/intersight_gosdk/model_virtualization_cloud_vm_network_configuration.go +++ b/intersight_gosdk/model_virtualization_cloud_vm_network_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_cloud_vm_storage_configuration.go b/intersight_gosdk/model_virtualization_cloud_vm_storage_configuration.go index 3786e4ca1a..4e14f764dc 100644 --- a/intersight_gosdk/model_virtualization_cloud_vm_storage_configuration.go +++ b/intersight_gosdk/model_virtualization_cloud_vm_storage_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_compute_capacity.go b/intersight_gosdk/model_virtualization_compute_capacity.go index cb58d99b2c..2ce1f88507 100644 --- a/intersight_gosdk/model_virtualization_compute_capacity.go +++ b/intersight_gosdk/model_virtualization_compute_capacity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_cpu_info.go b/intersight_gosdk/model_virtualization_cpu_info.go index daaaf1aabf..0011b2b52b 100644 --- a/intersight_gosdk/model_virtualization_cpu_info.go +++ b/intersight_gosdk/model_virtualization_cpu_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_esxi_clone_custom_spec.go b/intersight_gosdk/model_virtualization_esxi_clone_custom_spec.go index 556b0f0dc4..225611bca0 100644 --- a/intersight_gosdk/model_virtualization_esxi_clone_custom_spec.go +++ b/intersight_gosdk/model_virtualization_esxi_clone_custom_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_esxi_console.go b/intersight_gosdk/model_virtualization_esxi_console.go index 3c91707edb..c2b3a111cb 100644 --- a/intersight_gosdk/model_virtualization_esxi_console.go +++ b/intersight_gosdk/model_virtualization_esxi_console.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_esxi_console_list.go b/intersight_gosdk/model_virtualization_esxi_console_list.go index 889e7e5c10..3e06f81a55 100644 --- a/intersight_gosdk/model_virtualization_esxi_console_list.go +++ b/intersight_gosdk/model_virtualization_esxi_console_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_esxi_console_response.go b/intersight_gosdk/model_virtualization_esxi_console_response.go index 5c2ba46d46..f7abb48efc 100644 --- a/intersight_gosdk/model_virtualization_esxi_console_response.go +++ b/intersight_gosdk/model_virtualization_esxi_console_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_esxi_host_configuration.go b/intersight_gosdk/model_virtualization_esxi_host_configuration.go index 0dfbfb2c23..c88f83e8c1 100644 --- a/intersight_gosdk/model_virtualization_esxi_host_configuration.go +++ b/intersight_gosdk/model_virtualization_esxi_host_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_esxi_ova_custom_spec.go b/intersight_gosdk/model_virtualization_esxi_ova_custom_spec.go index 870512b205..7be128a488 100644 --- a/intersight_gosdk/model_virtualization_esxi_ova_custom_spec.go +++ b/intersight_gosdk/model_virtualization_esxi_ova_custom_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_esxi_vm_compute_configuration.go b/intersight_gosdk/model_virtualization_esxi_vm_compute_configuration.go index 2c9cde130e..85d948083f 100644 --- a/intersight_gosdk/model_virtualization_esxi_vm_compute_configuration.go +++ b/intersight_gosdk/model_virtualization_esxi_vm_compute_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_esxi_vm_configuration.go b/intersight_gosdk/model_virtualization_esxi_vm_configuration.go index f02ffd8432..106360f212 100644 --- a/intersight_gosdk/model_virtualization_esxi_vm_configuration.go +++ b/intersight_gosdk/model_virtualization_esxi_vm_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_esxi_vm_network_configuration.go b/intersight_gosdk/model_virtualization_esxi_vm_network_configuration.go index 1d7775c5d2..5d79d18ad0 100644 --- a/intersight_gosdk/model_virtualization_esxi_vm_network_configuration.go +++ b/intersight_gosdk/model_virtualization_esxi_vm_network_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_esxi_vm_storage_configuration.go b/intersight_gosdk/model_virtualization_esxi_vm_storage_configuration.go index 8084ce258c..4b8da8cf18 100644 --- a/intersight_gosdk/model_virtualization_esxi_vm_storage_configuration.go +++ b/intersight_gosdk/model_virtualization_esxi_vm_storage_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_guest_info.go b/intersight_gosdk/model_virtualization_guest_info.go index 54d574450b..af51abe0c9 100644 --- a/intersight_gosdk/model_virtualization_guest_info.go +++ b/intersight_gosdk/model_virtualization_guest_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_host.go b/intersight_gosdk/model_virtualization_host.go index 28e6dabcdb..a7dd189a83 100644 --- a/intersight_gosdk/model_virtualization_host.go +++ b/intersight_gosdk/model_virtualization_host.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_host_list.go b/intersight_gosdk/model_virtualization_host_list.go index 010e73492c..bd9bb2dfdd 100644 --- a/intersight_gosdk/model_virtualization_host_list.go +++ b/intersight_gosdk/model_virtualization_host_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_host_response.go b/intersight_gosdk/model_virtualization_host_response.go index a7c119f481..09bf217a04 100644 --- a/intersight_gosdk/model_virtualization_host_response.go +++ b/intersight_gosdk/model_virtualization_host_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_ip_address_info.go b/intersight_gosdk/model_virtualization_ip_address_info.go index 28ee2c7df4..4b33385d31 100644 --- a/intersight_gosdk/model_virtualization_ip_address_info.go +++ b/intersight_gosdk/model_virtualization_ip_address_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_memory_capacity.go b/intersight_gosdk/model_virtualization_memory_capacity.go index 0558ba89f0..ee9e4bf293 100644 --- a/intersight_gosdk/model_virtualization_memory_capacity.go +++ b/intersight_gosdk/model_virtualization_memory_capacity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_network_interface.go b/intersight_gosdk/model_virtualization_network_interface.go index 9aff76c543..783e055fae 100644 --- a/intersight_gosdk/model_virtualization_network_interface.go +++ b/intersight_gosdk/model_virtualization_network_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -41,7 +41,7 @@ type VirtualizationNetworkInterface struct { // Set to true, if IPv6 address should be allocated for the NIC. Ipv6Address *bool `json:"Ipv6Address,omitempty"` // Virtual machine network mac address. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"` // Name of the network interface. This may be different from guest operating system assigned. Name *string `json:"Name,omitempty"` // Identity of the network to which this network interface belongs. @@ -808,7 +808,7 @@ func (o *VirtualizationNetworkInterface) UnmarshalJSON(data []byte) (err error) // Set to true, if IPv6 address should be allocated for the NIC. Ipv6Address *bool `json:"Ipv6Address,omitempty"` // Virtual machine network mac address. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"` // Name of the network interface. This may be different from guest operating system assigned. Name *string `json:"Name,omitempty"` // Identity of the network to which this network interface belongs. diff --git a/intersight_gosdk/model_virtualization_product_info.go b/intersight_gosdk/model_virtualization_product_info.go index bfd5319926..18ed87a743 100644 --- a/intersight_gosdk/model_virtualization_product_info.go +++ b/intersight_gosdk/model_virtualization_product_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_storage_capacity.go b/intersight_gosdk/model_virtualization_storage_capacity.go index b909977144..7818a3e63e 100644 --- a/intersight_gosdk/model_virtualization_storage_capacity.go +++ b/intersight_gosdk/model_virtualization_storage_capacity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_virtual_machine.go b/intersight_gosdk/model_virtualization_virtual_machine.go index 5d9e21311e..ab449c9c1e 100644 --- a/intersight_gosdk/model_virtualization_virtual_machine.go +++ b/intersight_gosdk/model_virtualization_virtual_machine.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_virtual_machine_disk.go b/intersight_gosdk/model_virtualization_virtual_machine_disk.go index 9e0818d17a..becd90db5d 100644 --- a/intersight_gosdk/model_virtualization_virtual_machine_disk.go +++ b/intersight_gosdk/model_virtualization_virtual_machine_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_virtual_machine_list.go b/intersight_gosdk/model_virtualization_virtual_machine_list.go index de262d3462..8fde8551c1 100644 --- a/intersight_gosdk/model_virtualization_virtual_machine_list.go +++ b/intersight_gosdk/model_virtualization_virtual_machine_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_virtual_machine_relationship.go b/intersight_gosdk/model_virtualization_virtual_machine_relationship.go index bde90cde8b..cc16615e9b 100644 --- a/intersight_gosdk/model_virtualization_virtual_machine_relationship.go +++ b/intersight_gosdk/model_virtualization_virtual_machine_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_virtual_machine_response.go b/intersight_gosdk/model_virtualization_virtual_machine_response.go index f6e32934c8..7e20f7d1a6 100644 --- a/intersight_gosdk/model_virtualization_virtual_machine_response.go +++ b/intersight_gosdk/model_virtualization_virtual_machine_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vm_esxi_disk.go b/intersight_gosdk/model_virtualization_vm_esxi_disk.go index 34d6e7dd78..af33cbff8d 100644 --- a/intersight_gosdk/model_virtualization_vm_esxi_disk.go +++ b/intersight_gosdk/model_virtualization_vm_esxi_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_cluster.go b/intersight_gosdk/model_virtualization_vmware_cluster.go index 6719adb0d3..4c1749eeab 100644 --- a/intersight_gosdk/model_virtualization_vmware_cluster.go +++ b/intersight_gosdk/model_virtualization_vmware_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_cluster_list.go b/intersight_gosdk/model_virtualization_vmware_cluster_list.go index cbc7c81805..6cf5866e56 100644 --- a/intersight_gosdk/model_virtualization_vmware_cluster_list.go +++ b/intersight_gosdk/model_virtualization_vmware_cluster_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_cluster_relationship.go b/intersight_gosdk/model_virtualization_vmware_cluster_relationship.go index 96dedf7902..3b9e9f1b35 100644 --- a/intersight_gosdk/model_virtualization_vmware_cluster_relationship.go +++ b/intersight_gosdk/model_virtualization_vmware_cluster_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_cluster_response.go b/intersight_gosdk/model_virtualization_vmware_cluster_response.go index 9b3d5653e8..325b39e622 100644 --- a/intersight_gosdk/model_virtualization_vmware_cluster_response.go +++ b/intersight_gosdk/model_virtualization_vmware_cluster_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_datacenter.go b/intersight_gosdk/model_virtualization_vmware_datacenter.go index 42b3a47095..97d2337880 100644 --- a/intersight_gosdk/model_virtualization_vmware_datacenter.go +++ b/intersight_gosdk/model_virtualization_vmware_datacenter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_datacenter_list.go b/intersight_gosdk/model_virtualization_vmware_datacenter_list.go index f395ecfeba..ca35542618 100644 --- a/intersight_gosdk/model_virtualization_vmware_datacenter_list.go +++ b/intersight_gosdk/model_virtualization_vmware_datacenter_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_datacenter_relationship.go b/intersight_gosdk/model_virtualization_vmware_datacenter_relationship.go index 97238ca669..16cccbeda1 100644 --- a/intersight_gosdk/model_virtualization_vmware_datacenter_relationship.go +++ b/intersight_gosdk/model_virtualization_vmware_datacenter_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_datacenter_response.go b/intersight_gosdk/model_virtualization_vmware_datacenter_response.go index d094b6336c..f16d75743d 100644 --- a/intersight_gosdk/model_virtualization_vmware_datacenter_response.go +++ b/intersight_gosdk/model_virtualization_vmware_datacenter_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_datastore.go b/intersight_gosdk/model_virtualization_vmware_datastore.go index 9155c591bd..1aac3cf96b 100644 --- a/intersight_gosdk/model_virtualization_vmware_datastore.go +++ b/intersight_gosdk/model_virtualization_vmware_datastore.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_datastore_cluster.go b/intersight_gosdk/model_virtualization_vmware_datastore_cluster.go index f346e38c24..0f869d4c76 100644 --- a/intersight_gosdk/model_virtualization_vmware_datastore_cluster.go +++ b/intersight_gosdk/model_virtualization_vmware_datastore_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_datastore_cluster_list.go b/intersight_gosdk/model_virtualization_vmware_datastore_cluster_list.go index 9d73d1164d..8b082e6295 100644 --- a/intersight_gosdk/model_virtualization_vmware_datastore_cluster_list.go +++ b/intersight_gosdk/model_virtualization_vmware_datastore_cluster_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_datastore_cluster_relationship.go b/intersight_gosdk/model_virtualization_vmware_datastore_cluster_relationship.go index b38fd28f26..c4d96371ff 100644 --- a/intersight_gosdk/model_virtualization_vmware_datastore_cluster_relationship.go +++ b/intersight_gosdk/model_virtualization_vmware_datastore_cluster_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_datastore_cluster_response.go b/intersight_gosdk/model_virtualization_vmware_datastore_cluster_response.go index ca57fec95e..3d15a64163 100644 --- a/intersight_gosdk/model_virtualization_vmware_datastore_cluster_response.go +++ b/intersight_gosdk/model_virtualization_vmware_datastore_cluster_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_datastore_list.go b/intersight_gosdk/model_virtualization_vmware_datastore_list.go index f07383d682..0a9e2fcd1a 100644 --- a/intersight_gosdk/model_virtualization_vmware_datastore_list.go +++ b/intersight_gosdk/model_virtualization_vmware_datastore_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_datastore_relationship.go b/intersight_gosdk/model_virtualization_vmware_datastore_relationship.go index 9c6529953d..f8ff424efd 100644 --- a/intersight_gosdk/model_virtualization_vmware_datastore_relationship.go +++ b/intersight_gosdk/model_virtualization_vmware_datastore_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_datastore_response.go b/intersight_gosdk/model_virtualization_vmware_datastore_response.go index 8bb0c8c01c..174e080e00 100644 --- a/intersight_gosdk/model_virtualization_vmware_datastore_response.go +++ b/intersight_gosdk/model_virtualization_vmware_datastore_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_discovery_protocol.go b/intersight_gosdk/model_virtualization_vmware_discovery_protocol.go index c04f717fc5..1d38bfec0e 100644 --- a/intersight_gosdk/model_virtualization_vmware_discovery_protocol.go +++ b/intersight_gosdk/model_virtualization_vmware_discovery_protocol.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_distributed_network.go b/intersight_gosdk/model_virtualization_vmware_distributed_network.go index 7ac6dad105..598f6244ec 100644 --- a/intersight_gosdk/model_virtualization_vmware_distributed_network.go +++ b/intersight_gosdk/model_virtualization_vmware_distributed_network.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_distributed_network_list.go b/intersight_gosdk/model_virtualization_vmware_distributed_network_list.go index f4b2a8f6c7..1716e6b6ee 100644 --- a/intersight_gosdk/model_virtualization_vmware_distributed_network_list.go +++ b/intersight_gosdk/model_virtualization_vmware_distributed_network_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_distributed_network_relationship.go b/intersight_gosdk/model_virtualization_vmware_distributed_network_relationship.go index 68467ec798..f2558c0171 100644 --- a/intersight_gosdk/model_virtualization_vmware_distributed_network_relationship.go +++ b/intersight_gosdk/model_virtualization_vmware_distributed_network_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_distributed_network_response.go b/intersight_gosdk/model_virtualization_vmware_distributed_network_response.go index 31d987a1d0..8b5cd16e25 100644 --- a/intersight_gosdk/model_virtualization_vmware_distributed_network_response.go +++ b/intersight_gosdk/model_virtualization_vmware_distributed_network_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_distributed_switch.go b/intersight_gosdk/model_virtualization_vmware_distributed_switch.go index 14f6c54ea6..a19747d90f 100644 --- a/intersight_gosdk/model_virtualization_vmware_distributed_switch.go +++ b/intersight_gosdk/model_virtualization_vmware_distributed_switch.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -49,7 +49,7 @@ type VirtualizationVmwareDistributedSwitch struct { ResourceAllocationSystemTraffic []VirtualizationVmwareResourceAllocationSystemTrafficTypes `json:"ResourceAllocationSystemTraffic,omitempty"` SwitchCapacity NullableVirtualizationStorageCapacity `json:"SwitchCapacity,omitempty"` // Universally Unique Id of this distributed virtual switch. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The running config's version details are represented. Version *string `json:"Version,omitempty"` Datacenter NullableVirtualizationVmwareDatacenterRelationship `json:"Datacenter,omitempty"` @@ -849,7 +849,7 @@ func (o *VirtualizationVmwareDistributedSwitch) UnmarshalJSON(data []byte) (err ResourceAllocationSystemTraffic []VirtualizationVmwareResourceAllocationSystemTrafficTypes `json:"ResourceAllocationSystemTraffic,omitempty"` SwitchCapacity NullableVirtualizationStorageCapacity `json:"SwitchCapacity,omitempty"` // Universally Unique Id of this distributed virtual switch. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The running config's version details are represented. Version *string `json:"Version,omitempty"` Datacenter NullableVirtualizationVmwareDatacenterRelationship `json:"Datacenter,omitempty"` diff --git a/intersight_gosdk/model_virtualization_vmware_distributed_switch_list.go b/intersight_gosdk/model_virtualization_vmware_distributed_switch_list.go index d47a2a1ec9..579e150975 100644 --- a/intersight_gosdk/model_virtualization_vmware_distributed_switch_list.go +++ b/intersight_gosdk/model_virtualization_vmware_distributed_switch_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_distributed_switch_relationship.go b/intersight_gosdk/model_virtualization_vmware_distributed_switch_relationship.go index d605d47d23..a4f682c84c 100644 --- a/intersight_gosdk/model_virtualization_vmware_distributed_switch_relationship.go +++ b/intersight_gosdk/model_virtualization_vmware_distributed_switch_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_distributed_switch_response.go b/intersight_gosdk/model_virtualization_vmware_distributed_switch_response.go index cbe7a76376..ec029dd47e 100644 --- a/intersight_gosdk/model_virtualization_vmware_distributed_switch_response.go +++ b/intersight_gosdk/model_virtualization_vmware_distributed_switch_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_folder.go b/intersight_gosdk/model_virtualization_vmware_folder.go index e59913d41f..deda6b5ff0 100644 --- a/intersight_gosdk/model_virtualization_vmware_folder.go +++ b/intersight_gosdk/model_virtualization_vmware_folder.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_folder_list.go b/intersight_gosdk/model_virtualization_vmware_folder_list.go index 6f5f62536b..6e022f9bc5 100644 --- a/intersight_gosdk/model_virtualization_vmware_folder_list.go +++ b/intersight_gosdk/model_virtualization_vmware_folder_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_folder_relationship.go b/intersight_gosdk/model_virtualization_vmware_folder_relationship.go index f2076aa1f6..e13d9f3223 100644 --- a/intersight_gosdk/model_virtualization_vmware_folder_relationship.go +++ b/intersight_gosdk/model_virtualization_vmware_folder_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_folder_response.go b/intersight_gosdk/model_virtualization_vmware_folder_response.go index 32a0b797bb..63d9b4c1f7 100644 --- a/intersight_gosdk/model_virtualization_vmware_folder_response.go +++ b/intersight_gosdk/model_virtualization_vmware_folder_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_host.go b/intersight_gosdk/model_virtualization_vmware_host.go index 3a70cb1ffe..632157ae87 100644 --- a/intersight_gosdk/model_virtualization_vmware_host.go +++ b/intersight_gosdk/model_virtualization_vmware_host.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_host_gpu.go b/intersight_gosdk/model_virtualization_vmware_host_gpu.go index dd6eee8acc..d2f88d2434 100644 --- a/intersight_gosdk/model_virtualization_vmware_host_gpu.go +++ b/intersight_gosdk/model_virtualization_vmware_host_gpu.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_host_gpu_list.go b/intersight_gosdk/model_virtualization_vmware_host_gpu_list.go index f2b559f46d..98f097ecc1 100644 --- a/intersight_gosdk/model_virtualization_vmware_host_gpu_list.go +++ b/intersight_gosdk/model_virtualization_vmware_host_gpu_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_host_gpu_response.go b/intersight_gosdk/model_virtualization_vmware_host_gpu_response.go index da3ce46ad2..a70adcdd04 100644 --- a/intersight_gosdk/model_virtualization_vmware_host_gpu_response.go +++ b/intersight_gosdk/model_virtualization_vmware_host_gpu_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_host_list.go b/intersight_gosdk/model_virtualization_vmware_host_list.go index 8b46f448f5..bd3c45f354 100644 --- a/intersight_gosdk/model_virtualization_vmware_host_list.go +++ b/intersight_gosdk/model_virtualization_vmware_host_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_host_relationship.go b/intersight_gosdk/model_virtualization_vmware_host_relationship.go index 189bebcffb..f8a9466e12 100644 --- a/intersight_gosdk/model_virtualization_vmware_host_relationship.go +++ b/intersight_gosdk/model_virtualization_vmware_host_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_host_response.go b/intersight_gosdk/model_virtualization_vmware_host_response.go index eb3b71600b..4d87d13001 100644 --- a/intersight_gosdk/model_virtualization_vmware_host_response.go +++ b/intersight_gosdk/model_virtualization_vmware_host_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_kernel_network.go b/intersight_gosdk/model_virtualization_vmware_kernel_network.go index eee9ab5d5f..bb095b2341 100644 --- a/intersight_gosdk/model_virtualization_vmware_kernel_network.go +++ b/intersight_gosdk/model_virtualization_vmware_kernel_network.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -32,7 +32,7 @@ type VirtualizationVmwareKernelNetwork struct { FaultToleranceLogging *bool `json:"FaultToleranceLogging,omitempty"` IpAddress []string `json:"IpAddress,omitempty"` // Standard MAC address assigned to this kernel network. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"` // Indicates that management traffic is enabled on this kernel network. Management *bool `json:"Management,omitempty"` // Maximum transmission unit configured on a kernel network. @@ -784,7 +784,7 @@ func (o *VirtualizationVmwareKernelNetwork) UnmarshalJSON(data []byte) (err erro FaultToleranceLogging *bool `json:"FaultToleranceLogging,omitempty"` IpAddress []string `json:"IpAddress,omitempty"` // Standard MAC address assigned to this kernel network. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"` // Indicates that management traffic is enabled on this kernel network. Management *bool `json:"Management,omitempty"` // Maximum transmission unit configured on a kernel network. diff --git a/intersight_gosdk/model_virtualization_vmware_kernel_network_list.go b/intersight_gosdk/model_virtualization_vmware_kernel_network_list.go index 5e10922e08..fa19a87393 100644 --- a/intersight_gosdk/model_virtualization_vmware_kernel_network_list.go +++ b/intersight_gosdk/model_virtualization_vmware_kernel_network_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_kernel_network_response.go b/intersight_gosdk/model_virtualization_vmware_kernel_network_response.go index 266e94d0f6..7d4cf6fa43 100644 --- a/intersight_gosdk/model_virtualization_vmware_kernel_network_response.go +++ b/intersight_gosdk/model_virtualization_vmware_kernel_network_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_network.go b/intersight_gosdk/model_virtualization_vmware_network.go index fcaf981f4a..84025bda37 100644 --- a/intersight_gosdk/model_virtualization_vmware_network.go +++ b/intersight_gosdk/model_virtualization_vmware_network.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_network_list.go b/intersight_gosdk/model_virtualization_vmware_network_list.go index 9882902cc4..ae14efe9eb 100644 --- a/intersight_gosdk/model_virtualization_vmware_network_list.go +++ b/intersight_gosdk/model_virtualization_vmware_network_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_network_relationship.go b/intersight_gosdk/model_virtualization_vmware_network_relationship.go index 465fc1a494..d35ac959f1 100644 --- a/intersight_gosdk/model_virtualization_vmware_network_relationship.go +++ b/intersight_gosdk/model_virtualization_vmware_network_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_network_response.go b/intersight_gosdk/model_virtualization_vmware_network_response.go index 6bdd91c28e..0725f1feac 100644 --- a/intersight_gosdk/model_virtualization_vmware_network_response.go +++ b/intersight_gosdk/model_virtualization_vmware_network_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_physical_network_interface.go b/intersight_gosdk/model_virtualization_vmware_physical_network_interface.go index 5b5b7e61eb..1a0c799240 100644 --- a/intersight_gosdk/model_virtualization_vmware_physical_network_interface.go +++ b/intersight_gosdk/model_virtualization_vmware_physical_network_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type VirtualizationVmwarePhysicalNetworkInterface struct { // Link speed of the physical network interface. LinkSpeed *int32 `json:"LinkSpeed,omitempty"` // Standard MAC address assigned to physical network interface. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"` // PCI info for physical network interface. Pci *string `json:"Pci,omitempty"` // Switch associated with the physical network interface. @@ -432,7 +432,7 @@ func (o *VirtualizationVmwarePhysicalNetworkInterface) UnmarshalJSON(data []byte // Link speed of the physical network interface. LinkSpeed *int32 `json:"LinkSpeed,omitempty"` // Standard MAC address assigned to physical network interface. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"` // PCI info for physical network interface. Pci *string `json:"Pci,omitempty"` // Switch associated with the physical network interface. diff --git a/intersight_gosdk/model_virtualization_vmware_physical_network_interface_list.go b/intersight_gosdk/model_virtualization_vmware_physical_network_interface_list.go index c674aaceaf..043c0478cf 100644 --- a/intersight_gosdk/model_virtualization_vmware_physical_network_interface_list.go +++ b/intersight_gosdk/model_virtualization_vmware_physical_network_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_physical_network_interface_relationship.go b/intersight_gosdk/model_virtualization_vmware_physical_network_interface_relationship.go index 3626dad063..d0b2bce9f6 100644 --- a/intersight_gosdk/model_virtualization_vmware_physical_network_interface_relationship.go +++ b/intersight_gosdk/model_virtualization_vmware_physical_network_interface_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_physical_network_interface_response.go b/intersight_gosdk/model_virtualization_vmware_physical_network_interface_response.go index 8d3fc7a9b6..391c152d9a 100644 --- a/intersight_gosdk/model_virtualization_vmware_physical_network_interface_response.go +++ b/intersight_gosdk/model_virtualization_vmware_physical_network_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_proactive_ha.go b/intersight_gosdk/model_virtualization_vmware_proactive_ha.go index ab3886c2ae..570a718b35 100644 --- a/intersight_gosdk/model_virtualization_vmware_proactive_ha.go +++ b/intersight_gosdk/model_virtualization_vmware_proactive_ha.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_proactive_ha_list.go b/intersight_gosdk/model_virtualization_vmware_proactive_ha_list.go index c0ec772f3c..400071939e 100644 --- a/intersight_gosdk/model_virtualization_vmware_proactive_ha_list.go +++ b/intersight_gosdk/model_virtualization_vmware_proactive_ha_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_proactive_ha_response.go b/intersight_gosdk/model_virtualization_vmware_proactive_ha_response.go index b299576234..0c2c41b461 100644 --- a/intersight_gosdk/model_virtualization_vmware_proactive_ha_response.go +++ b/intersight_gosdk/model_virtualization_vmware_proactive_ha_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_remote_display_info.go b/intersight_gosdk/model_virtualization_vmware_remote_display_info.go index 0466b3cf24..791ff4794a 100644 --- a/intersight_gosdk/model_virtualization_vmware_remote_display_info.go +++ b/intersight_gosdk/model_virtualization_vmware_remote_display_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_resource_allocation_system_traffic_types.go b/intersight_gosdk/model_virtualization_vmware_resource_allocation_system_traffic_types.go index fd0d9f1b9c..33c0b7edc9 100644 --- a/intersight_gosdk/model_virtualization_vmware_resource_allocation_system_traffic_types.go +++ b/intersight_gosdk/model_virtualization_vmware_resource_allocation_system_traffic_types.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_resource_consumption.go b/intersight_gosdk/model_virtualization_vmware_resource_consumption.go index 7e04249a4f..52b744aac1 100644 --- a/intersight_gosdk/model_virtualization_vmware_resource_consumption.go +++ b/intersight_gosdk/model_virtualization_vmware_resource_consumption.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_shares_info.go b/intersight_gosdk/model_virtualization_vmware_shares_info.go index 74a2ed265a..d152bed0c3 100644 --- a/intersight_gosdk/model_virtualization_vmware_shares_info.go +++ b/intersight_gosdk/model_virtualization_vmware_shares_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_teaming_and_failover.go b/intersight_gosdk/model_virtualization_vmware_teaming_and_failover.go index 98b4b49866..df8bf2839b 100644 --- a/intersight_gosdk/model_virtualization_vmware_teaming_and_failover.go +++ b/intersight_gosdk/model_virtualization_vmware_teaming_and_failover.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_uplink_port.go b/intersight_gosdk/model_virtualization_vmware_uplink_port.go index 6e8aeff5ed..7fa0fa78b8 100644 --- a/intersight_gosdk/model_virtualization_vmware_uplink_port.go +++ b/intersight_gosdk/model_virtualization_vmware_uplink_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_uplink_port_list.go b/intersight_gosdk/model_virtualization_vmware_uplink_port_list.go index 4936e1c809..997c633348 100644 --- a/intersight_gosdk/model_virtualization_vmware_uplink_port_list.go +++ b/intersight_gosdk/model_virtualization_vmware_uplink_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_uplink_port_response.go b/intersight_gosdk/model_virtualization_vmware_uplink_port_response.go index 97d383a020..56b4aad86e 100644 --- a/intersight_gosdk/model_virtualization_vmware_uplink_port_response.go +++ b/intersight_gosdk/model_virtualization_vmware_uplink_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_vcenter.go b/intersight_gosdk/model_virtualization_vmware_vcenter.go index e409ae74a9..0246be9bda 100644 --- a/intersight_gosdk/model_virtualization_vmware_vcenter.go +++ b/intersight_gosdk/model_virtualization_vmware_vcenter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_vcenter_list.go b/intersight_gosdk/model_virtualization_vmware_vcenter_list.go index a613f279ad..b33e98d6c8 100644 --- a/intersight_gosdk/model_virtualization_vmware_vcenter_list.go +++ b/intersight_gosdk/model_virtualization_vmware_vcenter_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_vcenter_relationship.go b/intersight_gosdk/model_virtualization_vmware_vcenter_relationship.go index 8eabb2f62a..796a1379a7 100644 --- a/intersight_gosdk/model_virtualization_vmware_vcenter_relationship.go +++ b/intersight_gosdk/model_virtualization_vmware_vcenter_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_vcenter_response.go b/intersight_gosdk/model_virtualization_vmware_vcenter_response.go index 97b7783750..13164cd92d 100644 --- a/intersight_gosdk/model_virtualization_vmware_vcenter_response.go +++ b/intersight_gosdk/model_virtualization_vmware_vcenter_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_virtual_disk.go b/intersight_gosdk/model_virtualization_vmware_virtual_disk.go index e8f69e5478..3a460829b9 100644 --- a/intersight_gosdk/model_virtualization_vmware_virtual_disk.go +++ b/intersight_gosdk/model_virtualization_vmware_virtual_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -54,9 +54,9 @@ type VirtualizationVmwareVirtualDisk struct { // Unit number of the disk on its controller. UnitNumber *int64 `json:"UnitNumber,omitempty"` // UUID assigned by vCenter to every disk. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Identity of the virtual disk object as the first class entity. - VdiskId *string `json:"VdiskId,omitempty"` + VdiskId *string `json:"VdiskId,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Vendor of the storage device. Vendor *string `json:"Vendor,omitempty"` // Path of the virtual disk. @@ -1011,9 +1011,9 @@ func (o *VirtualizationVmwareVirtualDisk) UnmarshalJSON(data []byte) (err error) // Unit number of the disk on its controller. UnitNumber *int64 `json:"UnitNumber,omitempty"` // UUID assigned by vCenter to every disk. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Identity of the virtual disk object as the first class entity. - VdiskId *string `json:"VdiskId,omitempty"` + VdiskId *string `json:"VdiskId,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Vendor of the storage device. Vendor *string `json:"Vendor,omitempty"` // Path of the virtual disk. diff --git a/intersight_gosdk/model_virtualization_vmware_virtual_disk_list.go b/intersight_gosdk/model_virtualization_vmware_virtual_disk_list.go index 728ee8fa78..5d914a10b4 100644 --- a/intersight_gosdk/model_virtualization_vmware_virtual_disk_list.go +++ b/intersight_gosdk/model_virtualization_vmware_virtual_disk_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_virtual_disk_response.go b/intersight_gosdk/model_virtualization_vmware_virtual_disk_response.go index 13b0d8b039..2e06e1a323 100644 --- a/intersight_gosdk/model_virtualization_vmware_virtual_disk_response.go +++ b/intersight_gosdk/model_virtualization_vmware_virtual_disk_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_virtual_machine.go b/intersight_gosdk/model_virtualization_vmware_virtual_machine.go index c88e00afc2..a0cf42df4a 100644 --- a/intersight_gosdk/model_virtualization_vmware_virtual_machine.go +++ b/intersight_gosdk/model_virtualization_vmware_virtual_machine.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -55,7 +55,7 @@ type VirtualizationVmwareVirtualMachine struct { // Minimum host ESXi version required for the virtual machine. HostCompatibility *string `json:"HostCompatibility,omitempty"` // UUID assigned by vCenter to every VM. - InstanceUuid *string `json:"InstanceUuid,omitempty"` + InstanceUuid *string `json:"InstanceUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Inventory path to the VM. Example - /DC/vm/folder/VMName. InventoryPath *string `json:"InventoryPath,omitempty"` // If true, indicates that the entity refers to a template of a virtual machine and not a real virtual machine. @@ -2066,7 +2066,7 @@ func (o *VirtualizationVmwareVirtualMachine) UnmarshalJSON(data []byte) (err err // Minimum host ESXi version required for the virtual machine. HostCompatibility *string `json:"HostCompatibility,omitempty"` // UUID assigned by vCenter to every VM. - InstanceUuid *string `json:"InstanceUuid,omitempty"` + InstanceUuid *string `json:"InstanceUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Inventory path to the VM. Example - /DC/vm/folder/VMName. InventoryPath *string `json:"InventoryPath,omitempty"` // If true, indicates that the entity refers to a template of a virtual machine and not a real virtual machine. diff --git a/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu.go b/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu.go index 694f272be2..ad590253eb 100644 --- a/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu.go +++ b/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu_list.go b/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu_list.go index 26c5a03499..51985e6b0a 100644 --- a/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu_list.go +++ b/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu_response.go b/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu_response.go index 95ad332605..1d7aac9d45 100644 --- a/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu_response.go +++ b/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_virtual_machine_list.go b/intersight_gosdk/model_virtualization_vmware_virtual_machine_list.go index 91a9001a61..0417159abb 100644 --- a/intersight_gosdk/model_virtualization_vmware_virtual_machine_list.go +++ b/intersight_gosdk/model_virtualization_vmware_virtual_machine_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_virtual_machine_relationship.go b/intersight_gosdk/model_virtualization_vmware_virtual_machine_relationship.go index d218cf160e..d29b5cfc94 100644 --- a/intersight_gosdk/model_virtualization_vmware_virtual_machine_relationship.go +++ b/intersight_gosdk/model_virtualization_vmware_virtual_machine_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_virtual_machine_response.go b/intersight_gosdk/model_virtualization_vmware_virtual_machine_response.go index 808cb416da..2b9e401499 100644 --- a/intersight_gosdk/model_virtualization_vmware_virtual_machine_response.go +++ b/intersight_gosdk/model_virtualization_vmware_virtual_machine_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_virtual_machine_snapshot.go b/intersight_gosdk/model_virtualization_vmware_virtual_machine_snapshot.go index 7138db3fe0..ebda8579df 100644 --- a/intersight_gosdk/model_virtualization_vmware_virtual_machine_snapshot.go +++ b/intersight_gosdk/model_virtualization_vmware_virtual_machine_snapshot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_virtual_machine_snapshot_list.go b/intersight_gosdk/model_virtualization_vmware_virtual_machine_snapshot_list.go index bea61d8155..039880fbd4 100644 --- a/intersight_gosdk/model_virtualization_vmware_virtual_machine_snapshot_list.go +++ b/intersight_gosdk/model_virtualization_vmware_virtual_machine_snapshot_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_virtual_machine_snapshot_response.go b/intersight_gosdk/model_virtualization_vmware_virtual_machine_snapshot_response.go index 310cd2c678..283d3d0248 100644 --- a/intersight_gosdk/model_virtualization_vmware_virtual_machine_snapshot_response.go +++ b/intersight_gosdk/model_virtualization_vmware_virtual_machine_snapshot_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_virtual_network_interface.go b/intersight_gosdk/model_virtualization_vmware_virtual_network_interface.go index fcc13a85ca..0c1276b6eb 100644 --- a/intersight_gosdk/model_virtualization_vmware_virtual_network_interface.go +++ b/intersight_gosdk/model_virtualization_vmware_virtual_network_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -37,7 +37,7 @@ type VirtualizationVmwareVirtualNetworkInterface struct { // The internally assigned key of this virtual network interface. This entity is not manipulated by users. Key *int64 `json:"Key,omitempty"` // MAC address assigned to virtual network interface. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"` // MAC address type for the mac address assigned to virtual network interface. * `manual` - Statically assigned MAC address. * `generated` - Automatically generated MAC address. * `assigned` - MAC address assigned by VCenter to the virtual network interface card. MacAddressType *string `json:"MacAddressType,omitempty"` // Type of network for virtual network interface. It can be either standard or distributed. @@ -598,7 +598,7 @@ func (o *VirtualizationVmwareVirtualNetworkInterface) UnmarshalJSON(data []byte) // The internally assigned key of this virtual network interface. This entity is not manipulated by users. Key *int64 `json:"Key,omitempty"` // MAC address assigned to virtual network interface. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"` // MAC address type for the mac address assigned to virtual network interface. * `manual` - Statically assigned MAC address. * `generated` - Automatically generated MAC address. * `assigned` - MAC address assigned by VCenter to the virtual network interface card. MacAddressType *string `json:"MacAddressType,omitempty"` // Type of network for virtual network interface. It can be either standard or distributed. diff --git a/intersight_gosdk/model_virtualization_vmware_virtual_network_interface_list.go b/intersight_gosdk/model_virtualization_vmware_virtual_network_interface_list.go index 18709ca66b..837e45f960 100644 --- a/intersight_gosdk/model_virtualization_vmware_virtual_network_interface_list.go +++ b/intersight_gosdk/model_virtualization_vmware_virtual_network_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_virtual_network_interface_response.go b/intersight_gosdk/model_virtualization_vmware_virtual_network_interface_response.go index b4cfc61300..ac39e1eec7 100644 --- a/intersight_gosdk/model_virtualization_vmware_virtual_network_interface_response.go +++ b/intersight_gosdk/model_virtualization_vmware_virtual_network_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_virtual_switch.go b/intersight_gosdk/model_virtualization_vmware_virtual_switch.go index 083bb8ded3..7aa791df68 100644 --- a/intersight_gosdk/model_virtualization_vmware_virtual_switch.go +++ b/intersight_gosdk/model_virtualization_vmware_virtual_switch.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_virtual_switch_list.go b/intersight_gosdk/model_virtualization_vmware_virtual_switch_list.go index 707eeeed85..63b94f3013 100644 --- a/intersight_gosdk/model_virtualization_vmware_virtual_switch_list.go +++ b/intersight_gosdk/model_virtualization_vmware_virtual_switch_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_virtual_switch_relationship.go b/intersight_gosdk/model_virtualization_vmware_virtual_switch_relationship.go index e772d61527..df4c3e2d7d 100644 --- a/intersight_gosdk/model_virtualization_vmware_virtual_switch_relationship.go +++ b/intersight_gosdk/model_virtualization_vmware_virtual_switch_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_virtual_switch_response.go b/intersight_gosdk/model_virtualization_vmware_virtual_switch_response.go index 5c4682cb3e..3c5266b790 100644 --- a/intersight_gosdk/model_virtualization_vmware_virtual_switch_response.go +++ b/intersight_gosdk/model_virtualization_vmware_virtual_switch_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_vlan_range.go b/intersight_gosdk/model_virtualization_vmware_vlan_range.go index 9d16e80d2a..14bf500d4b 100644 --- a/intersight_gosdk/model_virtualization_vmware_vlan_range.go +++ b/intersight_gosdk/model_virtualization_vmware_vlan_range.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_vm_cpu_share_info.go b/intersight_gosdk/model_virtualization_vmware_vm_cpu_share_info.go index a73340d5dc..8323723eff 100644 --- a/intersight_gosdk/model_virtualization_vmware_vm_cpu_share_info.go +++ b/intersight_gosdk/model_virtualization_vmware_vm_cpu_share_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_vm_cpu_socket_info.go b/intersight_gosdk/model_virtualization_vmware_vm_cpu_socket_info.go index 53bb12e348..9e7487232d 100644 --- a/intersight_gosdk/model_virtualization_vmware_vm_cpu_socket_info.go +++ b/intersight_gosdk/model_virtualization_vmware_vm_cpu_socket_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_vm_disk_commit_info.go b/intersight_gosdk/model_virtualization_vmware_vm_disk_commit_info.go index 17594e20c5..d016e9b8ac 100644 --- a/intersight_gosdk/model_virtualization_vmware_vm_disk_commit_info.go +++ b/intersight_gosdk/model_virtualization_vmware_vm_disk_commit_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_vm_memory_share_info.go b/intersight_gosdk/model_virtualization_vmware_vm_memory_share_info.go index 028e6a82dc..31af8dd8cc 100644 --- a/intersight_gosdk/model_virtualization_vmware_vm_memory_share_info.go +++ b/intersight_gosdk/model_virtualization_vmware_vm_memory_share_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_volume_info.go b/intersight_gosdk/model_virtualization_volume_info.go index d77376a391..d6184f86a9 100644 --- a/intersight_gosdk/model_virtualization_volume_info.go +++ b/intersight_gosdk/model_virtualization_volume_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vmedia_mapping.go b/intersight_gosdk/model_vmedia_mapping.go index 447c3ed287..d337132dfd 100644 --- a/intersight_gosdk/model_vmedia_mapping.go +++ b/intersight_gosdk/model_vmedia_mapping.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -45,15 +45,15 @@ type VmediaMapping struct { // Password associated with the username. Password *string `json:"Password,omitempty"` // The remote file location path for the virtual media mapping. Accepted formats are: HDD for CIFS/NFS: hostname-or-IP/filePath/fileName.img. CDD for CIFS/NFS: hostname-or-IP/filePath/fileName.iso. HDD for HTTP/S: http[s]://hostname-or-IP/filePath/fileName.img. CDD for HTTP/S: http[s]://hostname-or-IP/filePath/fileName.iso. - RemoteFile *string `json:"RemoteFile,omitempty"` + RemoteFile *string `json:"RemoteFile,omitempty" validate:"regexp=^$|^[ !#$%\\\\(\\\\)\\\\+,\\\\-\\\\.:\\\\?@\\\\[\\\\]_\\\\{\\\\}=~a-zA-Z0-9]+$"` // URL path to the location of the image on the remote server. The preferred format is '/path'. - RemotePath *string `json:"RemotePath,omitempty"` + RemotePath *string `json:"RemotePath,omitempty" validate:"regexp=^$|^[ !#$%\\\\(\\\\)\\\\+,\\\\-\\\\.\\/:\\\\?@\\\\[\\\\]_\\\\{\\\\}=~a-zA-Z0-9]+$"` // File Location in standard format 'hostname/filePath/fileName'. This field should be used to calculate config drift. User input format may vary while inventory will return data in format in compliance with mount option for the mount. Both will be converged to this standard format for comparison. SanitizedFileLocation *string `json:"SanitizedFileLocation,omitempty"` // Username to log in to the remote server. Username *string `json:"Username,omitempty"` // Identity of the image for Virtual Media mapping. - VolumeName *string `json:"VolumeName,omitempty"` + VolumeName *string `json:"VolumeName,omitempty" validate:"regexp=^[\\\\-\\\\.:_a-zA-Z0-9]+$"` AdditionalProperties map[string]interface{} } @@ -705,15 +705,15 @@ func (o *VmediaMapping) UnmarshalJSON(data []byte) (err error) { // Password associated with the username. Password *string `json:"Password,omitempty"` // The remote file location path for the virtual media mapping. Accepted formats are: HDD for CIFS/NFS: hostname-or-IP/filePath/fileName.img. CDD for CIFS/NFS: hostname-or-IP/filePath/fileName.iso. HDD for HTTP/S: http[s]://hostname-or-IP/filePath/fileName.img. CDD for HTTP/S: http[s]://hostname-or-IP/filePath/fileName.iso. - RemoteFile *string `json:"RemoteFile,omitempty"` + RemoteFile *string `json:"RemoteFile,omitempty" validate:"regexp=^$|^[ !#$%\\\\(\\\\)\\\\+,\\\\-\\\\.:\\\\?@\\\\[\\\\]_\\\\{\\\\}=~a-zA-Z0-9]+$"` // URL path to the location of the image on the remote server. The preferred format is '/path'. - RemotePath *string `json:"RemotePath,omitempty"` + RemotePath *string `json:"RemotePath,omitempty" validate:"regexp=^$|^[ !#$%\\\\(\\\\)\\\\+,\\\\-\\\\.\\/:\\\\?@\\\\[\\\\]_\\\\{\\\\}=~a-zA-Z0-9]+$"` // File Location in standard format 'hostname/filePath/fileName'. This field should be used to calculate config drift. User input format may vary while inventory will return data in format in compliance with mount option for the mount. Both will be converged to this standard format for comparison. SanitizedFileLocation *string `json:"SanitizedFileLocation,omitempty"` // Username to log in to the remote server. Username *string `json:"Username,omitempty"` // Identity of the image for Virtual Media mapping. - VolumeName *string `json:"VolumeName,omitempty"` + VolumeName *string `json:"VolumeName,omitempty" validate:"regexp=^[\\\\-\\\\.:_a-zA-Z0-9]+$"` } varVmediaMappingWithoutEmbeddedStruct := VmediaMappingWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_vmedia_policy.go b/intersight_gosdk/model_vmedia_policy.go index 00c780a250..2de62a5c55 100644 --- a/intersight_gosdk/model_vmedia_policy.go +++ b/intersight_gosdk/model_vmedia_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vmedia_policy_inventory.go b/intersight_gosdk/model_vmedia_policy_inventory.go index d7a0778499..89e5173ff6 100644 --- a/intersight_gosdk/model_vmedia_policy_inventory.go +++ b/intersight_gosdk/model_vmedia_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vmedia_policy_inventory_list.go b/intersight_gosdk/model_vmedia_policy_inventory_list.go index 7a4e1bc207..0717b0c126 100644 --- a/intersight_gosdk/model_vmedia_policy_inventory_list.go +++ b/intersight_gosdk/model_vmedia_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vmedia_policy_inventory_response.go b/intersight_gosdk/model_vmedia_policy_inventory_response.go index 8bef3ecd85..12f41e6f70 100644 --- a/intersight_gosdk/model_vmedia_policy_inventory_response.go +++ b/intersight_gosdk/model_vmedia_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vmedia_policy_list.go b/intersight_gosdk/model_vmedia_policy_list.go index 4c700230c7..4d75bbd7fb 100644 --- a/intersight_gosdk/model_vmedia_policy_list.go +++ b/intersight_gosdk/model_vmedia_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vmedia_policy_response.go b/intersight_gosdk/model_vmedia_policy_response.go index 45f2d8849d..f1412e27c9 100644 --- a/intersight_gosdk/model_vmedia_policy_response.go +++ b/intersight_gosdk/model_vmedia_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vmrc_console.go b/intersight_gosdk/model_vmrc_console.go index 04a284f8a4..82c91d35c7 100644 --- a/intersight_gosdk/model_vmrc_console.go +++ b/intersight_gosdk/model_vmrc_console.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vmrc_console_list.go b/intersight_gosdk/model_vmrc_console_list.go index 56cf1b677e..1d9e3cd40a 100644 --- a/intersight_gosdk/model_vmrc_console_list.go +++ b/intersight_gosdk/model_vmrc_console_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vmrc_console_response.go b/intersight_gosdk/model_vmrc_console_response.go index 879860683a..28f98a8274 100644 --- a/intersight_gosdk/model_vmrc_console_response.go +++ b/intersight_gosdk/model_vmrc_console_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_arfs_settings.go b/intersight_gosdk/model_vnic_arfs_settings.go index 3d39e060b0..a165259440 100644 --- a/intersight_gosdk/model_vnic_arfs_settings.go +++ b/intersight_gosdk/model_vnic_arfs_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_base_eth_if.go b/intersight_gosdk/model_vnic_base_eth_if.go index 47ce6028cd..b2b0725651 100644 --- a/intersight_gosdk/model_vnic_base_eth_if.go +++ b/intersight_gosdk/model_vnic_base_eth_if.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -32,7 +32,7 @@ type VnicBaseEthIf struct { // Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster. FailoverEnabled *bool `json:"FailoverEnabled,omitempty"` // Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic. - PinGroupName *string `json:"PinGroupName,omitempty"` + PinGroupName *string `json:"PinGroupName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_.:-]{1,64}$"` SriovSettings NullableVnicSriovSettings `json:"SriovSettings,omitempty"` UsnicSettings NullableVnicUsnicSettings `json:"UsnicSettings,omitempty"` VmqSettings NullableVnicVmqSettings `json:"VmqSettings,omitempty"` @@ -762,7 +762,7 @@ func (o *VnicBaseEthIf) UnmarshalJSON(data []byte) (err error) { // Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster. FailoverEnabled *bool `json:"FailoverEnabled,omitempty"` // Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic. - PinGroupName *string `json:"PinGroupName,omitempty"` + PinGroupName *string `json:"PinGroupName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_.:-]{1,64}$"` SriovSettings NullableVnicSriovSettings `json:"SriovSettings,omitempty"` UsnicSettings NullableVnicUsnicSettings `json:"UsnicSettings,omitempty"` VmqSettings NullableVnicVmqSettings `json:"VmqSettings,omitempty"` diff --git a/intersight_gosdk/model_vnic_base_fc_if.go b/intersight_gosdk/model_vnic_base_fc_if.go index c76dd02031..cee04be34b 100644 --- a/intersight_gosdk/model_vnic_base_fc_if.go +++ b/intersight_gosdk/model_vnic_base_fc_if.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type VnicBaseFcIf struct { // Enables retention of LUN ID associations in memory until they are manually cleared. PersistentBindings *bool `json:"PersistentBindings,omitempty"` // Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic. - PinGroupName *string `json:"PinGroupName,omitempty"` + PinGroupName *string `json:"PinGroupName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_.:-]{1,64}$"` // VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters. * `fc-initiator` - The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems. * `fc-nvme-initiator` - Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. * `fc-nvme-target` - Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver. * `fc-target` - Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver. Type *string `json:"Type,omitempty"` FcAdapterPolicy NullableVnicFcAdapterPolicyRelationship `json:"FcAdapterPolicy,omitempty"` @@ -516,7 +516,7 @@ func (o *VnicBaseFcIf) UnmarshalJSON(data []byte) (err error) { // Enables retention of LUN ID associations in memory until they are manually cleared. PersistentBindings *bool `json:"PersistentBindings,omitempty"` // Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic. - PinGroupName *string `json:"PinGroupName,omitempty"` + PinGroupName *string `json:"PinGroupName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_.:-]{1,64}$"` // VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters. * `fc-initiator` - The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems. * `fc-nvme-initiator` - Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. * `fc-nvme-target` - Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver. * `fc-target` - Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver. Type *string `json:"Type,omitempty"` FcAdapterPolicy NullableVnicFcAdapterPolicyRelationship `json:"FcAdapterPolicy,omitempty"` diff --git a/intersight_gosdk/model_vnic_cdn.go b/intersight_gosdk/model_vnic_cdn.go index 6412f68b89..fd23b7be64 100644 --- a/intersight_gosdk/model_vnic_cdn.go +++ b/intersight_gosdk/model_vnic_cdn.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type VnicCdn struct { // Source of the CDN. It can either be user specified or be the same as the vNIC name. * `vnic` - Source of the CDN is the same as the vNIC name. * `user` - Source of the CDN is specified by the user. Source *string `json:"Source,omitempty"` // The CDN value entered in case of user defined mode. - Value *string `json:"Value,omitempty"` + Value *string `json:"Value,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\-\\\\._:]*$"` AdditionalProperties map[string]interface{} } @@ -276,7 +276,7 @@ func (o *VnicCdn) UnmarshalJSON(data []byte) (err error) { // Source of the CDN. It can either be user specified or be the same as the vNIC name. * `vnic` - Source of the CDN is the same as the vNIC name. * `user` - Source of the CDN is specified by the user. Source *string `json:"Source,omitempty"` // The CDN value entered in case of user defined mode. - Value *string `json:"Value,omitempty"` + Value *string `json:"Value,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\-\\\\._:]*$"` } varVnicCdnWithoutEmbeddedStruct := VnicCdnWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_vnic_completion_queue_settings.go b/intersight_gosdk/model_vnic_completion_queue_settings.go index 6f6f54373a..dd7fd408d2 100644 --- a/intersight_gosdk/model_vnic_completion_queue_settings.go +++ b/intersight_gosdk/model_vnic_completion_queue_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_adapter_policy.go b/intersight_gosdk/model_vnic_eth_adapter_policy.go index 75c95ffd7b..afb3445c7d 100644 --- a/intersight_gosdk/model_vnic_eth_adapter_policy.go +++ b/intersight_gosdk/model_vnic_eth_adapter_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_adapter_policy_inventory.go b/intersight_gosdk/model_vnic_eth_adapter_policy_inventory.go index c09d61dd4c..30cac1efb7 100644 --- a/intersight_gosdk/model_vnic_eth_adapter_policy_inventory.go +++ b/intersight_gosdk/model_vnic_eth_adapter_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_adapter_policy_inventory_list.go b/intersight_gosdk/model_vnic_eth_adapter_policy_inventory_list.go index 2fa24772d2..e3034312f0 100644 --- a/intersight_gosdk/model_vnic_eth_adapter_policy_inventory_list.go +++ b/intersight_gosdk/model_vnic_eth_adapter_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_adapter_policy_inventory_relationship.go b/intersight_gosdk/model_vnic_eth_adapter_policy_inventory_relationship.go index 8e55afaf5a..98e871ed47 100644 --- a/intersight_gosdk/model_vnic_eth_adapter_policy_inventory_relationship.go +++ b/intersight_gosdk/model_vnic_eth_adapter_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_adapter_policy_inventory_response.go b/intersight_gosdk/model_vnic_eth_adapter_policy_inventory_response.go index 7475cd330b..4423fb2ae0 100644 --- a/intersight_gosdk/model_vnic_eth_adapter_policy_inventory_response.go +++ b/intersight_gosdk/model_vnic_eth_adapter_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_adapter_policy_list.go b/intersight_gosdk/model_vnic_eth_adapter_policy_list.go index a64ab7bedd..44e7dea366 100644 --- a/intersight_gosdk/model_vnic_eth_adapter_policy_list.go +++ b/intersight_gosdk/model_vnic_eth_adapter_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_adapter_policy_relationship.go b/intersight_gosdk/model_vnic_eth_adapter_policy_relationship.go index 9c4e9cc208..de60062881 100644 --- a/intersight_gosdk/model_vnic_eth_adapter_policy_relationship.go +++ b/intersight_gosdk/model_vnic_eth_adapter_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_adapter_policy_response.go b/intersight_gosdk/model_vnic_eth_adapter_policy_response.go index 58f355803e..9b1dbdce5f 100644 --- a/intersight_gosdk/model_vnic_eth_adapter_policy_response.go +++ b/intersight_gosdk/model_vnic_eth_adapter_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_if.go b/intersight_gosdk/model_vnic_eth_if.go index 417d6184f0..6ee485fa88 100644 --- a/intersight_gosdk/model_vnic_eth_if.go +++ b/intersight_gosdk/model_vnic_eth_if.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -32,13 +32,13 @@ type VnicEthIf struct { IscsiIpV4AddressAllocationType *string `json:"IscsiIpV4AddressAllocationType,omitempty"` IscsiIpV4Config NullableIppoolIpV4Config `json:"IscsiIpV4Config,omitempty"` // IP address associated to the vNIC. - IscsiIpv4Address *string `json:"IscsiIpv4Address,omitempty"` + IscsiIpv4Address *string `json:"IscsiIpv4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The MAC address that is assigned to the vNIC based on the MAC pool that has been assigned to the LAN Connectivity Policy. MacAddress *string `json:"MacAddress,omitempty"` // Type of allocation selected to assign a MAC address for the vnic. * `POOL` - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface. * `STATIC` - The user assigns a static mac/wwn address for the Virtual Interface. MacAddressType *string `json:"MacAddressType,omitempty"` // Name of the virtual ethernet interface. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]+$"` // The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two. Order *int64 `json:"Order,omitempty"` OverriddenList []string `json:"OverriddenList,omitempty"` @@ -1100,13 +1100,13 @@ func (o *VnicEthIf) UnmarshalJSON(data []byte) (err error) { IscsiIpV4AddressAllocationType *string `json:"IscsiIpV4AddressAllocationType,omitempty"` IscsiIpV4Config NullableIppoolIpV4Config `json:"IscsiIpV4Config,omitempty"` // IP address associated to the vNIC. - IscsiIpv4Address *string `json:"IscsiIpv4Address,omitempty"` + IscsiIpv4Address *string `json:"IscsiIpv4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The MAC address that is assigned to the vNIC based on the MAC pool that has been assigned to the LAN Connectivity Policy. MacAddress *string `json:"MacAddress,omitempty"` // Type of allocation selected to assign a MAC address for the vnic. * `POOL` - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface. * `STATIC` - The user assigns a static mac/wwn address for the Virtual Interface. MacAddressType *string `json:"MacAddressType,omitempty"` // Name of the virtual ethernet interface. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]+$"` // The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two. Order *int64 `json:"Order,omitempty"` OverriddenList []string `json:"OverriddenList,omitempty"` diff --git a/intersight_gosdk/model_vnic_eth_if_inventory.go b/intersight_gosdk/model_vnic_eth_if_inventory.go index 782abd2160..c1f867666c 100644 --- a/intersight_gosdk/model_vnic_eth_if_inventory.go +++ b/intersight_gosdk/model_vnic_eth_if_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,18 +35,18 @@ type VnicEthIfInventory struct { IscsiIpV4AddressAllocationType *string `json:"IscsiIpV4AddressAllocationType,omitempty"` IscsiIpV4Config NullableIppoolIpV4Config `json:"IscsiIpV4Config,omitempty"` // IP address associated to the vNIC. - IscsiIpv4Address *string `json:"IscsiIpv4Address,omitempty"` + IscsiIpv4Address *string `json:"IscsiIpv4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The MAC address that is assigned to the vNIC based on the MAC pool that has been assigned to the LAN Connectivity Policy. MacAddress *string `json:"MacAddress,omitempty"` // Type of allocation selected to assign a MAC address for the vnic. * `POOL` - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface. * `STATIC` - The user assigns a static mac/wwn address for the Virtual Interface. MacAddressType *string `json:"MacAddressType,omitempty"` // Name of the virtual ethernet interface. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]+$"` // The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two. Order *int64 `json:"Order,omitempty"` OverriddenList []string `json:"OverriddenList,omitempty"` // Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic. - PinGroupName *string `json:"PinGroupName,omitempty"` + PinGroupName *string `json:"PinGroupName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_.:-]{1,64}$"` Placement NullableVnicPlacementSettings `json:"Placement,omitempty"` SriovSettings NullableVnicSriovSettings `json:"SriovSettings,omitempty"` // The Standby VIF Id is applicable for failover enabled vNICS. It should be the same as the channel number of the standby vethernet created on switch in order to set up the standby data path. @@ -1632,18 +1632,18 @@ func (o *VnicEthIfInventory) UnmarshalJSON(data []byte) (err error) { IscsiIpV4AddressAllocationType *string `json:"IscsiIpV4AddressAllocationType,omitempty"` IscsiIpV4Config NullableIppoolIpV4Config `json:"IscsiIpV4Config,omitempty"` // IP address associated to the vNIC. - IscsiIpv4Address *string `json:"IscsiIpv4Address,omitempty"` + IscsiIpv4Address *string `json:"IscsiIpv4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The MAC address that is assigned to the vNIC based on the MAC pool that has been assigned to the LAN Connectivity Policy. MacAddress *string `json:"MacAddress,omitempty"` // Type of allocation selected to assign a MAC address for the vnic. * `POOL` - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface. * `STATIC` - The user assigns a static mac/wwn address for the Virtual Interface. MacAddressType *string `json:"MacAddressType,omitempty"` // Name of the virtual ethernet interface. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]+$"` // The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two. Order *int64 `json:"Order,omitempty"` OverriddenList []string `json:"OverriddenList,omitempty"` // Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic. - PinGroupName *string `json:"PinGroupName,omitempty"` + PinGroupName *string `json:"PinGroupName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_.:-]{1,64}$"` Placement NullableVnicPlacementSettings `json:"Placement,omitempty"` SriovSettings NullableVnicSriovSettings `json:"SriovSettings,omitempty"` // The Standby VIF Id is applicable for failover enabled vNICS. It should be the same as the channel number of the standby vethernet created on switch in order to set up the standby data path. diff --git a/intersight_gosdk/model_vnic_eth_if_inventory_list.go b/intersight_gosdk/model_vnic_eth_if_inventory_list.go index 63c866fe37..b38612cf7e 100644 --- a/intersight_gosdk/model_vnic_eth_if_inventory_list.go +++ b/intersight_gosdk/model_vnic_eth_if_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_if_inventory_relationship.go b/intersight_gosdk/model_vnic_eth_if_inventory_relationship.go index 6fbbb2d8b4..4550814608 100644 --- a/intersight_gosdk/model_vnic_eth_if_inventory_relationship.go +++ b/intersight_gosdk/model_vnic_eth_if_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_if_inventory_response.go b/intersight_gosdk/model_vnic_eth_if_inventory_response.go index 27c7c91920..f3f8b1e186 100644 --- a/intersight_gosdk/model_vnic_eth_if_inventory_response.go +++ b/intersight_gosdk/model_vnic_eth_if_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_if_list.go b/intersight_gosdk/model_vnic_eth_if_list.go index d7f00340b3..794ef79091 100644 --- a/intersight_gosdk/model_vnic_eth_if_list.go +++ b/intersight_gosdk/model_vnic_eth_if_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_if_relationship.go b/intersight_gosdk/model_vnic_eth_if_relationship.go index e77cc3ffce..dfdd5baaba 100644 --- a/intersight_gosdk/model_vnic_eth_if_relationship.go +++ b/intersight_gosdk/model_vnic_eth_if_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_if_response.go b/intersight_gosdk/model_vnic_eth_if_response.go index 29cc0a9514..14607b9085 100644 --- a/intersight_gosdk/model_vnic_eth_if_response.go +++ b/intersight_gosdk/model_vnic_eth_if_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_interrupt_settings.go b/intersight_gosdk/model_vnic_eth_interrupt_settings.go index c07b9434a7..cb9771c960 100644 --- a/intersight_gosdk/model_vnic_eth_interrupt_settings.go +++ b/intersight_gosdk/model_vnic_eth_interrupt_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_network_policy.go b/intersight_gosdk/model_vnic_eth_network_policy.go index 18a12e9bf2..efb2216061 100644 --- a/intersight_gosdk/model_vnic_eth_network_policy.go +++ b/intersight_gosdk/model_vnic_eth_network_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_network_policy_inventory.go b/intersight_gosdk/model_vnic_eth_network_policy_inventory.go index b6e73ca9c6..868cef1771 100644 --- a/intersight_gosdk/model_vnic_eth_network_policy_inventory.go +++ b/intersight_gosdk/model_vnic_eth_network_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_network_policy_inventory_list.go b/intersight_gosdk/model_vnic_eth_network_policy_inventory_list.go index 8ff929b6be..810c877096 100644 --- a/intersight_gosdk/model_vnic_eth_network_policy_inventory_list.go +++ b/intersight_gosdk/model_vnic_eth_network_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_network_policy_inventory_relationship.go b/intersight_gosdk/model_vnic_eth_network_policy_inventory_relationship.go index 78b95a93a8..0e6e430cda 100644 --- a/intersight_gosdk/model_vnic_eth_network_policy_inventory_relationship.go +++ b/intersight_gosdk/model_vnic_eth_network_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_network_policy_inventory_response.go b/intersight_gosdk/model_vnic_eth_network_policy_inventory_response.go index ef8d2d96f9..5df0cec894 100644 --- a/intersight_gosdk/model_vnic_eth_network_policy_inventory_response.go +++ b/intersight_gosdk/model_vnic_eth_network_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_network_policy_list.go b/intersight_gosdk/model_vnic_eth_network_policy_list.go index e828ecc418..1881fbad47 100644 --- a/intersight_gosdk/model_vnic_eth_network_policy_list.go +++ b/intersight_gosdk/model_vnic_eth_network_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_network_policy_relationship.go b/intersight_gosdk/model_vnic_eth_network_policy_relationship.go index 0db1483f7c..ec98f3e7cb 100644 --- a/intersight_gosdk/model_vnic_eth_network_policy_relationship.go +++ b/intersight_gosdk/model_vnic_eth_network_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_network_policy_response.go b/intersight_gosdk/model_vnic_eth_network_policy_response.go index 86908c950c..14614f908f 100644 --- a/intersight_gosdk/model_vnic_eth_network_policy_response.go +++ b/intersight_gosdk/model_vnic_eth_network_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_qos_policy.go b/intersight_gosdk/model_vnic_eth_qos_policy.go index 38091ae948..ad60e497d8 100644 --- a/intersight_gosdk/model_vnic_eth_qos_policy.go +++ b/intersight_gosdk/model_vnic_eth_qos_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_qos_policy_inventory.go b/intersight_gosdk/model_vnic_eth_qos_policy_inventory.go index c9e7fde4ae..2e888efd8a 100644 --- a/intersight_gosdk/model_vnic_eth_qos_policy_inventory.go +++ b/intersight_gosdk/model_vnic_eth_qos_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_qos_policy_inventory_list.go b/intersight_gosdk/model_vnic_eth_qos_policy_inventory_list.go index 0bb709504a..a6a5b5ee7d 100644 --- a/intersight_gosdk/model_vnic_eth_qos_policy_inventory_list.go +++ b/intersight_gosdk/model_vnic_eth_qos_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_qos_policy_inventory_relationship.go b/intersight_gosdk/model_vnic_eth_qos_policy_inventory_relationship.go index 57c6c45124..94d8a9a32a 100644 --- a/intersight_gosdk/model_vnic_eth_qos_policy_inventory_relationship.go +++ b/intersight_gosdk/model_vnic_eth_qos_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_qos_policy_inventory_response.go b/intersight_gosdk/model_vnic_eth_qos_policy_inventory_response.go index 23cb186fc9..4fefc7a361 100644 --- a/intersight_gosdk/model_vnic_eth_qos_policy_inventory_response.go +++ b/intersight_gosdk/model_vnic_eth_qos_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_qos_policy_list.go b/intersight_gosdk/model_vnic_eth_qos_policy_list.go index 65642f2ba0..d61bb2e1a9 100644 --- a/intersight_gosdk/model_vnic_eth_qos_policy_list.go +++ b/intersight_gosdk/model_vnic_eth_qos_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_qos_policy_relationship.go b/intersight_gosdk/model_vnic_eth_qos_policy_relationship.go index e510af3a04..76b4ef4df1 100644 --- a/intersight_gosdk/model_vnic_eth_qos_policy_relationship.go +++ b/intersight_gosdk/model_vnic_eth_qos_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_qos_policy_response.go b/intersight_gosdk/model_vnic_eth_qos_policy_response.go index c80bab7cfe..e6892f3b7f 100644 --- a/intersight_gosdk/model_vnic_eth_qos_policy_response.go +++ b/intersight_gosdk/model_vnic_eth_qos_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_rx_queue_settings.go b/intersight_gosdk/model_vnic_eth_rx_queue_settings.go index 0ea9b7cef6..4ecc1bef6b 100644 --- a/intersight_gosdk/model_vnic_eth_rx_queue_settings.go +++ b/intersight_gosdk/model_vnic_eth_rx_queue_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_tx_queue_settings.go b/intersight_gosdk/model_vnic_eth_tx_queue_settings.go index ecc75d579c..5c846a417b 100644 --- a/intersight_gosdk/model_vnic_eth_tx_queue_settings.go +++ b/intersight_gosdk/model_vnic_eth_tx_queue_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_veth_inventory.go b/intersight_gosdk/model_vnic_eth_veth_inventory.go index c05d9247ee..649b86a8a6 100644 --- a/intersight_gosdk/model_vnic_eth_veth_inventory.go +++ b/intersight_gosdk/model_vnic_eth_veth_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_veth_inventory_list.go b/intersight_gosdk/model_vnic_eth_veth_inventory_list.go index 726e10ca88..432b3d8627 100644 --- a/intersight_gosdk/model_vnic_eth_veth_inventory_list.go +++ b/intersight_gosdk/model_vnic_eth_veth_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_veth_inventory_response.go b/intersight_gosdk/model_vnic_eth_veth_inventory_response.go index e8ac3e6972..d89b3abb11 100644 --- a/intersight_gosdk/model_vnic_eth_veth_inventory_response.go +++ b/intersight_gosdk/model_vnic_eth_veth_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_vnic_inventory.go b/intersight_gosdk/model_vnic_eth_vnic_inventory.go index 1d4e2be2d7..42d11f2213 100644 --- a/intersight_gosdk/model_vnic_eth_vnic_inventory.go +++ b/intersight_gosdk/model_vnic_eth_vnic_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_vnic_inventory_list.go b/intersight_gosdk/model_vnic_eth_vnic_inventory_list.go index 2f5b5df025..b81f66a3fa 100644 --- a/intersight_gosdk/model_vnic_eth_vnic_inventory_list.go +++ b/intersight_gosdk/model_vnic_eth_vnic_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_vnic_inventory_response.go b/intersight_gosdk/model_vnic_eth_vnic_inventory_response.go index 80da3929b3..0c93e5030f 100644 --- a/intersight_gosdk/model_vnic_eth_vnic_inventory_response.go +++ b/intersight_gosdk/model_vnic_eth_vnic_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_adapter_policy.go b/intersight_gosdk/model_vnic_fc_adapter_policy.go index 433d63362d..75f2e9d3e0 100644 --- a/intersight_gosdk/model_vnic_fc_adapter_policy.go +++ b/intersight_gosdk/model_vnic_fc_adapter_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_adapter_policy_inventory.go b/intersight_gosdk/model_vnic_fc_adapter_policy_inventory.go index 4931b30a28..247b685fc4 100644 --- a/intersight_gosdk/model_vnic_fc_adapter_policy_inventory.go +++ b/intersight_gosdk/model_vnic_fc_adapter_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_adapter_policy_inventory_list.go b/intersight_gosdk/model_vnic_fc_adapter_policy_inventory_list.go index fea9a27d6b..bd04ae7a0d 100644 --- a/intersight_gosdk/model_vnic_fc_adapter_policy_inventory_list.go +++ b/intersight_gosdk/model_vnic_fc_adapter_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_adapter_policy_inventory_relationship.go b/intersight_gosdk/model_vnic_fc_adapter_policy_inventory_relationship.go index 834a56325d..866b478b16 100644 --- a/intersight_gosdk/model_vnic_fc_adapter_policy_inventory_relationship.go +++ b/intersight_gosdk/model_vnic_fc_adapter_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_adapter_policy_inventory_response.go b/intersight_gosdk/model_vnic_fc_adapter_policy_inventory_response.go index 22e999d29c..4177a111ab 100644 --- a/intersight_gosdk/model_vnic_fc_adapter_policy_inventory_response.go +++ b/intersight_gosdk/model_vnic_fc_adapter_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_adapter_policy_list.go b/intersight_gosdk/model_vnic_fc_adapter_policy_list.go index 1c92dbdbd3..73d15dfd98 100644 --- a/intersight_gosdk/model_vnic_fc_adapter_policy_list.go +++ b/intersight_gosdk/model_vnic_fc_adapter_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_adapter_policy_relationship.go b/intersight_gosdk/model_vnic_fc_adapter_policy_relationship.go index f272c395a2..20a8e9e131 100644 --- a/intersight_gosdk/model_vnic_fc_adapter_policy_relationship.go +++ b/intersight_gosdk/model_vnic_fc_adapter_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_adapter_policy_response.go b/intersight_gosdk/model_vnic_fc_adapter_policy_response.go index 69e8486927..874f39dfd1 100644 --- a/intersight_gosdk/model_vnic_fc_adapter_policy_response.go +++ b/intersight_gosdk/model_vnic_fc_adapter_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_error_recovery_settings.go b/intersight_gosdk/model_vnic_fc_error_recovery_settings.go index 627aeb56d0..06ee7e4874 100644 --- a/intersight_gosdk/model_vnic_fc_error_recovery_settings.go +++ b/intersight_gosdk/model_vnic_fc_error_recovery_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_if.go b/intersight_gosdk/model_vnic_fc_if.go index 24208c8973..ccf4924387 100644 --- a/intersight_gosdk/model_vnic_fc_if.go +++ b/intersight_gosdk/model_vnic_fc_if.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,13 +29,13 @@ type VnicFcIf struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of the virtual fibre channel interface. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\-\\\\._:]+$"` // The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two. Order *int64 `json:"Order,omitempty"` OverriddenList []string `json:"OverriddenList,omitempty"` Placement NullableVnicPlacementSettings `json:"Placement,omitempty"` // The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF. To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx. - StaticWwpnAddress *string `json:"StaticWwpnAddress,omitempty"` + StaticWwpnAddress *string `json:"StaticWwpnAddress,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` TemplateActions []MotemplateActionEntry `json:"TemplateActions,omitempty"` TemplateSyncErrors []MotemplateSyncError `json:"TemplateSyncErrors,omitempty"` // The sync status of the current MO wrt the attached Template MO. * `None` - The Enum value represents that the object is not attached to any template. * `OK` - The Enum value represents that the object values are in sync with attached template. * `Scheduled` - The Enum value represents that the object sync from attached template is scheduled from template. * `InProgress` - The Enum value represents that the object sync with the attached template is in progress. * `OutOfSync` - The Enum value represents that the object values are not in sync with attached template. @@ -43,7 +43,7 @@ type VnicFcIf struct { // This should be the same as the channel number of the vfc created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vfc is created on the switch for every vHBA. VifId *int64 `json:"VifId,omitempty"` // The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy. - Wwpn *string `json:"Wwpn,omitempty"` + Wwpn *string `json:"Wwpn,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` // Type of allocation selected to assign a WWPN address to the vhba. * `POOL` - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface. * `STATIC` - The user assigns a static mac/wwn address for the Virtual Interface. WwpnAddressType *string `json:"WwpnAddressType,omitempty"` Profile NullablePolicyAbstractConfigProfileRelationship `json:"Profile,omitempty"` @@ -892,13 +892,13 @@ func (o *VnicFcIf) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of the virtual fibre channel interface. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\-\\\\._:]+$"` // The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two. Order *int64 `json:"Order,omitempty"` OverriddenList []string `json:"OverriddenList,omitempty"` Placement NullableVnicPlacementSettings `json:"Placement,omitempty"` // The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF. To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx. - StaticWwpnAddress *string `json:"StaticWwpnAddress,omitempty"` + StaticWwpnAddress *string `json:"StaticWwpnAddress,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` TemplateActions []MotemplateActionEntry `json:"TemplateActions,omitempty"` TemplateSyncErrors []MotemplateSyncError `json:"TemplateSyncErrors,omitempty"` // The sync status of the current MO wrt the attached Template MO. * `None` - The Enum value represents that the object is not attached to any template. * `OK` - The Enum value represents that the object values are in sync with attached template. * `Scheduled` - The Enum value represents that the object sync from attached template is scheduled from template. * `InProgress` - The Enum value represents that the object sync with the attached template is in progress. * `OutOfSync` - The Enum value represents that the object values are not in sync with attached template. @@ -906,7 +906,7 @@ func (o *VnicFcIf) UnmarshalJSON(data []byte) (err error) { // This should be the same as the channel number of the vfc created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vfc is created on the switch for every vHBA. VifId *int64 `json:"VifId,omitempty"` // The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy. - Wwpn *string `json:"Wwpn,omitempty"` + Wwpn *string `json:"Wwpn,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` // Type of allocation selected to assign a WWPN address to the vhba. * `POOL` - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface. * `STATIC` - The user assigns a static mac/wwn address for the Virtual Interface. WwpnAddressType *string `json:"WwpnAddressType,omitempty"` Profile NullablePolicyAbstractConfigProfileRelationship `json:"Profile,omitempty"` diff --git a/intersight_gosdk/model_vnic_fc_if_inventory.go b/intersight_gosdk/model_vnic_fc_if_inventory.go index b74d547435..97ab5a9669 100644 --- a/intersight_gosdk/model_vnic_fc_if_inventory.go +++ b/intersight_gosdk/model_vnic_fc_if_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,17 +29,17 @@ type VnicFcIfInventory struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of the virtual fibre channel interface. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\-\\\\._:]+$"` // The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two. Order *int64 `json:"Order,omitempty"` OverriddenList []string `json:"OverriddenList,omitempty"` // Enables retention of LUN ID associations in memory until they are manually cleared. PersistentBindings *bool `json:"PersistentBindings,omitempty"` // Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic. - PinGroupName *string `json:"PinGroupName,omitempty"` + PinGroupName *string `json:"PinGroupName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_.:-]{1,64}$"` Placement NullableVnicPlacementSettings `json:"Placement,omitempty"` // The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF. To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx. - StaticWwpnAddress *string `json:"StaticWwpnAddress,omitempty"` + StaticWwpnAddress *string `json:"StaticWwpnAddress,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` TemplateActions []MotemplateActionEntry `json:"TemplateActions,omitempty"` TemplateSyncErrors []MotemplateSyncError `json:"TemplateSyncErrors,omitempty"` // The sync status of the current MO wrt the attached Template MO. * `None` - The Enum value represents that the object is not attached to any template. * `OK` - The Enum value represents that the object values are in sync with attached template. * `Scheduled` - The Enum value represents that the object sync from attached template is scheduled from template. * `InProgress` - The Enum value represents that the object sync with the attached template is in progress. * `OutOfSync` - The Enum value represents that the object values are not in sync with attached template. @@ -49,7 +49,7 @@ type VnicFcIfInventory struct { // This should be the same as the channel number of the vfc created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vfc is created on the switch for every vHBA. VifId *int64 `json:"VifId,omitempty"` // The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy. - Wwpn *string `json:"Wwpn,omitempty"` + Wwpn *string `json:"Wwpn,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` // Type of allocation selected to assign a WWPN address to the vhba. * `POOL` - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface. * `STATIC` - The user assigns a static mac/wwn address for the Virtual Interface. WwpnAddressType *string `json:"WwpnAddressType,omitempty"` FcAdapterPolicy NullableVnicFcAdapterPolicyInventoryRelationship `json:"FcAdapterPolicy,omitempty"` @@ -1176,17 +1176,17 @@ func (o *VnicFcIfInventory) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of the virtual fibre channel interface. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\-\\\\._:]+$"` // The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two. Order *int64 `json:"Order,omitempty"` OverriddenList []string `json:"OverriddenList,omitempty"` // Enables retention of LUN ID associations in memory until they are manually cleared. PersistentBindings *bool `json:"PersistentBindings,omitempty"` // Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic. - PinGroupName *string `json:"PinGroupName,omitempty"` + PinGroupName *string `json:"PinGroupName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_.:-]{1,64}$"` Placement NullableVnicPlacementSettings `json:"Placement,omitempty"` // The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF. To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx. - StaticWwpnAddress *string `json:"StaticWwpnAddress,omitempty"` + StaticWwpnAddress *string `json:"StaticWwpnAddress,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` TemplateActions []MotemplateActionEntry `json:"TemplateActions,omitempty"` TemplateSyncErrors []MotemplateSyncError `json:"TemplateSyncErrors,omitempty"` // The sync status of the current MO wrt the attached Template MO. * `None` - The Enum value represents that the object is not attached to any template. * `OK` - The Enum value represents that the object values are in sync with attached template. * `Scheduled` - The Enum value represents that the object sync from attached template is scheduled from template. * `InProgress` - The Enum value represents that the object sync with the attached template is in progress. * `OutOfSync` - The Enum value represents that the object values are not in sync with attached template. @@ -1196,7 +1196,7 @@ func (o *VnicFcIfInventory) UnmarshalJSON(data []byte) (err error) { // This should be the same as the channel number of the vfc created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vfc is created on the switch for every vHBA. VifId *int64 `json:"VifId,omitempty"` // The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy. - Wwpn *string `json:"Wwpn,omitempty"` + Wwpn *string `json:"Wwpn,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` // Type of allocation selected to assign a WWPN address to the vhba. * `POOL` - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface. * `STATIC` - The user assigns a static mac/wwn address for the Virtual Interface. WwpnAddressType *string `json:"WwpnAddressType,omitempty"` FcAdapterPolicy NullableVnicFcAdapterPolicyInventoryRelationship `json:"FcAdapterPolicy,omitempty"` diff --git a/intersight_gosdk/model_vnic_fc_if_inventory_list.go b/intersight_gosdk/model_vnic_fc_if_inventory_list.go index b3b5b87a9f..8bcd167077 100644 --- a/intersight_gosdk/model_vnic_fc_if_inventory_list.go +++ b/intersight_gosdk/model_vnic_fc_if_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_if_inventory_relationship.go b/intersight_gosdk/model_vnic_fc_if_inventory_relationship.go index 9bab4b87bc..8872e8f255 100644 --- a/intersight_gosdk/model_vnic_fc_if_inventory_relationship.go +++ b/intersight_gosdk/model_vnic_fc_if_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_if_inventory_response.go b/intersight_gosdk/model_vnic_fc_if_inventory_response.go index a9109893fc..2b1fa90bf4 100644 --- a/intersight_gosdk/model_vnic_fc_if_inventory_response.go +++ b/intersight_gosdk/model_vnic_fc_if_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_if_list.go b/intersight_gosdk/model_vnic_fc_if_list.go index ebc6a8df31..f78c640670 100644 --- a/intersight_gosdk/model_vnic_fc_if_list.go +++ b/intersight_gosdk/model_vnic_fc_if_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_if_relationship.go b/intersight_gosdk/model_vnic_fc_if_relationship.go index 082e99e405..4d65fdded0 100644 --- a/intersight_gosdk/model_vnic_fc_if_relationship.go +++ b/intersight_gosdk/model_vnic_fc_if_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_if_response.go b/intersight_gosdk/model_vnic_fc_if_response.go index 67e4e105cf..5dec8f0dad 100644 --- a/intersight_gosdk/model_vnic_fc_if_response.go +++ b/intersight_gosdk/model_vnic_fc_if_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_interrupt_settings.go b/intersight_gosdk/model_vnic_fc_interrupt_settings.go index 4add4817dc..6f25e3d12b 100644 --- a/intersight_gosdk/model_vnic_fc_interrupt_settings.go +++ b/intersight_gosdk/model_vnic_fc_interrupt_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_network_policy.go b/intersight_gosdk/model_vnic_fc_network_policy.go index 18d0daaf68..02cbff859d 100644 --- a/intersight_gosdk/model_vnic_fc_network_policy.go +++ b/intersight_gosdk/model_vnic_fc_network_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_network_policy_inventory.go b/intersight_gosdk/model_vnic_fc_network_policy_inventory.go index ca8bd963c2..43cb4b280c 100644 --- a/intersight_gosdk/model_vnic_fc_network_policy_inventory.go +++ b/intersight_gosdk/model_vnic_fc_network_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_network_policy_inventory_list.go b/intersight_gosdk/model_vnic_fc_network_policy_inventory_list.go index 94ed3fc481..a1bcde3772 100644 --- a/intersight_gosdk/model_vnic_fc_network_policy_inventory_list.go +++ b/intersight_gosdk/model_vnic_fc_network_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_network_policy_inventory_relationship.go b/intersight_gosdk/model_vnic_fc_network_policy_inventory_relationship.go index 5326c77623..98fd1ab1cb 100644 --- a/intersight_gosdk/model_vnic_fc_network_policy_inventory_relationship.go +++ b/intersight_gosdk/model_vnic_fc_network_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_network_policy_inventory_response.go b/intersight_gosdk/model_vnic_fc_network_policy_inventory_response.go index bedce00d85..bca49e452f 100644 --- a/intersight_gosdk/model_vnic_fc_network_policy_inventory_response.go +++ b/intersight_gosdk/model_vnic_fc_network_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_network_policy_list.go b/intersight_gosdk/model_vnic_fc_network_policy_list.go index 8b23a8ebb7..b908bbfcdf 100644 --- a/intersight_gosdk/model_vnic_fc_network_policy_list.go +++ b/intersight_gosdk/model_vnic_fc_network_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_network_policy_relationship.go b/intersight_gosdk/model_vnic_fc_network_policy_relationship.go index 521d0d6e1c..a6f6db2adc 100644 --- a/intersight_gosdk/model_vnic_fc_network_policy_relationship.go +++ b/intersight_gosdk/model_vnic_fc_network_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_network_policy_response.go b/intersight_gosdk/model_vnic_fc_network_policy_response.go index 9a5eb59174..016f41285d 100644 --- a/intersight_gosdk/model_vnic_fc_network_policy_response.go +++ b/intersight_gosdk/model_vnic_fc_network_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_qos_policy.go b/intersight_gosdk/model_vnic_fc_qos_policy.go index 58ac5b1a5c..ebeb57d65f 100644 --- a/intersight_gosdk/model_vnic_fc_qos_policy.go +++ b/intersight_gosdk/model_vnic_fc_qos_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_qos_policy_inventory.go b/intersight_gosdk/model_vnic_fc_qos_policy_inventory.go index a71b93d29c..67b7bab4b2 100644 --- a/intersight_gosdk/model_vnic_fc_qos_policy_inventory.go +++ b/intersight_gosdk/model_vnic_fc_qos_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_qos_policy_inventory_list.go b/intersight_gosdk/model_vnic_fc_qos_policy_inventory_list.go index c6760c9fde..5f1e97d0d9 100644 --- a/intersight_gosdk/model_vnic_fc_qos_policy_inventory_list.go +++ b/intersight_gosdk/model_vnic_fc_qos_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_qos_policy_inventory_relationship.go b/intersight_gosdk/model_vnic_fc_qos_policy_inventory_relationship.go index 352aaa2874..c5010eaf8e 100644 --- a/intersight_gosdk/model_vnic_fc_qos_policy_inventory_relationship.go +++ b/intersight_gosdk/model_vnic_fc_qos_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_qos_policy_inventory_response.go b/intersight_gosdk/model_vnic_fc_qos_policy_inventory_response.go index 71d23edb69..a376ba9102 100644 --- a/intersight_gosdk/model_vnic_fc_qos_policy_inventory_response.go +++ b/intersight_gosdk/model_vnic_fc_qos_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_qos_policy_list.go b/intersight_gosdk/model_vnic_fc_qos_policy_list.go index 3b01c38bc3..ee3a21775b 100644 --- a/intersight_gosdk/model_vnic_fc_qos_policy_list.go +++ b/intersight_gosdk/model_vnic_fc_qos_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_qos_policy_relationship.go b/intersight_gosdk/model_vnic_fc_qos_policy_relationship.go index 5bce3d94d2..f40da58a35 100644 --- a/intersight_gosdk/model_vnic_fc_qos_policy_relationship.go +++ b/intersight_gosdk/model_vnic_fc_qos_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_qos_policy_response.go b/intersight_gosdk/model_vnic_fc_qos_policy_response.go index 38006d4268..cd6500660d 100644 --- a/intersight_gosdk/model_vnic_fc_qos_policy_response.go +++ b/intersight_gosdk/model_vnic_fc_qos_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_queue_settings.go b/intersight_gosdk/model_vnic_fc_queue_settings.go index 96942f4270..9d29205267 100644 --- a/intersight_gosdk/model_vnic_fc_queue_settings.go +++ b/intersight_gosdk/model_vnic_fc_queue_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_veth_inventory.go b/intersight_gosdk/model_vnic_fc_veth_inventory.go index 27e2f7ccc2..534be35d8c 100644 --- a/intersight_gosdk/model_vnic_fc_veth_inventory.go +++ b/intersight_gosdk/model_vnic_fc_veth_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_veth_inventory_list.go b/intersight_gosdk/model_vnic_fc_veth_inventory_list.go index 5a30d7c26b..a10aa5a82f 100644 --- a/intersight_gosdk/model_vnic_fc_veth_inventory_list.go +++ b/intersight_gosdk/model_vnic_fc_veth_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_veth_inventory_response.go b/intersight_gosdk/model_vnic_fc_veth_inventory_response.go index 132422b834..3a099cf296 100644 --- a/intersight_gosdk/model_vnic_fc_veth_inventory_response.go +++ b/intersight_gosdk/model_vnic_fc_veth_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_vhba_policy_inventory.go b/intersight_gosdk/model_vnic_fc_vhba_policy_inventory.go index ca0c0b1a01..8f83ee4aef 100644 --- a/intersight_gosdk/model_vnic_fc_vhba_policy_inventory.go +++ b/intersight_gosdk/model_vnic_fc_vhba_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_vhba_policy_inventory_list.go b/intersight_gosdk/model_vnic_fc_vhba_policy_inventory_list.go index 4f77acf92e..1cb9941400 100644 --- a/intersight_gosdk/model_vnic_fc_vhba_policy_inventory_list.go +++ b/intersight_gosdk/model_vnic_fc_vhba_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_vhba_policy_inventory_response.go b/intersight_gosdk/model_vnic_fc_vhba_policy_inventory_response.go index 12c2701d02..5fa1a8b9be 100644 --- a/intersight_gosdk/model_vnic_fc_vhba_policy_inventory_response.go +++ b/intersight_gosdk/model_vnic_fc_vhba_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_flogi_settings.go b/intersight_gosdk/model_vnic_flogi_settings.go index 7ec3b5f2b4..b0b987b00d 100644 --- a/intersight_gosdk/model_vnic_flogi_settings.go +++ b/intersight_gosdk/model_vnic_flogi_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_iscsi_adapter_policy.go b/intersight_gosdk/model_vnic_iscsi_adapter_policy.go index d05e3ccdae..5096957d29 100644 --- a/intersight_gosdk/model_vnic_iscsi_adapter_policy.go +++ b/intersight_gosdk/model_vnic_iscsi_adapter_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory.go b/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory.go index 37ae3ddca4..684d16b4e8 100644 --- a/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory.go +++ b/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory_list.go b/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory_list.go index 37e5f82d08..528ec68621 100644 --- a/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory_list.go +++ b/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory_relationship.go b/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory_relationship.go index 7b665e6686..b4cfe79c41 100644 --- a/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory_relationship.go +++ b/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory_response.go b/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory_response.go index 139e38096e..d8d97186e8 100644 --- a/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory_response.go +++ b/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_iscsi_adapter_policy_list.go b/intersight_gosdk/model_vnic_iscsi_adapter_policy_list.go index 0194a2d638..ad703a154f 100644 --- a/intersight_gosdk/model_vnic_iscsi_adapter_policy_list.go +++ b/intersight_gosdk/model_vnic_iscsi_adapter_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_iscsi_adapter_policy_relationship.go b/intersight_gosdk/model_vnic_iscsi_adapter_policy_relationship.go index 6e3de57279..c0f83df336 100644 --- a/intersight_gosdk/model_vnic_iscsi_adapter_policy_relationship.go +++ b/intersight_gosdk/model_vnic_iscsi_adapter_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_iscsi_adapter_policy_response.go b/intersight_gosdk/model_vnic_iscsi_adapter_policy_response.go index e0d703ed35..ba9c6fd84e 100644 --- a/intersight_gosdk/model_vnic_iscsi_adapter_policy_response.go +++ b/intersight_gosdk/model_vnic_iscsi_adapter_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_iscsi_auth_profile.go b/intersight_gosdk/model_vnic_iscsi_auth_profile.go index e0a9ec399d..328bf48df9 100644 --- a/intersight_gosdk/model_vnic_iscsi_auth_profile.go +++ b/intersight_gosdk/model_vnic_iscsi_auth_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,9 +31,9 @@ type VnicIscsiAuthProfile struct { // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // Password of Initiator/Target Interface. Enter between 12 and 16 characters, including special characters except spaces, tabs, line breaks. - Password *string `json:"Password,omitempty"` + Password *string `json:"Password,omitempty" validate:"regexp=^$|^[\\\\S+]{12,16}$"` // User Id of Initiator/Target Interface. Enter between 1 and 128 characters, spaces, or special characters. - UserId *string `json:"UserId,omitempty"` + UserId *string `json:"UserId,omitempty" validate:"regexp=^$|^.{1,128}$"` AdditionalProperties map[string]interface{} } @@ -309,9 +309,9 @@ func (o *VnicIscsiAuthProfile) UnmarshalJSON(data []byte) (err error) { // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // Password of Initiator/Target Interface. Enter between 12 and 16 characters, including special characters except spaces, tabs, line breaks. - Password *string `json:"Password,omitempty"` + Password *string `json:"Password,omitempty" validate:"regexp=^$|^[\\\\S+]{12,16}$"` // User Id of Initiator/Target Interface. Enter between 1 and 128 characters, spaces, or special characters. - UserId *string `json:"UserId,omitempty"` + UserId *string `json:"UserId,omitempty" validate:"regexp=^$|^.{1,128}$"` } varVnicIscsiAuthProfileWithoutEmbeddedStruct := VnicIscsiAuthProfileWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_vnic_iscsi_boot_policy.go b/intersight_gosdk/model_vnic_iscsi_boot_policy.go index 81fa16e139..451d1c9db1 100644 --- a/intersight_gosdk/model_vnic_iscsi_boot_policy.go +++ b/intersight_gosdk/model_vnic_iscsi_boot_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -34,7 +34,7 @@ type VnicIscsiBootPolicy struct { // Source Type of Initiator IP Address - Auto/Static/Pool. * `DHCP` - The IP address is assigned using DHCP, if available. * `Static` - Static IPv4 address is assigned to the iSCSI boot interface based on the information entered in this area. * `Pool` - An IPv4 address is assigned to the iSCSI boot interface from the management IP address pool. InitiatorIpSource *string `json:"InitiatorIpSource,omitempty"` // Static IP address provided for iSCSI Initiator. - InitiatorStaticIpV4Address *string `json:"InitiatorStaticIpV4Address,omitempty"` + InitiatorStaticIpV4Address *string `json:"InitiatorStaticIpV4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` InitiatorStaticIpV4Config NullableIppoolIpV4Config `json:"InitiatorStaticIpV4Config,omitempty"` MutualChap NullableVnicIscsiAuthProfile `json:"MutualChap,omitempty"` // Source Type of Targets - Auto/Static. * `Static` - Type indicates that static target interface is assigned to iSCSI boot. * `Auto` - Type indicates that the system selects the target interface automatically during iSCSI boot. @@ -733,7 +733,7 @@ func (o *VnicIscsiBootPolicy) UnmarshalJSON(data []byte) (err error) { // Source Type of Initiator IP Address - Auto/Static/Pool. * `DHCP` - The IP address is assigned using DHCP, if available. * `Static` - Static IPv4 address is assigned to the iSCSI boot interface based on the information entered in this area. * `Pool` - An IPv4 address is assigned to the iSCSI boot interface from the management IP address pool. InitiatorIpSource *string `json:"InitiatorIpSource,omitempty"` // Static IP address provided for iSCSI Initiator. - InitiatorStaticIpV4Address *string `json:"InitiatorStaticIpV4Address,omitempty"` + InitiatorStaticIpV4Address *string `json:"InitiatorStaticIpV4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` InitiatorStaticIpV4Config NullableIppoolIpV4Config `json:"InitiatorStaticIpV4Config,omitempty"` MutualChap NullableVnicIscsiAuthProfile `json:"MutualChap,omitempty"` // Source Type of Targets - Auto/Static. * `Static` - Type indicates that static target interface is assigned to iSCSI boot. * `Auto` - Type indicates that the system selects the target interface automatically during iSCSI boot. diff --git a/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory.go b/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory.go index 3d8695691a..025670cf86 100644 --- a/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory.go +++ b/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -34,7 +34,7 @@ type VnicIscsiBootPolicyInventory struct { // Source Type of Initiator IP Address - Auto/Static/Pool. * `DHCP` - The IP address is assigned using DHCP, if available. * `Static` - Static IPv4 address is assigned to the iSCSI boot interface based on the information entered in this area. * `Pool` - An IPv4 address is assigned to the iSCSI boot interface from the management IP address pool. InitiatorIpSource *string `json:"InitiatorIpSource,omitempty"` // Static IP address provided for iSCSI Initiator. - InitiatorStaticIpV4Address *string `json:"InitiatorStaticIpV4Address,omitempty"` + InitiatorStaticIpV4Address *string `json:"InitiatorStaticIpV4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` InitiatorStaticIpV4Config NullableIppoolIpV4Config `json:"InitiatorStaticIpV4Config,omitempty"` MutualChap NullableVnicIscsiAuthProfile `json:"MutualChap,omitempty"` // Source Type of Targets - Auto/Static. * `Static` - Type indicates that static target interface is assigned to iSCSI boot. * `Auto` - Type indicates that the system selects the target interface automatically during iSCSI boot. @@ -725,7 +725,7 @@ func (o *VnicIscsiBootPolicyInventory) UnmarshalJSON(data []byte) (err error) { // Source Type of Initiator IP Address - Auto/Static/Pool. * `DHCP` - The IP address is assigned using DHCP, if available. * `Static` - Static IPv4 address is assigned to the iSCSI boot interface based on the information entered in this area. * `Pool` - An IPv4 address is assigned to the iSCSI boot interface from the management IP address pool. InitiatorIpSource *string `json:"InitiatorIpSource,omitempty"` // Static IP address provided for iSCSI Initiator. - InitiatorStaticIpV4Address *string `json:"InitiatorStaticIpV4Address,omitempty"` + InitiatorStaticIpV4Address *string `json:"InitiatorStaticIpV4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` InitiatorStaticIpV4Config NullableIppoolIpV4Config `json:"InitiatorStaticIpV4Config,omitempty"` MutualChap NullableVnicIscsiAuthProfile `json:"MutualChap,omitempty"` // Source Type of Targets - Auto/Static. * `Static` - Type indicates that static target interface is assigned to iSCSI boot. * `Auto` - Type indicates that the system selects the target interface automatically during iSCSI boot. diff --git a/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory_list.go b/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory_list.go index 26eec4c1b5..a3e8278a1d 100644 --- a/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory_list.go +++ b/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory_relationship.go b/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory_relationship.go index 33352e54ad..7e3c387fa9 100644 --- a/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory_relationship.go +++ b/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory_response.go b/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory_response.go index 08a04f418b..428de5d6be 100644 --- a/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory_response.go +++ b/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_iscsi_boot_policy_list.go b/intersight_gosdk/model_vnic_iscsi_boot_policy_list.go index 22f8b3692c..bb66478edb 100644 --- a/intersight_gosdk/model_vnic_iscsi_boot_policy_list.go +++ b/intersight_gosdk/model_vnic_iscsi_boot_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_iscsi_boot_policy_relationship.go b/intersight_gosdk/model_vnic_iscsi_boot_policy_relationship.go index fc6599acb5..e83759cf01 100644 --- a/intersight_gosdk/model_vnic_iscsi_boot_policy_relationship.go +++ b/intersight_gosdk/model_vnic_iscsi_boot_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_iscsi_boot_policy_response.go b/intersight_gosdk/model_vnic_iscsi_boot_policy_response.go index 40a7b0a40b..85d2a6cd9a 100644 --- a/intersight_gosdk/model_vnic_iscsi_boot_policy_response.go +++ b/intersight_gosdk/model_vnic_iscsi_boot_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_iscsi_static_target_policy.go b/intersight_gosdk/model_vnic_iscsi_static_target_policy.go index f0303c9e0f..aa711a701a 100644 --- a/intersight_gosdk/model_vnic_iscsi_static_target_policy.go +++ b/intersight_gosdk/model_vnic_iscsi_static_target_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,12 +29,12 @@ type VnicIscsiStaticTargetPolicy struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The IPv4 address assigned to the iSCSI target. - IpAddress *string `json:"IpAddress,omitempty"` + IpAddress *string `json:"IpAddress,omitempty" validate:"regexp=^$|^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$"` Lun NullableVnicLun `json:"Lun,omitempty"` // The port associated with the iSCSI target. Port *int64 `json:"Port,omitempty"` // Qualified Name (IQN) or Extended Unique Identifier (EUI) name of the iSCSI target. - TargetName *string `json:"TargetName,omitempty"` + TargetName *string `json:"TargetName,omitempty" validate:"regexp=^$|^(?:iqn\\\\.[0-9]{4}-[0-9]{2}(?:\\\\.[A-Za-z](?:[A-Za-z0-9\\\\-]*[A-Za-z0-9])?)+(?::.*)?|eui\\\\.[0-9A-Fa-f]{16})"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` AdditionalProperties map[string]interface{} } @@ -401,12 +401,12 @@ func (o *VnicIscsiStaticTargetPolicy) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The IPv4 address assigned to the iSCSI target. - IpAddress *string `json:"IpAddress,omitempty"` + IpAddress *string `json:"IpAddress,omitempty" validate:"regexp=^$|^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$"` Lun NullableVnicLun `json:"Lun,omitempty"` // The port associated with the iSCSI target. Port *int64 `json:"Port,omitempty"` // Qualified Name (IQN) or Extended Unique Identifier (EUI) name of the iSCSI target. - TargetName *string `json:"TargetName,omitempty"` + TargetName *string `json:"TargetName,omitempty" validate:"regexp=^$|^(?:iqn\\\\.[0-9]{4}-[0-9]{2}(?:\\\\.[A-Za-z](?:[A-Za-z0-9\\\\-]*[A-Za-z0-9])?)+(?::.*)?|eui\\\\.[0-9A-Fa-f]{16})"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` } diff --git a/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory.go b/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory.go index 52d385acb5..b81d765c6e 100644 --- a/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory.go +++ b/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,12 +29,12 @@ type VnicIscsiStaticTargetPolicyInventory struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The IPv4 address assigned to the iSCSI target. - IpAddress *string `json:"IpAddress,omitempty"` + IpAddress *string `json:"IpAddress,omitempty" validate:"regexp=^$|^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$"` Lun NullableVnicLun `json:"Lun,omitempty"` // The port associated with the iSCSI target. Port *int64 `json:"Port,omitempty"` // Qualified Name (IQN) or Extended Unique Identifier (EUI) name of the iSCSI target. - TargetName *string `json:"TargetName,omitempty"` + TargetName *string `json:"TargetName,omitempty" validate:"regexp=^$|^(?:iqn\\\\.[0-9]{4}-[0-9]{2}(?:\\\\.[A-Za-z](?:[A-Za-z0-9\\\\-]*[A-Za-z0-9])?)+(?::.*)?|eui\\\\.[0-9A-Fa-f]{16})"` TargetMo NullableMoBaseMoRelationship `json:"TargetMo,omitempty"` AdditionalProperties map[string]interface{} } @@ -401,12 +401,12 @@ func (o *VnicIscsiStaticTargetPolicyInventory) UnmarshalJSON(data []byte) (err e // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The IPv4 address assigned to the iSCSI target. - IpAddress *string `json:"IpAddress,omitempty"` + IpAddress *string `json:"IpAddress,omitempty" validate:"regexp=^$|^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$"` Lun NullableVnicLun `json:"Lun,omitempty"` // The port associated with the iSCSI target. Port *int64 `json:"Port,omitempty"` // Qualified Name (IQN) or Extended Unique Identifier (EUI) name of the iSCSI target. - TargetName *string `json:"TargetName,omitempty"` + TargetName *string `json:"TargetName,omitempty" validate:"regexp=^$|^(?:iqn\\\\.[0-9]{4}-[0-9]{2}(?:\\\\.[A-Za-z](?:[A-Za-z0-9\\\\-]*[A-Za-z0-9])?)+(?::.*)?|eui\\\\.[0-9A-Fa-f]{16})"` TargetMo NullableMoBaseMoRelationship `json:"TargetMo,omitempty"` } diff --git a/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory_list.go b/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory_list.go index a87f1edc7f..ef0989c9d5 100644 --- a/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory_list.go +++ b/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory_relationship.go b/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory_relationship.go index 6aee6a1d73..1908c41915 100644 --- a/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory_relationship.go +++ b/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory_response.go b/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory_response.go index 85a7aedd77..c444b5e799 100644 --- a/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory_response.go +++ b/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_iscsi_static_target_policy_list.go b/intersight_gosdk/model_vnic_iscsi_static_target_policy_list.go index bc3e9a09ef..354f0f0584 100644 --- a/intersight_gosdk/model_vnic_iscsi_static_target_policy_list.go +++ b/intersight_gosdk/model_vnic_iscsi_static_target_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_iscsi_static_target_policy_relationship.go b/intersight_gosdk/model_vnic_iscsi_static_target_policy_relationship.go index 1a578eed17..a80af912d5 100644 --- a/intersight_gosdk/model_vnic_iscsi_static_target_policy_relationship.go +++ b/intersight_gosdk/model_vnic_iscsi_static_target_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_iscsi_static_target_policy_response.go b/intersight_gosdk/model_vnic_iscsi_static_target_policy_response.go index 833ab01d31..b929824e72 100644 --- a/intersight_gosdk/model_vnic_iscsi_static_target_policy_response.go +++ b/intersight_gosdk/model_vnic_iscsi_static_target_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_lan_connectivity_policy.go b/intersight_gosdk/model_vnic_lan_connectivity_policy.go index 4f3773054a..714fd4a9cf 100644 --- a/intersight_gosdk/model_vnic_lan_connectivity_policy.go +++ b/intersight_gosdk/model_vnic_lan_connectivity_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type VnicLanConnectivityPolicy struct { // The mode used for placement of vNICs on network adapters. It can either be Auto or Custom. * `custom` - The placement of the vNICs / vHBAs on network adapters is manually chosen by the user. * `auto` - The placement of the vNICs / vHBAs on network adapters is automatically determined by the system. PlacementMode *string `json:"PlacementMode,omitempty"` // User provided static iSCSI Qualified Name (IQN) for use as initiator identifiers by iSCSI vNICs in a Fabric Interconnect domain. - StaticIqnName *string `json:"StaticIqnName,omitempty"` + StaticIqnName *string `json:"StaticIqnName,omitempty" validate:"regexp=^$|^(?:iqn\\\\.[0-9]{4}-[0-9]{2}(?:\\\\.[A-Za-z](?:[A-Za-z0-9\\\\-]*[A-Za-z0-9])?)+(?::.*)?|eui\\\\.[0-9A-Fa-f]{16})"` // The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight. * `Standalone` - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected. * `FIAttached` - Servers which are connected to a Fabric Interconnect that is managed by Intersight. // Deprecated TargetPlatform *string `json:"TargetPlatform,omitempty"` @@ -577,7 +577,7 @@ func (o *VnicLanConnectivityPolicy) UnmarshalJSON(data []byte) (err error) { // The mode used for placement of vNICs on network adapters. It can either be Auto or Custom. * `custom` - The placement of the vNICs / vHBAs on network adapters is manually chosen by the user. * `auto` - The placement of the vNICs / vHBAs on network adapters is automatically determined by the system. PlacementMode *string `json:"PlacementMode,omitempty"` // User provided static iSCSI Qualified Name (IQN) for use as initiator identifiers by iSCSI vNICs in a Fabric Interconnect domain. - StaticIqnName *string `json:"StaticIqnName,omitempty"` + StaticIqnName *string `json:"StaticIqnName,omitempty" validate:"regexp=^$|^(?:iqn\\\\.[0-9]{4}-[0-9]{2}(?:\\\\.[A-Za-z](?:[A-Za-z0-9\\\\-]*[A-Za-z0-9])?)+(?::.*)?|eui\\\\.[0-9A-Fa-f]{16})"` // The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight. * `Standalone` - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected. * `FIAttached` - Servers which are connected to a Fabric Interconnect that is managed by Intersight. // Deprecated TargetPlatform *string `json:"TargetPlatform,omitempty"` diff --git a/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory.go b/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory.go index 751474e5ef..d89bcac874 100644 --- a/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory.go +++ b/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type VnicLanConnectivityPolicyInventory struct { // The mode used for placement of vNICs on network adapters. It can either be Auto or Custom. * `custom` - The placement of the vNICs / vHBAs on network adapters is manually chosen by the user. * `auto` - The placement of the vNICs / vHBAs on network adapters is automatically determined by the system. PlacementMode *string `json:"PlacementMode,omitempty"` // User provided static iSCSI Qualified Name (IQN) for use as initiator identifiers by iSCSI vNICs in a Fabric Interconnect domain. - StaticIqnName *string `json:"StaticIqnName,omitempty"` + StaticIqnName *string `json:"StaticIqnName,omitempty" validate:"regexp=^$|^(?:iqn\\\\.[0-9]{4}-[0-9]{2}(?:\\\\.[A-Za-z](?:[A-Za-z0-9\\\\-]*[A-Za-z0-9])?)+(?::.*)?|eui\\\\.[0-9A-Fa-f]{16})"` // The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight. * `Standalone` - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected. * `FIAttached` - Servers which are connected to a Fabric Interconnect that is managed by Intersight. // Deprecated TargetPlatform *string `json:"TargetPlatform,omitempty"` @@ -523,7 +523,7 @@ func (o *VnicLanConnectivityPolicyInventory) UnmarshalJSON(data []byte) (err err // The mode used for placement of vNICs on network adapters. It can either be Auto or Custom. * `custom` - The placement of the vNICs / vHBAs on network adapters is manually chosen by the user. * `auto` - The placement of the vNICs / vHBAs on network adapters is automatically determined by the system. PlacementMode *string `json:"PlacementMode,omitempty"` // User provided static iSCSI Qualified Name (IQN) for use as initiator identifiers by iSCSI vNICs in a Fabric Interconnect domain. - StaticIqnName *string `json:"StaticIqnName,omitempty"` + StaticIqnName *string `json:"StaticIqnName,omitempty" validate:"regexp=^$|^(?:iqn\\\\.[0-9]{4}-[0-9]{2}(?:\\\\.[A-Za-z](?:[A-Za-z0-9\\\\-]*[A-Za-z0-9])?)+(?::.*)?|eui\\\\.[0-9A-Fa-f]{16})"` // The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight. * `Standalone` - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected. * `FIAttached` - Servers which are connected to a Fabric Interconnect that is managed by Intersight. // Deprecated TargetPlatform *string `json:"TargetPlatform,omitempty"` diff --git a/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory_list.go b/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory_list.go index 55ba73b75e..5c27e27388 100644 --- a/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory_list.go +++ b/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory_relationship.go b/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory_relationship.go index e8a6a7be61..b0163e42cc 100644 --- a/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory_relationship.go +++ b/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory_response.go b/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory_response.go index 1d263e605a..20929dfba6 100644 --- a/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory_response.go +++ b/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_lan_connectivity_policy_list.go b/intersight_gosdk/model_vnic_lan_connectivity_policy_list.go index dcbfc18ce3..09e5015792 100644 --- a/intersight_gosdk/model_vnic_lan_connectivity_policy_list.go +++ b/intersight_gosdk/model_vnic_lan_connectivity_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_lan_connectivity_policy_relationship.go b/intersight_gosdk/model_vnic_lan_connectivity_policy_relationship.go index 8ce1c08993..49037a37e9 100644 --- a/intersight_gosdk/model_vnic_lan_connectivity_policy_relationship.go +++ b/intersight_gosdk/model_vnic_lan_connectivity_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_lan_connectivity_policy_response.go b/intersight_gosdk/model_vnic_lan_connectivity_policy_response.go index 52ff0e69ba..7b237549db 100644 --- a/intersight_gosdk/model_vnic_lan_connectivity_policy_response.go +++ b/intersight_gosdk/model_vnic_lan_connectivity_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_lcp_status.go b/intersight_gosdk/model_vnic_lcp_status.go index 9dcc6320cf..23bf54984c 100644 --- a/intersight_gosdk/model_vnic_lcp_status.go +++ b/intersight_gosdk/model_vnic_lcp_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_lcp_status_list.go b/intersight_gosdk/model_vnic_lcp_status_list.go index 5cec6f785c..5381b118b5 100644 --- a/intersight_gosdk/model_vnic_lcp_status_list.go +++ b/intersight_gosdk/model_vnic_lcp_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_lcp_status_response.go b/intersight_gosdk/model_vnic_lcp_status_response.go index d34bed4cc9..b253435279 100644 --- a/intersight_gosdk/model_vnic_lcp_status_response.go +++ b/intersight_gosdk/model_vnic_lcp_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_lun.go b/intersight_gosdk/model_vnic_lun.go index ecf1ff8b58..219b67ddc4 100644 --- a/intersight_gosdk/model_vnic_lun.go +++ b/intersight_gosdk/model_vnic_lun.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_nvgre_settings.go b/intersight_gosdk/model_vnic_nvgre_settings.go index 2f5b37c2b0..ed9a4b1633 100644 --- a/intersight_gosdk/model_vnic_nvgre_settings.go +++ b/intersight_gosdk/model_vnic_nvgre_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_placement_settings.go b/intersight_gosdk/model_vnic_placement_settings.go index d6ae0950f1..083aa1ee84 100644 --- a/intersight_gosdk/model_vnic_placement_settings.go +++ b/intersight_gosdk/model_vnic_placement_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type VnicPlacementSettings struct { // Enable or disable automatic assignment of the VIC slot ID. If enabled and the server has only one VIC, the same VIC is chosen for all the vNICs. If enabled and the server has multiple VICs, the vNIC/vHBA are deployed on the first VIC. The Slot ID determines the first VIC. MLOM is the first Slot ID and the ID increments to 2, 3, and so on. AutoSlotId *bool `json:"AutoSlotId,omitempty"` // PCIe Slot where the VIC adapter is installed. Supported values are (1-15) and MLOM. - Id *string `json:"Id,omitempty"` + Id *string `json:"Id,omitempty" validate:"regexp=^$|^([1-9]|1[0-5]|MLOM)$"` // The PCI Link used as transport for the virtual interface. PCI Link is only applicable for select Cisco UCS VIC 1300 models (UCSC-PCIE-C40Q-03, UCSB-MLOM-40G-03, UCSB-VIC-M83-8P) that support two PCI links. The value, if specified, for any other VIC model will be ignored. PciLink *int64 `json:"PciLink,omitempty"` // If the autoPciLink is disabled, the user can either choose to place the vNICs manually or based on a policy.If the autoPciLink is enabled, it will be set to None. * `Custom` - The user needs to specify the PCI Link manually. * `Load-Balanced` - The system will uniformly distribute the interfaces across the PCI Links. * `None` - Assignment is not applicable and will be set when the AutoPciLink is set to true. @@ -479,7 +479,7 @@ func (o *VnicPlacementSettings) UnmarshalJSON(data []byte) (err error) { // Enable or disable automatic assignment of the VIC slot ID. If enabled and the server has only one VIC, the same VIC is chosen for all the vNICs. If enabled and the server has multiple VICs, the vNIC/vHBA are deployed on the first VIC. The Slot ID determines the first VIC. MLOM is the first Slot ID and the ID increments to 2, 3, and so on. AutoSlotId *bool `json:"AutoSlotId,omitempty"` // PCIe Slot where the VIC adapter is installed. Supported values are (1-15) and MLOM. - Id *string `json:"Id,omitempty"` + Id *string `json:"Id,omitempty" validate:"regexp=^$|^([1-9]|1[0-5]|MLOM)$"` // The PCI Link used as transport for the virtual interface. PCI Link is only applicable for select Cisco UCS VIC 1300 models (UCSC-PCIE-C40Q-03, UCSB-MLOM-40G-03, UCSB-VIC-M83-8P) that support two PCI links. The value, if specified, for any other VIC model will be ignored. PciLink *int64 `json:"PciLink,omitempty"` // If the autoPciLink is disabled, the user can either choose to place the vNICs manually or based on a policy.If the autoPciLink is enabled, it will be set to None. * `Custom` - The user needs to specify the PCI Link manually. * `Load-Balanced` - The system will uniformly distribute the interfaces across the PCI Links. * `None` - Assignment is not applicable and will be set when the AutoPciLink is set to true. diff --git a/intersight_gosdk/model_vnic_plogi_settings.go b/intersight_gosdk/model_vnic_plogi_settings.go index 7061a7eeaa..4ce72c9e8c 100644 --- a/intersight_gosdk/model_vnic_plogi_settings.go +++ b/intersight_gosdk/model_vnic_plogi_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_ptp_settings.go b/intersight_gosdk/model_vnic_ptp_settings.go index 627284c5c6..0ed8dd1a23 100644 --- a/intersight_gosdk/model_vnic_ptp_settings.go +++ b/intersight_gosdk/model_vnic_ptp_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_roce_settings.go b/intersight_gosdk/model_vnic_roce_settings.go index 895ca6e7a1..075b8f6b70 100644 --- a/intersight_gosdk/model_vnic_roce_settings.go +++ b/intersight_gosdk/model_vnic_roce_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_rss_hash_settings.go b/intersight_gosdk/model_vnic_rss_hash_settings.go index 5a45369735..2e34eee577 100644 --- a/intersight_gosdk/model_vnic_rss_hash_settings.go +++ b/intersight_gosdk/model_vnic_rss_hash_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_san_connectivity_policy.go b/intersight_gosdk/model_vnic_san_connectivity_policy.go index 592d729253..7ec886daac 100644 --- a/intersight_gosdk/model_vnic_san_connectivity_policy.go +++ b/intersight_gosdk/model_vnic_san_connectivity_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type VnicSanConnectivityPolicy struct { // The mode used for placement of vNICs on network adapters. It can either be Auto or Custom. * `custom` - The placement of the vNICs / vHBAs on network adapters is manually chosen by the user. * `auto` - The placement of the vNICs / vHBAs on network adapters is automatically determined by the system. PlacementMode *string `json:"PlacementMode,omitempty"` // The WWNN address for the server node must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF. To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx. - StaticWwnnAddress *string `json:"StaticWwnnAddress,omitempty"` + StaticWwnnAddress *string `json:"StaticWwnnAddress,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` // The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight. * `Standalone` - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected. * `FIAttached` - Servers which are connected to a Fabric Interconnect that is managed by Intersight. TargetPlatform *string `json:"TargetPlatform,omitempty"` // Type of allocation selected to assign a WWNN address for the server node. * `POOL` - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface. * `STATIC` - The user assigns a static mac/wwn address for the Virtual Interface. @@ -528,7 +528,7 @@ func (o *VnicSanConnectivityPolicy) UnmarshalJSON(data []byte) (err error) { // The mode used for placement of vNICs on network adapters. It can either be Auto or Custom. * `custom` - The placement of the vNICs / vHBAs on network adapters is manually chosen by the user. * `auto` - The placement of the vNICs / vHBAs on network adapters is automatically determined by the system. PlacementMode *string `json:"PlacementMode,omitempty"` // The WWNN address for the server node must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF. To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx. - StaticWwnnAddress *string `json:"StaticWwnnAddress,omitempty"` + StaticWwnnAddress *string `json:"StaticWwnnAddress,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` // The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight. * `Standalone` - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected. * `FIAttached` - Servers which are connected to a Fabric Interconnect that is managed by Intersight. TargetPlatform *string `json:"TargetPlatform,omitempty"` // Type of allocation selected to assign a WWNN address for the server node. * `POOL` - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface. * `STATIC` - The user assigns a static mac/wwn address for the Virtual Interface. diff --git a/intersight_gosdk/model_vnic_san_connectivity_policy_inventory.go b/intersight_gosdk/model_vnic_san_connectivity_policy_inventory.go index 2de0236608..1cae337664 100644 --- a/intersight_gosdk/model_vnic_san_connectivity_policy_inventory.go +++ b/intersight_gosdk/model_vnic_san_connectivity_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type VnicSanConnectivityPolicyInventory struct { // The mode used for placement of vNICs on network adapters. It can either be Auto or Custom. * `custom` - The placement of the vNICs / vHBAs on network adapters is manually chosen by the user. * `auto` - The placement of the vNICs / vHBAs on network adapters is automatically determined by the system. PlacementMode *string `json:"PlacementMode,omitempty"` // The WWNN address for the server node must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF. To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx. - StaticWwnnAddress *string `json:"StaticWwnnAddress,omitempty"` + StaticWwnnAddress *string `json:"StaticWwnnAddress,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` // The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight. * `Standalone` - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected. * `FIAttached` - Servers which are connected to a Fabric Interconnect that is managed by Intersight. TargetPlatform *string `json:"TargetPlatform,omitempty"` // Type of allocation selected to assign a WWNN address for the server node. * `POOL` - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface. * `STATIC` - The user assigns a static mac/wwn address for the Virtual Interface. @@ -478,7 +478,7 @@ func (o *VnicSanConnectivityPolicyInventory) UnmarshalJSON(data []byte) (err err // The mode used for placement of vNICs on network adapters. It can either be Auto or Custom. * `custom` - The placement of the vNICs / vHBAs on network adapters is manually chosen by the user. * `auto` - The placement of the vNICs / vHBAs on network adapters is automatically determined by the system. PlacementMode *string `json:"PlacementMode,omitempty"` // The WWNN address for the server node must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF. To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx. - StaticWwnnAddress *string `json:"StaticWwnnAddress,omitempty"` + StaticWwnnAddress *string `json:"StaticWwnnAddress,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` // The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight. * `Standalone` - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected. * `FIAttached` - Servers which are connected to a Fabric Interconnect that is managed by Intersight. TargetPlatform *string `json:"TargetPlatform,omitempty"` // Type of allocation selected to assign a WWNN address for the server node. * `POOL` - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface. * `STATIC` - The user assigns a static mac/wwn address for the Virtual Interface. diff --git a/intersight_gosdk/model_vnic_san_connectivity_policy_inventory_list.go b/intersight_gosdk/model_vnic_san_connectivity_policy_inventory_list.go index d1f56df94a..d6ebfe8a3e 100644 --- a/intersight_gosdk/model_vnic_san_connectivity_policy_inventory_list.go +++ b/intersight_gosdk/model_vnic_san_connectivity_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_san_connectivity_policy_inventory_relationship.go b/intersight_gosdk/model_vnic_san_connectivity_policy_inventory_relationship.go index b68450301a..2d283dcb5d 100644 --- a/intersight_gosdk/model_vnic_san_connectivity_policy_inventory_relationship.go +++ b/intersight_gosdk/model_vnic_san_connectivity_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_san_connectivity_policy_inventory_response.go b/intersight_gosdk/model_vnic_san_connectivity_policy_inventory_response.go index 33585e7101..9f96bf0f97 100644 --- a/intersight_gosdk/model_vnic_san_connectivity_policy_inventory_response.go +++ b/intersight_gosdk/model_vnic_san_connectivity_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_san_connectivity_policy_list.go b/intersight_gosdk/model_vnic_san_connectivity_policy_list.go index 310a50a525..d4cd5fe174 100644 --- a/intersight_gosdk/model_vnic_san_connectivity_policy_list.go +++ b/intersight_gosdk/model_vnic_san_connectivity_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_san_connectivity_policy_relationship.go b/intersight_gosdk/model_vnic_san_connectivity_policy_relationship.go index b5bfc7dc7d..327e26a499 100644 --- a/intersight_gosdk/model_vnic_san_connectivity_policy_relationship.go +++ b/intersight_gosdk/model_vnic_san_connectivity_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_san_connectivity_policy_response.go b/intersight_gosdk/model_vnic_san_connectivity_policy_response.go index f8e269c217..34c89a86cb 100644 --- a/intersight_gosdk/model_vnic_san_connectivity_policy_response.go +++ b/intersight_gosdk/model_vnic_san_connectivity_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_scp_status.go b/intersight_gosdk/model_vnic_scp_status.go index a799b9c5dc..865cc87e9e 100644 --- a/intersight_gosdk/model_vnic_scp_status.go +++ b/intersight_gosdk/model_vnic_scp_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_scp_status_list.go b/intersight_gosdk/model_vnic_scp_status_list.go index e574b75a94..ebce6dc694 100644 --- a/intersight_gosdk/model_vnic_scp_status_list.go +++ b/intersight_gosdk/model_vnic_scp_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_scp_status_response.go b/intersight_gosdk/model_vnic_scp_status_response.go index a8e40306c0..24a6968371 100644 --- a/intersight_gosdk/model_vnic_scp_status_response.go +++ b/intersight_gosdk/model_vnic_scp_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_scsi_queue_settings.go b/intersight_gosdk/model_vnic_scsi_queue_settings.go index 37c25f8ff5..836c1bd6f1 100644 --- a/intersight_gosdk/model_vnic_scsi_queue_settings.go +++ b/intersight_gosdk/model_vnic_scsi_queue_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_sriov_settings.go b/intersight_gosdk/model_vnic_sriov_settings.go index fa5acc95b7..8aaba10afa 100644 --- a/intersight_gosdk/model_vnic_sriov_settings.go +++ b/intersight_gosdk/model_vnic_sriov_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_tcp_offload_settings.go b/intersight_gosdk/model_vnic_tcp_offload_settings.go index a32713a7dd..1deef4a4fb 100644 --- a/intersight_gosdk/model_vnic_tcp_offload_settings.go +++ b/intersight_gosdk/model_vnic_tcp_offload_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_usnic_settings.go b/intersight_gosdk/model_vnic_usnic_settings.go index c57cac32f3..463ca8d2de 100644 --- a/intersight_gosdk/model_vnic_usnic_settings.go +++ b/intersight_gosdk/model_vnic_usnic_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_vhba_template.go b/intersight_gosdk/model_vnic_vhba_template.go index 1aa3862f11..7c7ca817da 100644 --- a/intersight_gosdk/model_vnic_vhba_template.go +++ b/intersight_gosdk/model_vnic_vhba_template.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type VnicVhbaTemplate struct { // When enabled, the configuration of the derived instances may override the template configuration. EnableOverride *bool `json:"EnableOverride,omitempty"` // Name of the virtual fibre channel interface. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]+$"` // Name of the peer vHBA which belongs to the peer FI. PeerVhbaName *string `json:"PeerVhbaName,omitempty"` // The count of the San Connectivity Policies using vHBA template. @@ -549,7 +549,7 @@ func (o *VnicVhbaTemplate) UnmarshalJSON(data []byte) (err error) { // When enabled, the configuration of the derived instances may override the template configuration. EnableOverride *bool `json:"EnableOverride,omitempty"` // Name of the virtual fibre channel interface. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]+$"` // Name of the peer vHBA which belongs to the peer FI. PeerVhbaName *string `json:"PeerVhbaName,omitempty"` // The count of the San Connectivity Policies using vHBA template. diff --git a/intersight_gosdk/model_vnic_vhba_template_list.go b/intersight_gosdk/model_vnic_vhba_template_list.go index 3cc77e5513..476b899a6a 100644 --- a/intersight_gosdk/model_vnic_vhba_template_list.go +++ b/intersight_gosdk/model_vnic_vhba_template_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_vhba_template_relationship.go b/intersight_gosdk/model_vnic_vhba_template_relationship.go index 6b70a2cd66..dd87450b30 100644 --- a/intersight_gosdk/model_vnic_vhba_template_relationship.go +++ b/intersight_gosdk/model_vnic_vhba_template_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_vhba_template_response.go b/intersight_gosdk/model_vnic_vhba_template_response.go index ed363fb096..d5de774b19 100644 --- a/intersight_gosdk/model_vnic_vhba_template_response.go +++ b/intersight_gosdk/model_vnic_vhba_template_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_vif_status.go b/intersight_gosdk/model_vnic_vif_status.go index d5848aa320..1d4bae458b 100644 --- a/intersight_gosdk/model_vnic_vif_status.go +++ b/intersight_gosdk/model_vnic_vif_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_vlan_settings.go b/intersight_gosdk/model_vnic_vlan_settings.go index 103d0c0d21..c64e7c019c 100644 --- a/intersight_gosdk/model_vnic_vlan_settings.go +++ b/intersight_gosdk/model_vnic_vlan_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type VnicVlanSettings struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Allowed VLAN IDs of the virtual interface. - AllowedVlans *string `json:"AllowedVlans,omitempty"` + AllowedVlans *string `json:"AllowedVlans,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // Native VLAN ID of the virtual interface or the corresponding vethernet on the peer Fabric Interconnect to which the virtual interface is connected. Setting the ID to 0 will not associate any native VLAN to the traffic on the virtual interface. DefaultVlan *int64 `json:"DefaultVlan,omitempty"` // Option to determine if the port can carry single VLAN (Access) or multiple VLANs (Trunk) traffic. * `ACCESS` - An access port carries traffic only for a single VLAN on the interface. * `TRUNK` - A trunk port can have two or more VLANs configured on the interface. It can carry traffic for several VLANs simultaneously. @@ -397,7 +397,7 @@ func (o *VnicVlanSettings) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Allowed VLAN IDs of the virtual interface. - AllowedVlans *string `json:"AllowedVlans,omitempty"` + AllowedVlans *string `json:"AllowedVlans,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // Native VLAN ID of the virtual interface or the corresponding vethernet on the peer Fabric Interconnect to which the virtual interface is connected. Setting the ID to 0 will not associate any native VLAN to the traffic on the virtual interface. DefaultVlan *int64 `json:"DefaultVlan,omitempty"` // Option to determine if the port can carry single VLAN (Access) or multiple VLANs (Trunk) traffic. * `ACCESS` - An access port carries traffic only for a single VLAN on the interface. * `TRUNK` - A trunk port can have two or more VLANs configured on the interface. It can carry traffic for several VLANs simultaneously. diff --git a/intersight_gosdk/model_vnic_vmq_settings.go b/intersight_gosdk/model_vnic_vmq_settings.go index 4b0b07ca02..762f72949f 100644 --- a/intersight_gosdk/model_vnic_vmq_settings.go +++ b/intersight_gosdk/model_vnic_vmq_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_vnic_template.go b/intersight_gosdk/model_vnic_vnic_template.go index 7937b311c2..3c2980cf54 100644 --- a/intersight_gosdk/model_vnic_vnic_template.go +++ b/intersight_gosdk/model_vnic_vnic_template.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type VnicVnicTemplate struct { // The count of the Lan Connectivity Policies using vNIC template. LcpUsageCount *int64 `json:"LcpUsageCount,omitempty"` // Name of the virtual ethernet interface. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]+$"` // Name of the peer vNIC which belongs to the peer FI. PeerVnicName *string `json:"PeerVnicName,omitempty"` // The fabric port to which the vNICs will be associated. * `None` - Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used. * `A` - Fabric A of the FI cluster. * `B` - Fabric B of the FI cluster. @@ -551,7 +551,7 @@ func (o *VnicVnicTemplate) UnmarshalJSON(data []byte) (err error) { // The count of the Lan Connectivity Policies using vNIC template. LcpUsageCount *int64 `json:"LcpUsageCount,omitempty"` // Name of the virtual ethernet interface. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]+$"` // Name of the peer vNIC which belongs to the peer FI. PeerVnicName *string `json:"PeerVnicName,omitempty"` // The fabric port to which the vNICs will be associated. * `None` - Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used. * `A` - Fabric A of the FI cluster. * `B` - Fabric B of the FI cluster. diff --git a/intersight_gosdk/model_vnic_vnic_template_list.go b/intersight_gosdk/model_vnic_vnic_template_list.go index 68b19ef7e9..9c17c662ef 100644 --- a/intersight_gosdk/model_vnic_vnic_template_list.go +++ b/intersight_gosdk/model_vnic_vnic_template_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_vnic_template_relationship.go b/intersight_gosdk/model_vnic_vnic_template_relationship.go index 76deb5593d..bc9f03c12d 100644 --- a/intersight_gosdk/model_vnic_vnic_template_relationship.go +++ b/intersight_gosdk/model_vnic_vnic_template_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_vnic_template_response.go b/intersight_gosdk/model_vnic_vnic_template_response.go index 66dacd25de..f54a7d30fe 100644 --- a/intersight_gosdk/model_vnic_vnic_template_response.go +++ b/intersight_gosdk/model_vnic_vnic_template_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_vsan_settings.go b/intersight_gosdk/model_vnic_vsan_settings.go index e1dc04b1fa..53d04b0c91 100644 --- a/intersight_gosdk/model_vnic_vsan_settings.go +++ b/intersight_gosdk/model_vnic_vsan_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_vxlan_settings.go b/intersight_gosdk/model_vnic_vxlan_settings.go index f1b05e2e17..51e594d324 100644 --- a/intersight_gosdk/model_vnic_vxlan_settings.go +++ b/intersight_gosdk/model_vnic_vxlan_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vrf_vrf.go b/intersight_gosdk/model_vrf_vrf.go index 4fd59edcac..2a428048dc 100644 --- a/intersight_gosdk/model_vrf_vrf.go +++ b/intersight_gosdk/model_vrf_vrf.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vrf_vrf_list.go b/intersight_gosdk/model_vrf_vrf_list.go index 27021d45a8..14042a5593 100644 --- a/intersight_gosdk/model_vrf_vrf_list.go +++ b/intersight_gosdk/model_vrf_vrf_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vrf_vrf_relationship.go b/intersight_gosdk/model_vrf_vrf_relationship.go index 5c98667946..ca7bb7a0ce 100644 --- a/intersight_gosdk/model_vrf_vrf_relationship.go +++ b/intersight_gosdk/model_vrf_vrf_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vrf_vrf_response.go b/intersight_gosdk/model_vrf_vrf_response.go index c61fabdd50..b31da88ed4 100644 --- a/intersight_gosdk/model_vrf_vrf_response.go +++ b/intersight_gosdk/model_vrf_vrf_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_abstract_loop_task.go b/intersight_gosdk/model_workflow_abstract_loop_task.go index 05602c6c3c..7e40fb40a3 100644 --- a/intersight_gosdk/model_workflow_abstract_loop_task.go +++ b/intersight_gosdk/model_workflow_abstract_loop_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_abstract_resource_selector.go b/intersight_gosdk/model_workflow_abstract_resource_selector.go index ad949a87dc..fb47578c4a 100644 --- a/intersight_gosdk/model_workflow_abstract_resource_selector.go +++ b/intersight_gosdk/model_workflow_abstract_resource_selector.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_abstract_worker_task.go b/intersight_gosdk/model_workflow_abstract_worker_task.go index 935cc2b1ef..19ba78aefe 100644 --- a/intersight_gosdk/model_workflow_abstract_worker_task.go +++ b/intersight_gosdk/model_workflow_abstract_worker_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_ansible_batch_executor.go b/intersight_gosdk/model_workflow_ansible_batch_executor.go index bbcc1a5d1f..c2b756c5a4 100644 --- a/intersight_gosdk/model_workflow_ansible_batch_executor.go +++ b/intersight_gosdk/model_workflow_ansible_batch_executor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_ansible_batch_executor_list.go b/intersight_gosdk/model_workflow_ansible_batch_executor_list.go index 4bc57bdb18..43203fc539 100644 --- a/intersight_gosdk/model_workflow_ansible_batch_executor_list.go +++ b/intersight_gosdk/model_workflow_ansible_batch_executor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_ansible_batch_executor_response.go b/intersight_gosdk/model_workflow_ansible_batch_executor_response.go index fd7127c275..f668a8aa50 100644 --- a/intersight_gosdk/model_workflow_ansible_batch_executor_response.go +++ b/intersight_gosdk/model_workflow_ansible_batch_executor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_ansible_play_session.go b/intersight_gosdk/model_workflow_ansible_play_session.go index fe1b8d2565..a4275f3335 100644 --- a/intersight_gosdk/model_workflow_ansible_play_session.go +++ b/intersight_gosdk/model_workflow_ansible_play_session.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_api.go b/intersight_gosdk/model_workflow_api.go index 958f92a883..e8cc072760 100644 --- a/intersight_gosdk/model_workflow_api.go +++ b/intersight_gosdk/model_workflow_api.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_array_data_type.go b/intersight_gosdk/model_workflow_array_data_type.go index 6de5b1c7cd..7f20ed8a03 100644 --- a/intersight_gosdk/model_workflow_array_data_type.go +++ b/intersight_gosdk/model_workflow_array_data_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_array_item.go b/intersight_gosdk/model_workflow_array_item.go index 3d4b88185c..7033502954 100644 --- a/intersight_gosdk/model_workflow_array_item.go +++ b/intersight_gosdk/model_workflow_array_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_associated_roles.go b/intersight_gosdk/model_workflow_associated_roles.go index f8f15580ab..bf4d14bedc 100644 --- a/intersight_gosdk/model_workflow_associated_roles.go +++ b/intersight_gosdk/model_workflow_associated_roles.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_base_data_type.go b/intersight_gosdk/model_workflow_base_data_type.go index c78334c137..449fca86c7 100644 --- a/intersight_gosdk/model_workflow_base_data_type.go +++ b/intersight_gosdk/model_workflow_base_data_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,9 +35,9 @@ type WorkflowBaseDataType struct { // JSON formatted mapping from other property of the definition to the current property. Input parameter mapping is supported only for custom data type property in workflow definition and custom data type definition. The format to specify mapping ina workflow definition when source property is of scalar types is '${workflow.input.property}'. The format to specify mapping when the source property is of object reference and mapping needs to be made to the property of the object is '${workflow.input.property.subproperty}'. The format to specify mapping in a custom data type definition is '${datatype.type.property}'. When the current property is of non-scalar type like composite custom data type, then mapping can be provided to the individual property of the custom data type like 'cdt_property:${workflow.input.property}'. InputParameters interface{} `json:"InputParameters,omitempty"` // Descriptive label for the data type. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), space ( ), forward slash (/) or an underscore (_). The first and last character in label must be an alphanumeric character. - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_'.:\\/-]{1,92}$"` // Descriptive name for the data type. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_). The first and last character in name must be an alphanumeric character. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+([a-zA-Z0-9-_]*[a-zA-Z0-9])*$"` // Specifies whether this parameter is required. The field is applicable for task and workflow. Required *bool `json:"Required,omitempty"` AdditionalProperties map[string]interface{} @@ -459,9 +459,9 @@ func (o *WorkflowBaseDataType) UnmarshalJSON(data []byte) (err error) { // JSON formatted mapping from other property of the definition to the current property. Input parameter mapping is supported only for custom data type property in workflow definition and custom data type definition. The format to specify mapping ina workflow definition when source property is of scalar types is '${workflow.input.property}'. The format to specify mapping when the source property is of object reference and mapping needs to be made to the property of the object is '${workflow.input.property.subproperty}'. The format to specify mapping in a custom data type definition is '${datatype.type.property}'. When the current property is of non-scalar type like composite custom data type, then mapping can be provided to the individual property of the custom data type like 'cdt_property:${workflow.input.property}'. InputParameters interface{} `json:"InputParameters,omitempty"` // Descriptive label for the data type. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), space ( ), forward slash (/) or an underscore (_). The first and last character in label must be an alphanumeric character. - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_'.:\\/-]{1,92}$"` // Descriptive name for the data type. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_). The first and last character in name must be an alphanumeric character. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+([a-zA-Z0-9-_]*[a-zA-Z0-9])*$"` // Specifies whether this parameter is required. The field is applicable for task and workflow. Required *bool `json:"Required,omitempty"` } diff --git a/intersight_gosdk/model_workflow_base_operation.go b/intersight_gosdk/model_workflow_base_operation.go index fb8ccffe67..ab462a44a2 100644 --- a/intersight_gosdk/model_workflow_base_operation.go +++ b/intersight_gosdk/model_workflow_base_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_batch_api_executor.go b/intersight_gosdk/model_workflow_batch_api_executor.go index ec26882075..6380b4dab2 100644 --- a/intersight_gosdk/model_workflow_batch_api_executor.go +++ b/intersight_gosdk/model_workflow_batch_api_executor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_batch_api_executor_list.go b/intersight_gosdk/model_workflow_batch_api_executor_list.go index b50656aa33..c4f8a6fc4e 100644 --- a/intersight_gosdk/model_workflow_batch_api_executor_list.go +++ b/intersight_gosdk/model_workflow_batch_api_executor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_batch_api_executor_response.go b/intersight_gosdk/model_workflow_batch_api_executor_response.go index e31c4ff777..7e752b4d77 100644 --- a/intersight_gosdk/model_workflow_batch_api_executor_response.go +++ b/intersight_gosdk/model_workflow_batch_api_executor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_batch_executor.go b/intersight_gosdk/model_workflow_batch_executor.go index 7ee95d0dcd..0ca403afc4 100644 --- a/intersight_gosdk/model_workflow_batch_executor.go +++ b/intersight_gosdk/model_workflow_batch_executor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_cancelable_type.go b/intersight_gosdk/model_workflow_cancelable_type.go index 327e680a20..c1931b8946 100644 --- a/intersight_gosdk/model_workflow_cancelable_type.go +++ b/intersight_gosdk/model_workflow_cancelable_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_catalog.go b/intersight_gosdk/model_workflow_catalog.go index 7d774ecda8..8b4d1ecd98 100644 --- a/intersight_gosdk/model_workflow_catalog.go +++ b/intersight_gosdk/model_workflow_catalog.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_catalog_item_definition.go b/intersight_gosdk/model_workflow_catalog_item_definition.go index e169c06c28..46f25507b1 100644 --- a/intersight_gosdk/model_workflow_catalog_item_definition.go +++ b/intersight_gosdk/model_workflow_catalog_item_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,9 +31,9 @@ type WorkflowCatalogItemDefinition struct { // The description for the catalog item which provides information on what are the pre-requisites to deploy the resource. Description *string `json:"Description,omitempty"` // A user friendly short name to identify the catalog item. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ) or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` // The name for this catalog item definition. You can have multiple versions of the catalog item with the same name. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // Publish status of the catalog item. * `Draft` - The enum specifies the option as Draft which means the meta definition is being designed and tested. * `Published` - The enum specifies the option as Published which means the meta definition is ready for consumption. * `Archived` - The enum specifies the option as Archived which means the meta definition is archived and can no longer be consumed. PublishStatus *string `json:"PublishStatus,omitempty"` ServiceItems []WorkflowServiceItemType `json:"ServiceItems,omitempty"` @@ -600,9 +600,9 @@ func (o *WorkflowCatalogItemDefinition) UnmarshalJSON(data []byte) (err error) { // The description for the catalog item which provides information on what are the pre-requisites to deploy the resource. Description *string `json:"Description,omitempty"` // A user friendly short name to identify the catalog item. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ) or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` // The name for this catalog item definition. You can have multiple versions of the catalog item with the same name. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // Publish status of the catalog item. * `Draft` - The enum specifies the option as Draft which means the meta definition is being designed and tested. * `Published` - The enum specifies the option as Published which means the meta definition is ready for consumption. * `Archived` - The enum specifies the option as Archived which means the meta definition is archived and can no longer be consumed. PublishStatus *string `json:"PublishStatus,omitempty"` ServiceItems []WorkflowServiceItemType `json:"ServiceItems,omitempty"` diff --git a/intersight_gosdk/model_workflow_catalog_item_definition_list.go b/intersight_gosdk/model_workflow_catalog_item_definition_list.go index a247dc8b22..42c48ff558 100644 --- a/intersight_gosdk/model_workflow_catalog_item_definition_list.go +++ b/intersight_gosdk/model_workflow_catalog_item_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_catalog_item_definition_relationship.go b/intersight_gosdk/model_workflow_catalog_item_definition_relationship.go index 0690aa3fe0..9d6d78afc3 100644 --- a/intersight_gosdk/model_workflow_catalog_item_definition_relationship.go +++ b/intersight_gosdk/model_workflow_catalog_item_definition_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_catalog_item_definition_response.go b/intersight_gosdk/model_workflow_catalog_item_definition_response.go index 1ce71387b5..ba4700a331 100644 --- a/intersight_gosdk/model_workflow_catalog_item_definition_response.go +++ b/intersight_gosdk/model_workflow_catalog_item_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_catalog_list.go b/intersight_gosdk/model_workflow_catalog_list.go index 6d90fce906..18cf0ee5dc 100644 --- a/intersight_gosdk/model_workflow_catalog_list.go +++ b/intersight_gosdk/model_workflow_catalog_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_catalog_relationship.go b/intersight_gosdk/model_workflow_catalog_relationship.go index 48bd19a45d..69fd194350 100644 --- a/intersight_gosdk/model_workflow_catalog_relationship.go +++ b/intersight_gosdk/model_workflow_catalog_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_catalog_response.go b/intersight_gosdk/model_workflow_catalog_response.go index 0a58c23aad..7556ba5f78 100644 --- a/intersight_gosdk/model_workflow_catalog_response.go +++ b/intersight_gosdk/model_workflow_catalog_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_catalog_service_request.go b/intersight_gosdk/model_workflow_catalog_service_request.go index 6debab2dd0..4b1ae800d9 100644 --- a/intersight_gosdk/model_workflow_catalog_service_request.go +++ b/intersight_gosdk/model_workflow_catalog_service_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -36,10 +36,10 @@ type WorkflowCatalogServiceRequest struct { // Inputs for a catalog service request instance creation, format is specified by input definition of the catalog item definition. Input interface{} `json:"Input,omitempty"` // A user friendly short name to identify the catalog service request instance. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ) or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` Messages []ServicerequestMessage `json:"Messages,omitempty"` // A name of the catalog service request instance. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` Operation NullableWorkflowBaseOperation `json:"Operation,omitempty"` SelectionCriteriaInputs []ServiceitemSelectionCriteriaInput `json:"SelectionCriteriaInputs,omitempty"` // Status of the catalog service request instance which determines the actions that are allowed on this instance. * `NotCreated` - The service item is not yet created and it is in a draft mode. A service item instance can be deleted in this state. * `InProgress` - An action is in progress and until that action has reached a final state, another action cannot be started. * `Failed` - The last action on the service item instance failed and corrective measures need to be taken to bring the service item instance back to valid state. * `Okay` - The last action on the service item instance completed and the service item instance is in Okay state. * `Decommissioned` - The service item is decommissioned and can be safely deleted. A service item instance in any other state after it has been created cannot be deleted until it has been decommissioned. @@ -895,10 +895,10 @@ func (o *WorkflowCatalogServiceRequest) UnmarshalJSON(data []byte) (err error) { // Inputs for a catalog service request instance creation, format is specified by input definition of the catalog item definition. Input interface{} `json:"Input,omitempty"` // A user friendly short name to identify the catalog service request instance. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ) or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` Messages []ServicerequestMessage `json:"Messages,omitempty"` // A name of the catalog service request instance. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` Operation NullableWorkflowBaseOperation `json:"Operation,omitempty"` SelectionCriteriaInputs []ServiceitemSelectionCriteriaInput `json:"SelectionCriteriaInputs,omitempty"` // Status of the catalog service request instance which determines the actions that are allowed on this instance. * `NotCreated` - The service item is not yet created and it is in a draft mode. A service item instance can be deleted in this state. * `InProgress` - An action is in progress and until that action has reached a final state, another action cannot be started. * `Failed` - The last action on the service item instance failed and corrective measures need to be taken to bring the service item instance back to valid state. * `Okay` - The last action on the service item instance completed and the service item instance is in Okay state. * `Decommissioned` - The service item is decommissioned and can be safely deleted. A service item instance in any other state after it has been created cannot be deleted until it has been decommissioned. diff --git a/intersight_gosdk/model_workflow_catalog_service_request_list.go b/intersight_gosdk/model_workflow_catalog_service_request_list.go index 41a738dd5d..fabf7a02a4 100644 --- a/intersight_gosdk/model_workflow_catalog_service_request_list.go +++ b/intersight_gosdk/model_workflow_catalog_service_request_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_catalog_service_request_relationship.go b/intersight_gosdk/model_workflow_catalog_service_request_relationship.go index d7757794dc..d0f9553b6b 100644 --- a/intersight_gosdk/model_workflow_catalog_service_request_relationship.go +++ b/intersight_gosdk/model_workflow_catalog_service_request_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_catalog_service_request_response.go b/intersight_gosdk/model_workflow_catalog_service_request_response.go index 0d27eac9bc..e5d512e545 100644 --- a/intersight_gosdk/model_workflow_catalog_service_request_response.go +++ b/intersight_gosdk/model_workflow_catalog_service_request_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_cli_command.go b/intersight_gosdk/model_workflow_cli_command.go index 155c5994cd..2774d95096 100644 --- a/intersight_gosdk/model_workflow_cli_command.go +++ b/intersight_gosdk/model_workflow_cli_command.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_comments.go b/intersight_gosdk/model_workflow_comments.go index 72f1815017..a0bd353cd9 100644 --- a/intersight_gosdk/model_workflow_comments.go +++ b/intersight_gosdk/model_workflow_comments.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_constraints.go b/intersight_gosdk/model_workflow_constraints.go index 402003dae2..e1dd3c1554 100644 --- a/intersight_gosdk/model_workflow_constraints.go +++ b/intersight_gosdk/model_workflow_constraints.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_control_task.go b/intersight_gosdk/model_workflow_control_task.go index b8da61f08b..94e848c774 100644 --- a/intersight_gosdk/model_workflow_control_task.go +++ b/intersight_gosdk/model_workflow_control_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_custom_array_item.go b/intersight_gosdk/model_workflow_custom_array_item.go index 922214d9a6..ffd42578a8 100644 --- a/intersight_gosdk/model_workflow_custom_array_item.go +++ b/intersight_gosdk/model_workflow_custom_array_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_custom_data_property.go b/intersight_gosdk/model_workflow_custom_data_property.go index 8a081c3e8b..d18b79e814 100644 --- a/intersight_gosdk/model_workflow_custom_data_property.go +++ b/intersight_gosdk/model_workflow_custom_data_property.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_custom_data_type.go b/intersight_gosdk/model_workflow_custom_data_type.go index bf60a21bf5..29bede7e9b 100644 --- a/intersight_gosdk/model_workflow_custom_data_type.go +++ b/intersight_gosdk/model_workflow_custom_data_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_custom_data_type_definition.go b/intersight_gosdk/model_workflow_custom_data_type_definition.go index 6117fe8767..082e2198c8 100644 --- a/intersight_gosdk/model_workflow_custom_data_type_definition.go +++ b/intersight_gosdk/model_workflow_custom_data_type_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,9 +33,9 @@ type WorkflowCustomDataTypeDefinition struct { // A human-friendly description of this custom data type indicating it's domain and usage. Description *string `json:"Description,omitempty"` // 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. - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_'.:-]{1,92}$"` // The name of custom data type definition. The valid name can contain lower case and upper case alphabetic characters, digits and special characters '-' and '_'. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_-]{1,64}$"` ParameterSet []WorkflowParameterSet `json:"ParameterSet,omitempty"` Properties NullableWorkflowCustomDataTypeProperties `json:"Properties,omitempty"` TypeDefinition []WorkflowBaseDataType `json:"TypeDefinition,omitempty"` @@ -567,9 +567,9 @@ func (o *WorkflowCustomDataTypeDefinition) UnmarshalJSON(data []byte) (err error // A human-friendly description of this custom data type indicating it's domain and usage. Description *string `json:"Description,omitempty"` // 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. - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_'.:-]{1,92}$"` // The name of custom data type definition. The valid name can contain lower case and upper case alphabetic characters, digits and special characters '-' and '_'. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_-]{1,64}$"` ParameterSet []WorkflowParameterSet `json:"ParameterSet,omitempty"` Properties NullableWorkflowCustomDataTypeProperties `json:"Properties,omitempty"` TypeDefinition []WorkflowBaseDataType `json:"TypeDefinition,omitempty"` diff --git a/intersight_gosdk/model_workflow_custom_data_type_definition_list.go b/intersight_gosdk/model_workflow_custom_data_type_definition_list.go index 86de574822..870be38124 100644 --- a/intersight_gosdk/model_workflow_custom_data_type_definition_list.go +++ b/intersight_gosdk/model_workflow_custom_data_type_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_custom_data_type_definition_relationship.go b/intersight_gosdk/model_workflow_custom_data_type_definition_relationship.go index 91a29f58d4..5e1f1a3cb9 100644 --- a/intersight_gosdk/model_workflow_custom_data_type_definition_relationship.go +++ b/intersight_gosdk/model_workflow_custom_data_type_definition_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_custom_data_type_definition_response.go b/intersight_gosdk/model_workflow_custom_data_type_definition_response.go index 1234447d77..3474e7bb93 100644 --- a/intersight_gosdk/model_workflow_custom_data_type_definition_response.go +++ b/intersight_gosdk/model_workflow_custom_data_type_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_custom_data_type_properties.go b/intersight_gosdk/model_workflow_custom_data_type_properties.go index 18b0f5e312..bbddb853ae 100644 --- a/intersight_gosdk/model_workflow_custom_data_type_properties.go +++ b/intersight_gosdk/model_workflow_custom_data_type_properties.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_decision_case.go b/intersight_gosdk/model_workflow_decision_case.go index a984ce172d..a1005d1a93 100644 --- a/intersight_gosdk/model_workflow_decision_case.go +++ b/intersight_gosdk/model_workflow_decision_case.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_decision_task.go b/intersight_gosdk/model_workflow_decision_task.go index c82bc19bcd..9380a29f5d 100644 --- a/intersight_gosdk/model_workflow_decision_task.go +++ b/intersight_gosdk/model_workflow_decision_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_default_value.go b/intersight_gosdk/model_workflow_default_value.go index 022a7289dc..74cf7fa96a 100644 --- a/intersight_gosdk/model_workflow_default_value.go +++ b/intersight_gosdk/model_workflow_default_value.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_display_meta.go b/intersight_gosdk/model_workflow_display_meta.go index e2a388aaa5..00be5f2ff5 100644 --- a/intersight_gosdk/model_workflow_display_meta.go +++ b/intersight_gosdk/model_workflow_display_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_dynamic_template_parser_data_type.go b/intersight_gosdk/model_workflow_dynamic_template_parser_data_type.go index 574b0d867d..f755f04f72 100644 --- a/intersight_gosdk/model_workflow_dynamic_template_parser_data_type.go +++ b/intersight_gosdk/model_workflow_dynamic_template_parser_data_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_end_task.go b/intersight_gosdk/model_workflow_end_task.go index 0f92886daa..431c173694 100644 --- a/intersight_gosdk/model_workflow_end_task.go +++ b/intersight_gosdk/model_workflow_end_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_enum_entry.go b/intersight_gosdk/model_workflow_enum_entry.go index 6577d2538a..ac7bae961e 100644 --- a/intersight_gosdk/model_workflow_enum_entry.go +++ b/intersight_gosdk/model_workflow_enum_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -28,10 +28,10 @@ type WorkflowEnumEntry struct { ClassId string `json:"ClassId"` // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` - // 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 have an alphanumeric character. - Label *string `json:"Label,omitempty"` - // 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 (_). - Value *string `json:"Value,omitempty"` + // 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 (/), round parenthesis ( () ), or an underscore (_) and must have an alphanumeric character. + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]+[+\\\\s\\/a-zA-Z0-9)(_'.:-]{0,92}$"` + // 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 ( ), round parenthesis ( () ), forward slash (/), or an underscore (_). + Value *string `json:"Value,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]*[+\\\\s\\/a-zA-Z0-9)(_.:-]{1,64}$"` AdditionalProperties map[string]interface{} } @@ -269,10 +269,10 @@ func (o *WorkflowEnumEntry) UnmarshalJSON(data []byte) (err error) { ClassId string `json:"ClassId"` // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` - // 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 have an alphanumeric character. - Label *string `json:"Label,omitempty"` - // 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 (_). - Value *string `json:"Value,omitempty"` + // 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 (/), round parenthesis ( () ), or an underscore (_) and must have an alphanumeric character. + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]+[+\\\\s\\/a-zA-Z0-9)(_'.:-]{0,92}$"` + // 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 ( ), round parenthesis ( () ), forward slash (/), or an underscore (_). + Value *string `json:"Value,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]*[+\\\\s\\/a-zA-Z0-9)(_.:-]{1,64}$"` } varWorkflowEnumEntryWithoutEmbeddedStruct := WorkflowEnumEntryWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_workflow_error_response_handler.go b/intersight_gosdk/model_workflow_error_response_handler.go index ec81c796cf..65cd1199a2 100644 --- a/intersight_gosdk/model_workflow_error_response_handler.go +++ b/intersight_gosdk/model_workflow_error_response_handler.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type WorkflowErrorResponseHandler struct { // A detailed description about the error response handler. Description *string `json:"Description,omitempty"` // Name for the error response handler. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` Parameters []ContentParameter `json:"Parameters,omitempty"` // The platform type for which the error response handler is defined. * `` - An unrecognized platform type. * `APIC` - A Cisco Application Policy Infrastructure Controller (APIC) cluster. * `CAPIC` - A Cisco Cloud Application Policy Infrastructure Controller (Cloud APIC) instance. * `DCNM` - A Cisco Data Center Network Manager (DCNM) instance. * `UCSFI` - A Cisco UCS Fabric Interconnect that is managed by Cisco UCS Manager (UCSM). * `UCSFIISM` - A Cisco UCS Fabric Interconnect that is managed by Cisco Intersight. * `IMC` - A standalone Cisco UCS rack server (Deprecated). * `IMCM4` - A standalone Cisco UCS C-Series or S-Series M4 server. * `IMCM5` - A standalone Cisco UCS C-Series or S-Series M5 server. * `IMCRack` - A standalone Cisco UCS C-Series or S-Series M6 or newer server. * `UCSIOM` - A Cisco UCS Blade Chassis I/O Module (IOM). * `HX` - A Cisco HyperFlex (HX) cluster. * `UCSD` - A Cisco UCS Director (UCSD) instance. * `IntersightAppliance` - A Cisco Intersight Connected Virtual Appliance instance. * `IntersightAssist` - A Cisco Intersight Assist instance. * `PureStorageFlashArray` - A Pure Storage FlashArray that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer and storage management features are supported on this device. * `NexusDevice` - A Cisco Nexus Network Switch that is managed using Cisco Intersight Assist. * `ACISwitch` - A Cisco Nexus Network Switch with the embedded Device Connector and is a part of the Cisco ACI fabric. * `NexusSwitch` - A standalone Cisco Nexus Network Switch with the embedded Device Connector. * `MDSSwitch` - A Cisco MDS Switch that is managed using the embedded Device Connector. * `MDSDevice` - A Cisco MDS Switch that is managed using Cisco Intersight Assist. * `UCSC890` - A standalone Cisco UCS C890 server managed using Cisco Intersight Assist. * `RedfishServer` - A generic target type for servers that support Redfish APIs and is managed using Cisco Intersight Assist. Support is limited to HPE and Dell Servers. * `NetAppOntap` - A Netapp ONTAP Storage system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `NetAppActiveIqUnifiedManager` - A NetApp Active IQ Unified Manager (AIQUM) that is managed using Cisco Intersight Assist. * `EmcScaleIo` - An EMC ScaleIO Software Defined Storage system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `EmcVmax` - An EMC VMAX 2 or 3 series enterprise storage array that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `EmcVplex` - An EMC VPLEX virtual storage system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `EmcXtremIo` - An EMC XtremIO SSD storage system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `VmwareVcenter` - A VMware vCenter instance that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer and Virtualization features are supported on this hypervisor. * `MicrosoftHyperV` - A Microsoft Hyper-V host that is managed using Cisco Intersight Assist. Optionally, other hosts in the cluster can be discovered through this host. Cisco Intersight Workload Optimizer features are supported on this hypervisor. * `AppDynamics` - An AppDynamics controller running in a SaaS or on-prem datacenter. On-prem AppDynamics instance is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this controller. * `Dynatrace` - A Dynatrace Server instance running in a SaaS or on-prem datacenter. On-prem Dynatrace instance is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this server. * `NewRelic` - A NewRelic user account. The NewRelic instance monitors the application infrastructure. Cisco Intersight Workload Optimizer features are supported on this server. * `ServiceNow` - A cloud-based workflow automation platform that enables enterprise organizations to improve operational efficiencies by streamlining and automating routine work tasks. * `CloudFoundry` - An open source cloud platform on which developers can build, deploy, run and scale applications. * `MicrosoftAzureApplicationInsights` - A feature of Azure Monitor, is an extensible Application Performance Management service for developers and DevOps professionals to monitor their live applications. * `OpenStack` - An OpenStack target manages Virtual Machines, Physical Machines, Datacenters and Virtual Datacenters using different OpenStack services as administrative endpoints. * `MicrosoftSqlServer` - A Microsoft SQL database server that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this database. * `MySqlServer` - A MySQL database server that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this database. * `OracleDatabaseServer` - An Oracle database server that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this database. * `IBMWebSphereApplicationServer` - An IBM WebSphere Application server that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this application server. * `OracleWebLogicServer` - Oracle WebLogic Server is a unified and extensible platform for developing, deploying and running enterprise applications, such as Java, for on-premises and in the cloud. WebLogic Server offers a robust, mature, and scalable implementation of Java Enterprise Edition (EE) and Jakarta EE. * `ApacheTomcatServer` - An Apache Tomcat server that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this server. * `JavaVirtualMachine` - A JVM Application with JMX configured that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this application. * `RedHatJBossApplicationServer` - JBoss Application Server is an open-source, cross-platform Java application server developed by JBoss, a division of Red Hat Inc. It is an open-source implementation of Java 2 Enterprise Edition (J2EE) that is used for implementing Java applications and other Web-based applications and software. * `Kubernetes` - A Kubernetes cluster that runs containerized applications, with Kubernetes Collector installed. Cisco Intersight Workload Optimizer features are supported on Kubernetes cluster. * `AmazonWebService` - An Amazon Web Service cloud account. Cisco Intersight Workload Optimizer and Virtualization features are supported on this cloud. * `AmazonWebServiceBilling` - An Amazon Web Service cloud billing account used to retrieve billing information stored in S3 bucket. Cisco Intersight Workload Optimizer features are supported on this cloud. * `GoogleCloudPlatform` - A Google Cloud Platform service account with access to one or more projects. Cisco Intersight Workload Optimizer features are supported on this cloud. * `GoogleCloudPlatformBilling` - A Google Cloud Platform service account used to retrieve billing information from BigQuery. Cisco Intersight Workload Optimizer features are supported on this cloud. * `MicrosoftAzureServicePrincipal` - A Microsoft Azure Service Principal account with access to Azure subscriptions. Cisco Intersight Workload Optimizer features are supported on this cloud. * `MicrosoftAzureEnterpriseAgreement` - A Microsoft Azure Enterprise Agreement enrolment used to retrieve pricing and billing information. Cisco Intersight Workload Optimizer features are supported on this cloud. * `MicrosoftAzureBilling` - A Microsoft Azure Service Principal account with access to billing information. Cisco Intersight Workload Optimizer features are supported on this cloud. * `DellCompellent` - A Dell EMC SC Series (Compellent) storage system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `HPE3Par` - A HPE 3PAR StoreServ system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `RedHatEnterpriseVirtualization` - A Red Hat Enterprise Virtualization Hypervisor system that manages Virtual Machines. * `NutanixAcropolis` - A Nutanix Acropolis cluster that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this cluster. * `HPEOneView` - A HPE OneView system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this system. * `ServiceEngine` - Cisco Application Services Engine. Cisco Application Services Engine is a platform to deploy and manage applications. * `HitachiVirtualStoragePlatform` - A Hitachi Virtual Storage Platform (Hitachi VSP) that is managed using Cisco Intersight Assist. * `GenericTarget` - A generic third-party target supported only in Partner Integration Appliance. This target type is used for development purposes and will not be supported in production environment. * `IMCBlade` - A Cisco UCS blade server managed by Cisco Intersight. * `TerraformCloud` - A Terraform Cloud Business Tier account. * `TerraformAgent` - A Terraform Cloud Agent that will be deployed on Cisco Intersight Assist. The agent can be used to plan and apply Terraform runs from a Terraform Cloud workspace. * `CustomTarget` - CustomTarget is deprecated. Use HTTPEndpoint type to claim HTTP endpoints. * `AnsibleEndpoint` - An external endpoint that is added as a target which can be accessed through Ansible in Intersight Cloud Orchestrator automation workflows. * `HTTPEndpoint` - An HTTP endpoint that can be accessed in Intersight Orchestrator workflows directly or using Cisco Intersight Assist. Authentication Schemes supported are Basic and Bearer Token. * `SSHEndpoint` - An SSH endpoint that can be accessed in Intersight Orchestrator workflows using Cisco Intersight Assist. * `CiscoCatalyst` - A Cisco Catalyst networking switch device. * `PowerShellEndpoint` - A Windows operating system server on which PowerShell scripts can be executed using Cisco Intersight Assist. * `CiscoDNAC` - A Cisco Digital Network Architecture (DNA) Center appliance. * `CiscoFMC` - A Cisco Secure Firewall Management Center. * `ViptelaCloud` - A Cisco Viptela SD-WAN Cloud. * `MerakiCloud` - A Cisco Meraki Organization. * `CiscoISE` - A Cisco Identity Services Engine (ISE) target. PlatformType *string `json:"PlatformType,omitempty"` @@ -434,7 +434,7 @@ func (o *WorkflowErrorResponseHandler) UnmarshalJSON(data []byte) (err error) { // A detailed description about the error response handler. Description *string `json:"Description,omitempty"` // Name for the error response handler. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` Parameters []ContentParameter `json:"Parameters,omitempty"` // The platform type for which the error response handler is defined. * `` - An unrecognized platform type. * `APIC` - A Cisco Application Policy Infrastructure Controller (APIC) cluster. * `CAPIC` - A Cisco Cloud Application Policy Infrastructure Controller (Cloud APIC) instance. * `DCNM` - A Cisco Data Center Network Manager (DCNM) instance. * `UCSFI` - A Cisco UCS Fabric Interconnect that is managed by Cisco UCS Manager (UCSM). * `UCSFIISM` - A Cisco UCS Fabric Interconnect that is managed by Cisco Intersight. * `IMC` - A standalone Cisco UCS rack server (Deprecated). * `IMCM4` - A standalone Cisco UCS C-Series or S-Series M4 server. * `IMCM5` - A standalone Cisco UCS C-Series or S-Series M5 server. * `IMCRack` - A standalone Cisco UCS C-Series or S-Series M6 or newer server. * `UCSIOM` - A Cisco UCS Blade Chassis I/O Module (IOM). * `HX` - A Cisco HyperFlex (HX) cluster. * `UCSD` - A Cisco UCS Director (UCSD) instance. * `IntersightAppliance` - A Cisco Intersight Connected Virtual Appliance instance. * `IntersightAssist` - A Cisco Intersight Assist instance. * `PureStorageFlashArray` - A Pure Storage FlashArray that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer and storage management features are supported on this device. * `NexusDevice` - A Cisco Nexus Network Switch that is managed using Cisco Intersight Assist. * `ACISwitch` - A Cisco Nexus Network Switch with the embedded Device Connector and is a part of the Cisco ACI fabric. * `NexusSwitch` - A standalone Cisco Nexus Network Switch with the embedded Device Connector. * `MDSSwitch` - A Cisco MDS Switch that is managed using the embedded Device Connector. * `MDSDevice` - A Cisco MDS Switch that is managed using Cisco Intersight Assist. * `UCSC890` - A standalone Cisco UCS C890 server managed using Cisco Intersight Assist. * `RedfishServer` - A generic target type for servers that support Redfish APIs and is managed using Cisco Intersight Assist. Support is limited to HPE and Dell Servers. * `NetAppOntap` - A Netapp ONTAP Storage system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `NetAppActiveIqUnifiedManager` - A NetApp Active IQ Unified Manager (AIQUM) that is managed using Cisco Intersight Assist. * `EmcScaleIo` - An EMC ScaleIO Software Defined Storage system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `EmcVmax` - An EMC VMAX 2 or 3 series enterprise storage array that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `EmcVplex` - An EMC VPLEX virtual storage system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `EmcXtremIo` - An EMC XtremIO SSD storage system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `VmwareVcenter` - A VMware vCenter instance that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer and Virtualization features are supported on this hypervisor. * `MicrosoftHyperV` - A Microsoft Hyper-V host that is managed using Cisco Intersight Assist. Optionally, other hosts in the cluster can be discovered through this host. Cisco Intersight Workload Optimizer features are supported on this hypervisor. * `AppDynamics` - An AppDynamics controller running in a SaaS or on-prem datacenter. On-prem AppDynamics instance is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this controller. * `Dynatrace` - A Dynatrace Server instance running in a SaaS or on-prem datacenter. On-prem Dynatrace instance is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this server. * `NewRelic` - A NewRelic user account. The NewRelic instance monitors the application infrastructure. Cisco Intersight Workload Optimizer features are supported on this server. * `ServiceNow` - A cloud-based workflow automation platform that enables enterprise organizations to improve operational efficiencies by streamlining and automating routine work tasks. * `CloudFoundry` - An open source cloud platform on which developers can build, deploy, run and scale applications. * `MicrosoftAzureApplicationInsights` - A feature of Azure Monitor, is an extensible Application Performance Management service for developers and DevOps professionals to monitor their live applications. * `OpenStack` - An OpenStack target manages Virtual Machines, Physical Machines, Datacenters and Virtual Datacenters using different OpenStack services as administrative endpoints. * `MicrosoftSqlServer` - A Microsoft SQL database server that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this database. * `MySqlServer` - A MySQL database server that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this database. * `OracleDatabaseServer` - An Oracle database server that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this database. * `IBMWebSphereApplicationServer` - An IBM WebSphere Application server that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this application server. * `OracleWebLogicServer` - Oracle WebLogic Server is a unified and extensible platform for developing, deploying and running enterprise applications, such as Java, for on-premises and in the cloud. WebLogic Server offers a robust, mature, and scalable implementation of Java Enterprise Edition (EE) and Jakarta EE. * `ApacheTomcatServer` - An Apache Tomcat server that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this server. * `JavaVirtualMachine` - A JVM Application with JMX configured that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this application. * `RedHatJBossApplicationServer` - JBoss Application Server is an open-source, cross-platform Java application server developed by JBoss, a division of Red Hat Inc. It is an open-source implementation of Java 2 Enterprise Edition (J2EE) that is used for implementing Java applications and other Web-based applications and software. * `Kubernetes` - A Kubernetes cluster that runs containerized applications, with Kubernetes Collector installed. Cisco Intersight Workload Optimizer features are supported on Kubernetes cluster. * `AmazonWebService` - An Amazon Web Service cloud account. Cisco Intersight Workload Optimizer and Virtualization features are supported on this cloud. * `AmazonWebServiceBilling` - An Amazon Web Service cloud billing account used to retrieve billing information stored in S3 bucket. Cisco Intersight Workload Optimizer features are supported on this cloud. * `GoogleCloudPlatform` - A Google Cloud Platform service account with access to one or more projects. Cisco Intersight Workload Optimizer features are supported on this cloud. * `GoogleCloudPlatformBilling` - A Google Cloud Platform service account used to retrieve billing information from BigQuery. Cisco Intersight Workload Optimizer features are supported on this cloud. * `MicrosoftAzureServicePrincipal` - A Microsoft Azure Service Principal account with access to Azure subscriptions. Cisco Intersight Workload Optimizer features are supported on this cloud. * `MicrosoftAzureEnterpriseAgreement` - A Microsoft Azure Enterprise Agreement enrolment used to retrieve pricing and billing information. Cisco Intersight Workload Optimizer features are supported on this cloud. * `MicrosoftAzureBilling` - A Microsoft Azure Service Principal account with access to billing information. Cisco Intersight Workload Optimizer features are supported on this cloud. * `DellCompellent` - A Dell EMC SC Series (Compellent) storage system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `HPE3Par` - A HPE 3PAR StoreServ system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `RedHatEnterpriseVirtualization` - A Red Hat Enterprise Virtualization Hypervisor system that manages Virtual Machines. * `NutanixAcropolis` - A Nutanix Acropolis cluster that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this cluster. * `HPEOneView` - A HPE OneView system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this system. * `ServiceEngine` - Cisco Application Services Engine. Cisco Application Services Engine is a platform to deploy and manage applications. * `HitachiVirtualStoragePlatform` - A Hitachi Virtual Storage Platform (Hitachi VSP) that is managed using Cisco Intersight Assist. * `GenericTarget` - A generic third-party target supported only in Partner Integration Appliance. This target type is used for development purposes and will not be supported in production environment. * `IMCBlade` - A Cisco UCS blade server managed by Cisco Intersight. * `TerraformCloud` - A Terraform Cloud Business Tier account. * `TerraformAgent` - A Terraform Cloud Agent that will be deployed on Cisco Intersight Assist. The agent can be used to plan and apply Terraform runs from a Terraform Cloud workspace. * `CustomTarget` - CustomTarget is deprecated. Use HTTPEndpoint type to claim HTTP endpoints. * `AnsibleEndpoint` - An external endpoint that is added as a target which can be accessed through Ansible in Intersight Cloud Orchestrator automation workflows. * `HTTPEndpoint` - An HTTP endpoint that can be accessed in Intersight Orchestrator workflows directly or using Cisco Intersight Assist. Authentication Schemes supported are Basic and Bearer Token. * `SSHEndpoint` - An SSH endpoint that can be accessed in Intersight Orchestrator workflows using Cisco Intersight Assist. * `CiscoCatalyst` - A Cisco Catalyst networking switch device. * `PowerShellEndpoint` - A Windows operating system server on which PowerShell scripts can be executed using Cisco Intersight Assist. * `CiscoDNAC` - A Cisco Digital Network Architecture (DNA) Center appliance. * `CiscoFMC` - A Cisco Secure Firewall Management Center. * `ViptelaCloud` - A Cisco Viptela SD-WAN Cloud. * `MerakiCloud` - A Cisco Meraki Organization. * `CiscoISE` - A Cisco Identity Services Engine (ISE) target. PlatformType *string `json:"PlatformType,omitempty"` diff --git a/intersight_gosdk/model_workflow_error_response_handler_list.go b/intersight_gosdk/model_workflow_error_response_handler_list.go index 73d29e7e6e..77aee80b78 100644 --- a/intersight_gosdk/model_workflow_error_response_handler_list.go +++ b/intersight_gosdk/model_workflow_error_response_handler_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_error_response_handler_relationship.go b/intersight_gosdk/model_workflow_error_response_handler_relationship.go index 432d5d68ca..8769e7fdc7 100644 --- a/intersight_gosdk/model_workflow_error_response_handler_relationship.go +++ b/intersight_gosdk/model_workflow_error_response_handler_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_error_response_handler_response.go b/intersight_gosdk/model_workflow_error_response_handler_response.go index 55b07e5e84..b1de3a1462 100644 --- a/intersight_gosdk/model_workflow_error_response_handler_response.go +++ b/intersight_gosdk/model_workflow_error_response_handler_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_expect_prompt.go b/intersight_gosdk/model_workflow_expect_prompt.go index 0fda75c2c4..767d312cac 100644 --- a/intersight_gosdk/model_workflow_expect_prompt.go +++ b/intersight_gosdk/model_workflow_expect_prompt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_failure_end_task.go b/intersight_gosdk/model_workflow_failure_end_task.go index b6683278cd..4f7f85762a 100644 --- a/intersight_gosdk/model_workflow_failure_end_task.go +++ b/intersight_gosdk/model_workflow_failure_end_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_file_download_op.go b/intersight_gosdk/model_workflow_file_download_op.go index 0bf8ceb613..78cd36fab6 100644 --- a/intersight_gosdk/model_workflow_file_download_op.go +++ b/intersight_gosdk/model_workflow_file_download_op.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_file_operations.go b/intersight_gosdk/model_workflow_file_operations.go index e6e24539c0..cadac16430 100644 --- a/intersight_gosdk/model_workflow_file_operations.go +++ b/intersight_gosdk/model_workflow_file_operations.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_file_template_op.go b/intersight_gosdk/model_workflow_file_template_op.go index a361e0a3be..cde439810e 100644 --- a/intersight_gosdk/model_workflow_file_template_op.go +++ b/intersight_gosdk/model_workflow_file_template_op.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_file_transfer.go b/intersight_gosdk/model_workflow_file_transfer.go index 6a49368597..76b7df0f46 100644 --- a/intersight_gosdk/model_workflow_file_transfer.go +++ b/intersight_gosdk/model_workflow_file_transfer.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_fork_task.go b/intersight_gosdk/model_workflow_fork_task.go index c32cbf4c6b..bd0df8278b 100644 --- a/intersight_gosdk/model_workflow_fork_task.go +++ b/intersight_gosdk/model_workflow_fork_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_initiator_context.go b/intersight_gosdk/model_workflow_initiator_context.go index 2c889b4c73..7e6e8505f1 100644 --- a/intersight_gosdk/model_workflow_initiator_context.go +++ b/intersight_gosdk/model_workflow_initiator_context.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_internal_properties.go b/intersight_gosdk/model_workflow_internal_properties.go index e0ee52049a..915d707904 100644 --- a/intersight_gosdk/model_workflow_internal_properties.go +++ b/intersight_gosdk/model_workflow_internal_properties.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_join_task.go b/intersight_gosdk/model_workflow_join_task.go index 9917456ed3..f9e1615ae0 100644 --- a/intersight_gosdk/model_workflow_join_task.go +++ b/intersight_gosdk/model_workflow_join_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_loop_task.go b/intersight_gosdk/model_workflow_loop_task.go index 8f4ad16995..195b0aa590 100644 --- a/intersight_gosdk/model_workflow_loop_task.go +++ b/intersight_gosdk/model_workflow_loop_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_message.go b/intersight_gosdk/model_workflow_message.go index e94a7dd286..93ed515e2d 100644 --- a/intersight_gosdk/model_workflow_message.go +++ b/intersight_gosdk/model_workflow_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_mo_inventory_data_type.go b/intersight_gosdk/model_workflow_mo_inventory_data_type.go index b7779ce462..05912efe5e 100644 --- a/intersight_gosdk/model_workflow_mo_inventory_data_type.go +++ b/intersight_gosdk/model_workflow_mo_inventory_data_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_mo_inventory_property.go b/intersight_gosdk/model_workflow_mo_inventory_property.go index 7f4c7554dd..395a7b68df 100644 --- a/intersight_gosdk/model_workflow_mo_inventory_property.go +++ b/intersight_gosdk/model_workflow_mo_inventory_property.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_mo_reference_array_item.go b/intersight_gosdk/model_workflow_mo_reference_array_item.go index 7145e30cbf..b307c7624a 100644 --- a/intersight_gosdk/model_workflow_mo_reference_array_item.go +++ b/intersight_gosdk/model_workflow_mo_reference_array_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_mo_reference_auto_array_item.go b/intersight_gosdk/model_workflow_mo_reference_auto_array_item.go index 3b5c81dd34..b1d33a746d 100644 --- a/intersight_gosdk/model_workflow_mo_reference_auto_array_item.go +++ b/intersight_gosdk/model_workflow_mo_reference_auto_array_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_mo_reference_auto_data_type.go b/intersight_gosdk/model_workflow_mo_reference_auto_data_type.go index a1ae525b4a..5e4a85fe81 100644 --- a/intersight_gosdk/model_workflow_mo_reference_auto_data_type.go +++ b/intersight_gosdk/model_workflow_mo_reference_auto_data_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_mo_reference_auto_property.go b/intersight_gosdk/model_workflow_mo_reference_auto_property.go index ed5948f078..6249b9d5b4 100644 --- a/intersight_gosdk/model_workflow_mo_reference_auto_property.go +++ b/intersight_gosdk/model_workflow_mo_reference_auto_property.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_mo_reference_data_type.go b/intersight_gosdk/model_workflow_mo_reference_data_type.go index f83556454c..428382d9dd 100644 --- a/intersight_gosdk/model_workflow_mo_reference_data_type.go +++ b/intersight_gosdk/model_workflow_mo_reference_data_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_mo_reference_property.go b/intersight_gosdk/model_workflow_mo_reference_property.go index 59caf633bd..0240fe475b 100644 --- a/intersight_gosdk/model_workflow_mo_reference_property.go +++ b/intersight_gosdk/model_workflow_mo_reference_property.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,7 +30,7 @@ type WorkflowMoReferenceProperty struct { ObjectType string `json:"ObjectType"` DisplayAttributes []string `json:"DisplayAttributes,omitempty"` // Field to hold an Intersight API along with an optional filter to narrow down the search options. - Selector *string `json:"Selector,omitempty"` + Selector *string `json:"Selector,omitempty" validate:"regexp=^$|\\/api\\/v1\\/.*"` SelectorProperty NullableWorkflowSelectorProperty `json:"SelectorProperty,omitempty"` // A property from the Intersight object, value of which can be used as value for referenced input definition. ValueAttribute *string `json:"ValueAttribute,omitempty"` @@ -355,7 +355,7 @@ func (o *WorkflowMoReferenceProperty) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` DisplayAttributes []string `json:"DisplayAttributes,omitempty"` // Field to hold an Intersight API along with an optional filter to narrow down the search options. - Selector *string `json:"Selector,omitempty"` + Selector *string `json:"Selector,omitempty" validate:"regexp=^$|\\/api\\/v1\\/.*"` SelectorProperty NullableWorkflowSelectorProperty `json:"SelectorProperty,omitempty"` // A property from the Intersight object, value of which can be used as value for referenced input definition. ValueAttribute *string `json:"ValueAttribute,omitempty"` diff --git a/intersight_gosdk/model_workflow_operation_type_decommission.go b/intersight_gosdk/model_workflow_operation_type_decommission.go index d590efeb44..6b7345c340 100644 --- a/intersight_gosdk/model_workflow_operation_type_decommission.go +++ b/intersight_gosdk/model_workflow_operation_type_decommission.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_operation_type_deployment.go b/intersight_gosdk/model_workflow_operation_type_deployment.go index cbbc48c550..1c3d0b7d35 100644 --- a/intersight_gosdk/model_workflow_operation_type_deployment.go +++ b/intersight_gosdk/model_workflow_operation_type_deployment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_operation_type_post_deployment.go b/intersight_gosdk/model_workflow_operation_type_post_deployment.go index 13621bc543..f6d8f31ec9 100644 --- a/intersight_gosdk/model_workflow_operation_type_post_deployment.go +++ b/intersight_gosdk/model_workflow_operation_type_post_deployment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_parameter_set.go b/intersight_gosdk/model_workflow_parameter_set.go index d05fdd6194..92e79ead49 100644 --- a/intersight_gosdk/model_workflow_parameter_set.go +++ b/intersight_gosdk/model_workflow_parameter_set.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -34,7 +34,7 @@ type WorkflowParameterSet struct { ControlParameter *string `json:"ControlParameter,omitempty"` EnableParameters []string `json:"EnableParameters,omitempty"` // Name for the parameter set. Limited to 64 alphanumeric characters (upper and lower case), and special characters '-' and '_'. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_-]{1,64}$"` // The controlling parameter will be evaluated against this 'value'. Value *string `json:"Value,omitempty"` AdditionalProperties map[string]interface{} @@ -390,7 +390,7 @@ func (o *WorkflowParameterSet) UnmarshalJSON(data []byte) (err error) { ControlParameter *string `json:"ControlParameter,omitempty"` EnableParameters []string `json:"EnableParameters,omitempty"` // Name for the parameter set. Limited to 64 alphanumeric characters (upper and lower case), and special characters '-' and '_'. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_-]{1,64}$"` // The controlling parameter will be evaluated against this 'value'. Value *string `json:"Value,omitempty"` } diff --git a/intersight_gosdk/model_workflow_power_shell_api.go b/intersight_gosdk/model_workflow_power_shell_api.go index 0a1285f087..9a7acb548b 100644 --- a/intersight_gosdk/model_workflow_power_shell_api.go +++ b/intersight_gosdk/model_workflow_power_shell_api.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_power_shell_batch_api_executor.go b/intersight_gosdk/model_workflow_power_shell_batch_api_executor.go index bf6c3fae13..c12de58a93 100644 --- a/intersight_gosdk/model_workflow_power_shell_batch_api_executor.go +++ b/intersight_gosdk/model_workflow_power_shell_batch_api_executor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_power_shell_batch_api_executor_list.go b/intersight_gosdk/model_workflow_power_shell_batch_api_executor_list.go index c2f820e95b..a7503bf922 100644 --- a/intersight_gosdk/model_workflow_power_shell_batch_api_executor_list.go +++ b/intersight_gosdk/model_workflow_power_shell_batch_api_executor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_power_shell_batch_api_executor_response.go b/intersight_gosdk/model_workflow_power_shell_batch_api_executor_response.go index 6c97ef3416..8185ad3b6b 100644 --- a/intersight_gosdk/model_workflow_power_shell_batch_api_executor_response.go +++ b/intersight_gosdk/model_workflow_power_shell_batch_api_executor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_primitive_array_item.go b/intersight_gosdk/model_workflow_primitive_array_item.go index 0a3d895b7b..5d13e7f78d 100644 --- a/intersight_gosdk/model_workflow_primitive_array_item.go +++ b/intersight_gosdk/model_workflow_primitive_array_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_primitive_data_property.go b/intersight_gosdk/model_workflow_primitive_data_property.go index a4f5dc7359..2a8d50ab9e 100644 --- a/intersight_gosdk/model_workflow_primitive_data_property.go +++ b/intersight_gosdk/model_workflow_primitive_data_property.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_primitive_data_type.go b/intersight_gosdk/model_workflow_primitive_data_type.go index 11e96de31c..6499010700 100644 --- a/intersight_gosdk/model_workflow_primitive_data_type.go +++ b/intersight_gosdk/model_workflow_primitive_data_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_properties.go b/intersight_gosdk/model_workflow_properties.go index 413e146548..d17b457094 100644 --- a/intersight_gosdk/model_workflow_properties.go +++ b/intersight_gosdk/model_workflow_properties.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_resource_inline_selector.go b/intersight_gosdk/model_workflow_resource_inline_selector.go index 6f11b6ba0c..82722410ba 100644 --- a/intersight_gosdk/model_workflow_resource_inline_selector.go +++ b/intersight_gosdk/model_workflow_resource_inline_selector.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type WorkflowResourceInlineSelector struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The odata based filter URL to select the resources. - Selector *string `json:"Selector,omitempty"` + Selector *string `json:"Selector,omitempty" validate:"regexp=^$|\\/api\\/v1\\/.*"` AdditionalProperties map[string]interface{} } @@ -233,7 +233,7 @@ func (o *WorkflowResourceInlineSelector) UnmarshalJSON(data []byte) (err error) // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The odata based filter URL to select the resources. - Selector *string `json:"Selector,omitempty"` + Selector *string `json:"Selector,omitempty" validate:"regexp=^$|\\/api\\/v1\\/.*"` } varWorkflowResourceInlineSelectorWithoutEmbeddedStruct := WorkflowResourceInlineSelectorWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_workflow_resource_selector_criteria.go b/intersight_gosdk/model_workflow_resource_selector_criteria.go index 8ec3d83612..abaad36825 100644 --- a/intersight_gosdk/model_workflow_resource_selector_criteria.go +++ b/intersight_gosdk/model_workflow_resource_selector_criteria.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_result_handler.go b/intersight_gosdk/model_workflow_result_handler.go index a2886c14ad..fa16a5c2dc 100644 --- a/intersight_gosdk/model_workflow_result_handler.go +++ b/intersight_gosdk/model_workflow_result_handler.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_rollback_task.go b/intersight_gosdk/model_workflow_rollback_task.go index 5aea4a0555..c97e5dad31 100644 --- a/intersight_gosdk/model_workflow_rollback_task.go +++ b/intersight_gosdk/model_workflow_rollback_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_rollback_workflow.go b/intersight_gosdk/model_workflow_rollback_workflow.go index c512022adf..7391d562bc 100644 --- a/intersight_gosdk/model_workflow_rollback_workflow.go +++ b/intersight_gosdk/model_workflow_rollback_workflow.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_rollback_workflow_list.go b/intersight_gosdk/model_workflow_rollback_workflow_list.go index bcc4b9a6bb..ccf2c59285 100644 --- a/intersight_gosdk/model_workflow_rollback_workflow_list.go +++ b/intersight_gosdk/model_workflow_rollback_workflow_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_rollback_workflow_response.go b/intersight_gosdk/model_workflow_rollback_workflow_response.go index beb4eb2592..8c0016264c 100644 --- a/intersight_gosdk/model_workflow_rollback_workflow_response.go +++ b/intersight_gosdk/model_workflow_rollback_workflow_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_rollback_workflow_task.go b/intersight_gosdk/model_workflow_rollback_workflow_task.go index 2e049c5043..87358ccb23 100644 --- a/intersight_gosdk/model_workflow_rollback_workflow_task.go +++ b/intersight_gosdk/model_workflow_rollback_workflow_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_selector_property.go b/intersight_gosdk/model_workflow_selector_property.go index 696442c980..eb47080808 100644 --- a/intersight_gosdk/model_workflow_selector_property.go +++ b/intersight_gosdk/model_workflow_selector_property.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_sequence_params.go b/intersight_gosdk/model_workflow_sequence_params.go index 09ffd1d854..5e92dec2f8 100644 --- a/intersight_gosdk/model_workflow_sequence_params.go +++ b/intersight_gosdk/model_workflow_sequence_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_serial_loop_task.go b/intersight_gosdk/model_workflow_serial_loop_task.go index e991c52dea..2634ae57fe 100644 --- a/intersight_gosdk/model_workflow_serial_loop_task.go +++ b/intersight_gosdk/model_workflow_serial_loop_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_action_definition.go b/intersight_gosdk/model_workflow_service_item_action_definition.go index de2fef656c..8544bf0db1 100644 --- a/intersight_gosdk/model_workflow_service_item_action_definition.go +++ b/intersight_gosdk/model_workflow_service_item_action_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -39,9 +39,9 @@ type WorkflowServiceItemActionDefinition struct { Description *string `json:"Description,omitempty"` InputDefinition []WorkflowBaseDataType `json:"InputDefinition,omitempty"` // A user friendly short name to identify the action. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ) or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` // The name for this action definition. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:) or an underscore (_). Name of the action must be unique within a service item definition. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // Value in seconds to specify the periodicity of the workflows. A zero value indicate the workflow will not execute periodically. A non-zero value indicate, the workflow will be executed periodically with this periodicity. Periodicity *int64 `json:"Periodicity,omitempty"` PostCoreWorkflows []WorkflowServiceItemActionWorkflowDefinition `json:"PostCoreWorkflows,omitempty"` @@ -996,9 +996,9 @@ func (o *WorkflowServiceItemActionDefinition) UnmarshalJSON(data []byte) (err er Description *string `json:"Description,omitempty"` InputDefinition []WorkflowBaseDataType `json:"InputDefinition,omitempty"` // A user friendly short name to identify the action. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ) or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` // The name for this action definition. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:) or an underscore (_). Name of the action must be unique within a service item definition. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // Value in seconds to specify the periodicity of the workflows. A zero value indicate the workflow will not execute periodically. A non-zero value indicate, the workflow will be executed periodically with this periodicity. Periodicity *int64 `json:"Periodicity,omitempty"` PostCoreWorkflows []WorkflowServiceItemActionWorkflowDefinition `json:"PostCoreWorkflows,omitempty"` diff --git a/intersight_gosdk/model_workflow_service_item_action_definition_list.go b/intersight_gosdk/model_workflow_service_item_action_definition_list.go index 6bd0a7ba2a..12dfad975d 100644 --- a/intersight_gosdk/model_workflow_service_item_action_definition_list.go +++ b/intersight_gosdk/model_workflow_service_item_action_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_action_definition_relationship.go b/intersight_gosdk/model_workflow_service_item_action_definition_relationship.go index 0d9a133f70..4d5603b550 100644 --- a/intersight_gosdk/model_workflow_service_item_action_definition_relationship.go +++ b/intersight_gosdk/model_workflow_service_item_action_definition_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_action_definition_response.go b/intersight_gosdk/model_workflow_service_item_action_definition_response.go index 0d8aab3979..4ad38ff534 100644 --- a/intersight_gosdk/model_workflow_service_item_action_definition_response.go +++ b/intersight_gosdk/model_workflow_service_item_action_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_action_instance.go b/intersight_gosdk/model_workflow_service_item_action_instance.go index 1f41e0731a..c3ea15d832 100644 --- a/intersight_gosdk/model_workflow_service_item_action_instance.go +++ b/intersight_gosdk/model_workflow_service_item_action_instance.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_action_instance_list.go b/intersight_gosdk/model_workflow_service_item_action_instance_list.go index 3d6e8b96e5..cd031bb254 100644 --- a/intersight_gosdk/model_workflow_service_item_action_instance_list.go +++ b/intersight_gosdk/model_workflow_service_item_action_instance_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_action_instance_relationship.go b/intersight_gosdk/model_workflow_service_item_action_instance_relationship.go index 6c9fa1b1f0..7d6b8c4927 100644 --- a/intersight_gosdk/model_workflow_service_item_action_instance_relationship.go +++ b/intersight_gosdk/model_workflow_service_item_action_instance_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_action_instance_response.go b/intersight_gosdk/model_workflow_service_item_action_instance_response.go index 035dbdf9c3..4de47e6649 100644 --- a/intersight_gosdk/model_workflow_service_item_action_instance_response.go +++ b/intersight_gosdk/model_workflow_service_item_action_instance_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_action_properties.go b/intersight_gosdk/model_workflow_service_item_action_properties.go index 83b101d6ed..3cfee7d449 100644 --- a/intersight_gosdk/model_workflow_service_item_action_properties.go +++ b/intersight_gosdk/model_workflow_service_item_action_properties.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_action_workflow_definition.go b/intersight_gosdk/model_workflow_service_item_action_workflow_definition.go index 02fd377f70..3c7e0c1e19 100644 --- a/intersight_gosdk/model_workflow_service_item_action_workflow_definition.go +++ b/intersight_gosdk/model_workflow_service_item_action_workflow_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -37,7 +37,7 @@ type WorkflowServiceItemActionWorkflowDefinition struct { // A user defined label identifier of the workflow used for UI display. Label *string `json:"Label,omitempty"` // The name of the workflow, this name must be unique across all the workflow definition used within the action definitions. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_:-]{1,64}$"` // The workflow definition version to use as subworkflow. When no version is specified then the default version of the workflow at the time of creating or updating this workflow is used. Version *int64 `json:"Version,omitempty"` WorkflowDefinition *MoMoRef `json:"WorkflowDefinition,omitempty"` @@ -500,7 +500,7 @@ func (o *WorkflowServiceItemActionWorkflowDefinition) UnmarshalJSON(data []byte) // A user defined label identifier of the workflow used for UI display. Label *string `json:"Label,omitempty"` // The name of the workflow, this name must be unique across all the workflow definition used within the action definitions. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_:-]{1,64}$"` // The workflow definition version to use as subworkflow. When no version is specified then the default version of the workflow at the time of creating or updating this workflow is used. Version *int64 `json:"Version,omitempty"` WorkflowDefinition *MoMoRef `json:"WorkflowDefinition,omitempty"` diff --git a/intersight_gosdk/model_workflow_service_item_attribute.go b/intersight_gosdk/model_workflow_service_item_attribute.go index 7a3ebf6edd..d008d2e7bd 100644 --- a/intersight_gosdk/model_workflow_service_item_attribute.go +++ b/intersight_gosdk/model_workflow_service_item_attribute.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_attribute_list.go b/intersight_gosdk/model_workflow_service_item_attribute_list.go index a52e26478d..7bbb74b01f 100644 --- a/intersight_gosdk/model_workflow_service_item_attribute_list.go +++ b/intersight_gosdk/model_workflow_service_item_attribute_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_attribute_response.go b/intersight_gosdk/model_workflow_service_item_attribute_response.go index c13f309a53..5504352c70 100644 --- a/intersight_gosdk/model_workflow_service_item_attribute_response.go +++ b/intersight_gosdk/model_workflow_service_item_attribute_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_definition.go b/intersight_gosdk/model_workflow_service_item_definition.go index f044701b32..aabc83bc4b 100644 --- a/intersight_gosdk/model_workflow_service_item_definition.go +++ b/intersight_gosdk/model_workflow_service_item_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -40,13 +40,13 @@ type WorkflowServiceItemDefinition struct { // The description for this service item which provides information on what are the pre-requisites to deploy the service item and what features are supported on the service item. Description *string `json:"Description,omitempty"` // A user friendly short name to identify the service item. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ) or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` // License entitlement required to run this service item. * `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. * `IKS-Advantage` - IKS-Advantage as a License type. * `INC-Premier-1GFixed` - Premier 1G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-10GFixed` - Premier 10G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-100GFixed` - Premier 100G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-Mod4Slot` - Premier Modular 4 slot license tier for Intersight Nexus Cloud. * `INC-Premier-Mod8Slot` - Premier Modular 8 slot license tier for Intersight Nexus Cloud. * `INC-Premier-D2OpsFixed` - Premier D2Ops fixed license tier for Intersight Nexus Cloud. * `INC-Premier-D2OpsMod` - Premier D2Ops modular license tier for Intersight Nexus Cloud. * `INC-Premier-CentralizedMod8Slot` - Premier modular license tier of switch type CentralizedMod8Slot for Intersight Nexus Cloud. * `INC-Premier-DistributedMod8Slot` - Premier modular license tier of switch type DistributedMod8Slot for Intersight Nexus Cloud. * `IntersightTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode Intersight tiers. * `IWOTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode IKS tiers. * `IKSTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode IWO tiers. * `INCTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode Nexus tiers. LicenseEntitlement *string `json:"LicenseEntitlement,omitempty"` // The user identifier who last updated the service item definition. ModUser *string `json:"ModUser,omitempty"` // The name for this service item definition. You can have multiple versions of the service item with the same name. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // The publish status of service item (Draft, Published, Archived). * `Draft` - The enum specifies the option as Draft which means the meta definition is being designed and tested. * `Published` - The enum specifies the option as Published which means the meta definition is ready for consumption. * `Archived` - The enum specifies the option as Archived which means the meta definition is archived and can no longer be consumed. PublishStatus *string `json:"PublishStatus,omitempty"` // State of service item considering the state of underlying service item actions definitions. * `Okay` - Deployment and other post-deployment actions are in valid state. * `Critical` - Deployment action is not in valid state. * `Warning` - Deployment action is in valid state, and one or more post-deployment actions are not in valid state. @@ -918,13 +918,13 @@ func (o *WorkflowServiceItemDefinition) UnmarshalJSON(data []byte) (err error) { // The description for this service item which provides information on what are the pre-requisites to deploy the service item and what features are supported on the service item. Description *string `json:"Description,omitempty"` // A user friendly short name to identify the service item. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ) or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` // License entitlement required to run this service item. * `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. * `IKS-Advantage` - IKS-Advantage as a License type. * `INC-Premier-1GFixed` - Premier 1G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-10GFixed` - Premier 10G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-100GFixed` - Premier 100G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-Mod4Slot` - Premier Modular 4 slot license tier for Intersight Nexus Cloud. * `INC-Premier-Mod8Slot` - Premier Modular 8 slot license tier for Intersight Nexus Cloud. * `INC-Premier-D2OpsFixed` - Premier D2Ops fixed license tier for Intersight Nexus Cloud. * `INC-Premier-D2OpsMod` - Premier D2Ops modular license tier for Intersight Nexus Cloud. * `INC-Premier-CentralizedMod8Slot` - Premier modular license tier of switch type CentralizedMod8Slot for Intersight Nexus Cloud. * `INC-Premier-DistributedMod8Slot` - Premier modular license tier of switch type DistributedMod8Slot for Intersight Nexus Cloud. * `IntersightTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode Intersight tiers. * `IWOTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode IKS tiers. * `IKSTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode IWO tiers. * `INCTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode Nexus tiers. LicenseEntitlement *string `json:"LicenseEntitlement,omitempty"` // The user identifier who last updated the service item definition. ModUser *string `json:"ModUser,omitempty"` // The name for this service item definition. You can have multiple versions of the service item with the same name. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // The publish status of service item (Draft, Published, Archived). * `Draft` - The enum specifies the option as Draft which means the meta definition is being designed and tested. * `Published` - The enum specifies the option as Published which means the meta definition is ready for consumption. * `Archived` - The enum specifies the option as Archived which means the meta definition is archived and can no longer be consumed. PublishStatus *string `json:"PublishStatus,omitempty"` // State of service item considering the state of underlying service item actions definitions. * `Okay` - Deployment and other post-deployment actions are in valid state. * `Critical` - Deployment action is not in valid state. * `Warning` - Deployment action is in valid state, and one or more post-deployment actions are not in valid state. diff --git a/intersight_gosdk/model_workflow_service_item_definition_list.go b/intersight_gosdk/model_workflow_service_item_definition_list.go index 1b226a6cab..0b83020ad6 100644 --- a/intersight_gosdk/model_workflow_service_item_definition_list.go +++ b/intersight_gosdk/model_workflow_service_item_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_definition_relationship.go b/intersight_gosdk/model_workflow_service_item_definition_relationship.go index dacf003801..320eeba888 100644 --- a/intersight_gosdk/model_workflow_service_item_definition_relationship.go +++ b/intersight_gosdk/model_workflow_service_item_definition_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_definition_response.go b/intersight_gosdk/model_workflow_service_item_definition_response.go index 4077b728ce..2ef34bdf04 100644 --- a/intersight_gosdk/model_workflow_service_item_definition_response.go +++ b/intersight_gosdk/model_workflow_service_item_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_health_check_definition.go b/intersight_gosdk/model_workflow_service_item_health_check_definition.go index b3335b31bd..14ded580c0 100644 --- a/intersight_gosdk/model_workflow_service_item_health_check_definition.go +++ b/intersight_gosdk/model_workflow_service_item_health_check_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_health_check_definition_list.go b/intersight_gosdk/model_workflow_service_item_health_check_definition_list.go index 2b05a6bf2d..c4970075e5 100644 --- a/intersight_gosdk/model_workflow_service_item_health_check_definition_list.go +++ b/intersight_gosdk/model_workflow_service_item_health_check_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_health_check_definition_relationship.go b/intersight_gosdk/model_workflow_service_item_health_check_definition_relationship.go index 4406cd7692..63ef465d07 100644 --- a/intersight_gosdk/model_workflow_service_item_health_check_definition_relationship.go +++ b/intersight_gosdk/model_workflow_service_item_health_check_definition_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_health_check_definition_response.go b/intersight_gosdk/model_workflow_service_item_health_check_definition_response.go index afa2c61688..256fc9ebf5 100644 --- a/intersight_gosdk/model_workflow_service_item_health_check_definition_response.go +++ b/intersight_gosdk/model_workflow_service_item_health_check_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_health_check_execution.go b/intersight_gosdk/model_workflow_service_item_health_check_execution.go index f0857d96fb..55ac6fc6a6 100644 --- a/intersight_gosdk/model_workflow_service_item_health_check_execution.go +++ b/intersight_gosdk/model_workflow_service_item_health_check_execution.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_health_check_execution_list.go b/intersight_gosdk/model_workflow_service_item_health_check_execution_list.go index b5cd774b92..e20b72fce9 100644 --- a/intersight_gosdk/model_workflow_service_item_health_check_execution_list.go +++ b/intersight_gosdk/model_workflow_service_item_health_check_execution_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_health_check_execution_response.go b/intersight_gosdk/model_workflow_service_item_health_check_execution_response.go index 3fa868c8ed..6015412c3f 100644 --- a/intersight_gosdk/model_workflow_service_item_health_check_execution_response.go +++ b/intersight_gosdk/model_workflow_service_item_health_check_execution_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_input_definition_type.go b/intersight_gosdk/model_workflow_service_item_input_definition_type.go index 4ee20ebcca..bf958e8380 100644 --- a/intersight_gosdk/model_workflow_service_item_input_definition_type.go +++ b/intersight_gosdk/model_workflow_service_item_input_definition_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_instance.go b/intersight_gosdk/model_workflow_service_item_instance.go index 65d69caf71..8686c42796 100644 --- a/intersight_gosdk/model_workflow_service_item_instance.go +++ b/intersight_gosdk/model_workflow_service_item_instance.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,11 +31,11 @@ type WorkflowServiceItemInstance struct { // The description for this service item instance. Description *string `json:"Description,omitempty"` // A user friendly short name to identify the resource. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ) or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` // Last status of the service item instance which will be reverted when an ongoing service item action instance is aborted. * `NotCreated` - The service item is not yet created and it is in a draft mode. A service item instance can be deleted in this state. * `InProgress` - An action is in progress and until that action has reached a final state, another action cannot be started. * `Failed` - The last action on the service item instance failed and corrective measures need to be taken to bring the service item instance back to valid state. * `Okay` - The last action on the service item instance completed and the service item instance is in Okay state. * `Decommissioned` - The service item is decommissioned and can be safely deleted. A service item instance in any other state after it has been created cannot be deleted until it has been decommissioned. LastStatus *string `json:"LastStatus,omitempty"` // A name of the service item instance. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` // Lifecycle state of service item instance. * `Creating` - The service item is not yet created and creation action is in progress. * `Created` - The service item is created. * `Decommissioning` - The service item is not yet decommissioned and decommission action is in progress. * `Decommissioned` - The service item is decommisioned. * `Deleting` - The service item is not yet deleted and deletion action is in progress. * `Deleted` - The service item is deleted. * `Failed` - The service item action is failed to perform the operation. ResourcelifecycleStatus *string `json:"ResourcelifecycleStatus,omitempty"` // Status of the service item instance which controls the actions that can be performed on this instance. * `NotCreated` - The service item is not yet created and it is in a draft mode. A service item instance can be deleted in this state. * `InProgress` - An action is in progress and until that action has reached a final state, another action cannot be started. * `Failed` - The last action on the service item instance failed and corrective measures need to be taken to bring the service item instance back to valid state. * `Okay` - The last action on the service item instance completed and the service item instance is in Okay state. * `Decommissioned` - The service item is decommissioned and can be safely deleted. A service item instance in any other state after it has been created cannot be deleted until it has been decommissioned. @@ -730,11 +730,11 @@ func (o *WorkflowServiceItemInstance) UnmarshalJSON(data []byte) (err error) { // The description for this service item instance. Description *string `json:"Description,omitempty"` // A user friendly short name to identify the resource. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ) or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` // Last status of the service item instance which will be reverted when an ongoing service item action instance is aborted. * `NotCreated` - The service item is not yet created and it is in a draft mode. A service item instance can be deleted in this state. * `InProgress` - An action is in progress and until that action has reached a final state, another action cannot be started. * `Failed` - The last action on the service item instance failed and corrective measures need to be taken to bring the service item instance back to valid state. * `Okay` - The last action on the service item instance completed and the service item instance is in Okay state. * `Decommissioned` - The service item is decommissioned and can be safely deleted. A service item instance in any other state after it has been created cannot be deleted until it has been decommissioned. LastStatus *string `json:"LastStatus,omitempty"` // A name of the service item instance. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` // Lifecycle state of service item instance. * `Creating` - The service item is not yet created and creation action is in progress. * `Created` - The service item is created. * `Decommissioning` - The service item is not yet decommissioned and decommission action is in progress. * `Decommissioned` - The service item is decommisioned. * `Deleting` - The service item is not yet deleted and deletion action is in progress. * `Deleted` - The service item is deleted. * `Failed` - The service item action is failed to perform the operation. ResourcelifecycleStatus *string `json:"ResourcelifecycleStatus,omitempty"` // Status of the service item instance which controls the actions that can be performed on this instance. * `NotCreated` - The service item is not yet created and it is in a draft mode. A service item instance can be deleted in this state. * `InProgress` - An action is in progress and until that action has reached a final state, another action cannot be started. * `Failed` - The last action on the service item instance failed and corrective measures need to be taken to bring the service item instance back to valid state. * `Okay` - The last action on the service item instance completed and the service item instance is in Okay state. * `Decommissioned` - The service item is decommissioned and can be safely deleted. A service item instance in any other state after it has been created cannot be deleted until it has been decommissioned. diff --git a/intersight_gosdk/model_workflow_service_item_instance_list.go b/intersight_gosdk/model_workflow_service_item_instance_list.go index cfba133be1..e3465d05ab 100644 --- a/intersight_gosdk/model_workflow_service_item_instance_list.go +++ b/intersight_gosdk/model_workflow_service_item_instance_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_instance_relationship.go b/intersight_gosdk/model_workflow_service_item_instance_relationship.go index e1d75d0004..af45119fd2 100644 --- a/intersight_gosdk/model_workflow_service_item_instance_relationship.go +++ b/intersight_gosdk/model_workflow_service_item_instance_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_instance_response.go b/intersight_gosdk/model_workflow_service_item_instance_response.go index 03c149f29a..5cd337844f 100644 --- a/intersight_gosdk/model_workflow_service_item_instance_response.go +++ b/intersight_gosdk/model_workflow_service_item_instance_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_output.go b/intersight_gosdk/model_workflow_service_item_output.go index 844a4a3a62..5684555f96 100644 --- a/intersight_gosdk/model_workflow_service_item_output.go +++ b/intersight_gosdk/model_workflow_service_item_output.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_output_list.go b/intersight_gosdk/model_workflow_service_item_output_list.go index e41cd1636e..9884367a48 100644 --- a/intersight_gosdk/model_workflow_service_item_output_list.go +++ b/intersight_gosdk/model_workflow_service_item_output_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_output_response.go b/intersight_gosdk/model_workflow_service_item_output_response.go index 36262aa2f9..16baf22f2e 100644 --- a/intersight_gosdk/model_workflow_service_item_output_response.go +++ b/intersight_gosdk/model_workflow_service_item_output_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_type.go b/intersight_gosdk/model_workflow_service_item_type.go index 901c9ce520..99334f87fe 100644 --- a/intersight_gosdk/model_workflow_service_item_type.go +++ b/intersight_gosdk/model_workflow_service_item_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type WorkflowServiceItemType struct { // The description of this service item. Description *string `json:"Description,omitempty"` // The name of the service item as defined by the user. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` ServiceItemDefinition *MoMoRef `json:"ServiceItemDefinition,omitempty"` ServiceItemInputDefinition []WorkflowServiceItemInputDefinitionType `json:"ServiceItemInputDefinition,omitempty"` AdditionalProperties map[string]interface{} @@ -345,7 +345,7 @@ func (o *WorkflowServiceItemType) UnmarshalJSON(data []byte) (err error) { // The description of this service item. Description *string `json:"Description,omitempty"` // The name of the service item as defined by the user. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` ServiceItemDefinition *MoMoRef `json:"ServiceItemDefinition,omitempty"` ServiceItemInputDefinition []WorkflowServiceItemInputDefinitionType `json:"ServiceItemInputDefinition,omitempty"` } diff --git a/intersight_gosdk/model_workflow_ssh_batch_executor.go b/intersight_gosdk/model_workflow_ssh_batch_executor.go index 9b029b4706..6701a1ca39 100644 --- a/intersight_gosdk/model_workflow_ssh_batch_executor.go +++ b/intersight_gosdk/model_workflow_ssh_batch_executor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_ssh_batch_executor_list.go b/intersight_gosdk/model_workflow_ssh_batch_executor_list.go index 326c4c5f04..9448193a76 100644 --- a/intersight_gosdk/model_workflow_ssh_batch_executor_list.go +++ b/intersight_gosdk/model_workflow_ssh_batch_executor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_ssh_batch_executor_response.go b/intersight_gosdk/model_workflow_ssh_batch_executor_response.go index 8877a477a0..8819c7740b 100644 --- a/intersight_gosdk/model_workflow_ssh_batch_executor_response.go +++ b/intersight_gosdk/model_workflow_ssh_batch_executor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_ssh_cmd.go b/intersight_gosdk/model_workflow_ssh_cmd.go index eff4317982..1df4738f0f 100644 --- a/intersight_gosdk/model_workflow_ssh_cmd.go +++ b/intersight_gosdk/model_workflow_ssh_cmd.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_ssh_config.go b/intersight_gosdk/model_workflow_ssh_config.go index 5ccbfb95b1..0b2890dde6 100644 --- a/intersight_gosdk/model_workflow_ssh_config.go +++ b/intersight_gosdk/model_workflow_ssh_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_ssh_session.go b/intersight_gosdk/model_workflow_ssh_session.go index dfab3d17d9..100f6a502f 100644 --- a/intersight_gosdk/model_workflow_ssh_session.go +++ b/intersight_gosdk/model_workflow_ssh_session.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_start_task.go b/intersight_gosdk/model_workflow_start_task.go index 340086cccd..ee49a7ea0c 100644 --- a/intersight_gosdk/model_workflow_start_task.go +++ b/intersight_gosdk/model_workflow_start_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_sub_workflow_task.go b/intersight_gosdk/model_workflow_sub_workflow_task.go index 5ac7d21239..906f4c92c1 100644 --- a/intersight_gosdk/model_workflow_sub_workflow_task.go +++ b/intersight_gosdk/model_workflow_sub_workflow_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_success_end_task.go b/intersight_gosdk/model_workflow_success_end_task.go index f78666d69b..79b2707f6b 100644 --- a/intersight_gosdk/model_workflow_success_end_task.go +++ b/intersight_gosdk/model_workflow_success_end_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_target_context.go b/intersight_gosdk/model_workflow_target_context.go index 7fae97c869..256781d2b0 100644 --- a/intersight_gosdk/model_workflow_target_context.go +++ b/intersight_gosdk/model_workflow_target_context.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_target_data_type.go b/intersight_gosdk/model_workflow_target_data_type.go index c8410b1c10..563ce113c5 100644 --- a/intersight_gosdk/model_workflow_target_data_type.go +++ b/intersight_gosdk/model_workflow_target_data_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_target_property.go b/intersight_gosdk/model_workflow_target_property.go index dbf168a1f4..eb41197c7b 100644 --- a/intersight_gosdk/model_workflow_target_property.go +++ b/intersight_gosdk/model_workflow_target_property.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -32,8 +32,9 @@ type WorkflowTargetProperty struct { ConnectorAttribute *string `json:"ConnectorAttribute,omitempty"` ConstraintAttributes []string `json:"ConstraintAttributes,omitempty"` DisplayAttributes []string `json:"DisplayAttributes,omitempty"` + PlatformType []string `json:"PlatformType,omitempty"` // Field to hold an Intersight API along with an optional filter to narrow down the search options for target device. - Selector *string `json:"Selector,omitempty"` + Selector *string `json:"Selector,omitempty" validate:"regexp=^$|\\/api\\/v1\\/.*"` SelectorProperty NullableWorkflowSelectorProperty `json:"SelectorProperty,omitempty"` SupportedObjects []string `json:"SupportedObjects,omitempty"` AdditionalProperties map[string]interface{} @@ -220,6 +221,39 @@ func (o *WorkflowTargetProperty) SetDisplayAttributes(v []string) { o.DisplayAttributes = v } +// GetPlatformType returns the PlatformType field value if set, zero value otherwise (both if not set or set to explicit null). +func (o *WorkflowTargetProperty) GetPlatformType() []string { + if o == nil { + var ret []string + return ret + } + return o.PlatformType +} + +// GetPlatformTypeOk returns a tuple with the PlatformType field value if set, nil otherwise +// and a boolean to check if the value has been set. +// NOTE: If the value is an explicit nil, `nil, true` will be returned +func (o *WorkflowTargetProperty) GetPlatformTypeOk() ([]string, bool) { + if o == nil || IsNil(o.PlatformType) { + return nil, false + } + return o.PlatformType, true +} + +// HasPlatformType returns a boolean if a field has been set. +func (o *WorkflowTargetProperty) HasPlatformType() bool { + if o != nil && !IsNil(o.PlatformType) { + return true + } + + return false +} + +// SetPlatformType gets a reference to the given []string and assigns it to the PlatformType field. +func (o *WorkflowTargetProperty) SetPlatformType(v []string) { + o.PlatformType = v +} + // GetSelector returns the Selector field value if set, zero value otherwise. func (o *WorkflowTargetProperty) GetSelector() string { if o == nil || IsNil(o.Selector) { @@ -363,6 +397,9 @@ func (o WorkflowTargetProperty) ToMap() (map[string]interface{}, error) { if o.DisplayAttributes != nil { toSerialize["DisplayAttributes"] = o.DisplayAttributes } + if o.PlatformType != nil { + toSerialize["PlatformType"] = o.PlatformType + } if !IsNil(o.Selector) { toSerialize["Selector"] = o.Selector } @@ -431,8 +468,9 @@ func (o *WorkflowTargetProperty) UnmarshalJSON(data []byte) (err error) { ConnectorAttribute *string `json:"ConnectorAttribute,omitempty"` ConstraintAttributes []string `json:"ConstraintAttributes,omitempty"` DisplayAttributes []string `json:"DisplayAttributes,omitempty"` + PlatformType []string `json:"PlatformType,omitempty"` // Field to hold an Intersight API along with an optional filter to narrow down the search options for target device. - Selector *string `json:"Selector,omitempty"` + Selector *string `json:"Selector,omitempty" validate:"regexp=^$|\\/api\\/v1\\/.*"` SelectorProperty NullableWorkflowSelectorProperty `json:"SelectorProperty,omitempty"` SupportedObjects []string `json:"SupportedObjects,omitempty"` } @@ -447,6 +485,7 @@ func (o *WorkflowTargetProperty) UnmarshalJSON(data []byte) (err error) { varWorkflowTargetProperty.ConnectorAttribute = varWorkflowTargetPropertyWithoutEmbeddedStruct.ConnectorAttribute varWorkflowTargetProperty.ConstraintAttributes = varWorkflowTargetPropertyWithoutEmbeddedStruct.ConstraintAttributes varWorkflowTargetProperty.DisplayAttributes = varWorkflowTargetPropertyWithoutEmbeddedStruct.DisplayAttributes + varWorkflowTargetProperty.PlatformType = varWorkflowTargetPropertyWithoutEmbeddedStruct.PlatformType varWorkflowTargetProperty.Selector = varWorkflowTargetPropertyWithoutEmbeddedStruct.Selector varWorkflowTargetProperty.SelectorProperty = varWorkflowTargetPropertyWithoutEmbeddedStruct.SelectorProperty varWorkflowTargetProperty.SupportedObjects = varWorkflowTargetPropertyWithoutEmbeddedStruct.SupportedObjects @@ -472,6 +511,7 @@ func (o *WorkflowTargetProperty) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "ConnectorAttribute") delete(additionalProperties, "ConstraintAttributes") delete(additionalProperties, "DisplayAttributes") + delete(additionalProperties, "PlatformType") delete(additionalProperties, "Selector") delete(additionalProperties, "SelectorProperty") delete(additionalProperties, "SupportedObjects") diff --git a/intersight_gosdk/model_workflow_task_constraints.go b/intersight_gosdk/model_workflow_task_constraints.go index 9307d1050a..9645055ac9 100644 --- a/intersight_gosdk/model_workflow_task_constraints.go +++ b/intersight_gosdk/model_workflow_task_constraints.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_task_debug_log.go b/intersight_gosdk/model_workflow_task_debug_log.go index 2a91093667..e8203cca38 100644 --- a/intersight_gosdk/model_workflow_task_debug_log.go +++ b/intersight_gosdk/model_workflow_task_debug_log.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_task_debug_log_list.go b/intersight_gosdk/model_workflow_task_debug_log_list.go index 91c90a6b4d..88e656457b 100644 --- a/intersight_gosdk/model_workflow_task_debug_log_list.go +++ b/intersight_gosdk/model_workflow_task_debug_log_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_task_debug_log_response.go b/intersight_gosdk/model_workflow_task_debug_log_response.go index 12d69d8af0..7dc6bd542a 100644 --- a/intersight_gosdk/model_workflow_task_debug_log_response.go +++ b/intersight_gosdk/model_workflow_task_debug_log_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_task_definition.go b/intersight_gosdk/model_workflow_task_definition.go index 15ae27b457..39ee834a48 100644 --- a/intersight_gosdk/model_workflow_task_definition.go +++ b/intersight_gosdk/model_workflow_task_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -34,11 +34,11 @@ type WorkflowTaskDefinition struct { Description *string `json:"Description,omitempty"` InternalProperties NullableWorkflowInternalProperties `json:"InternalProperties,omitempty"` // 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. - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_'.\\/:-]{0,91}$"` // 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. * `IKS-Advantage` - IKS-Advantage as a License type. * `INC-Premier-1GFixed` - Premier 1G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-10GFixed` - Premier 10G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-100GFixed` - Premier 100G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-Mod4Slot` - Premier Modular 4 slot license tier for Intersight Nexus Cloud. * `INC-Premier-Mod8Slot` - Premier Modular 8 slot license tier for Intersight Nexus Cloud. * `INC-Premier-D2OpsFixed` - Premier D2Ops fixed license tier for Intersight Nexus Cloud. * `INC-Premier-D2OpsMod` - Premier D2Ops modular license tier for Intersight Nexus Cloud. * `INC-Premier-CentralizedMod8Slot` - Premier modular license tier of switch type CentralizedMod8Slot for Intersight Nexus Cloud. * `INC-Premier-DistributedMod8Slot` - Premier modular license tier of switch type DistributedMod8Slot for Intersight Nexus Cloud. * `IntersightTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode Intersight tiers. * `IWOTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode IKS tiers. * `IKSTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode IWO tiers. * `INCTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode Nexus tiers. LicenseEntitlement *string `json:"LicenseEntitlement,omitempty"` // 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. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[a-zA-Z0-9_.:-]{0,63}$"` Properties NullableWorkflowProperties `json:"Properties,omitempty"` RollbackTasks []WorkflowRollbackTask `json:"RollbackTasks,omitempty"` // 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. @@ -821,11 +821,11 @@ func (o *WorkflowTaskDefinition) UnmarshalJSON(data []byte) (err error) { Description *string `json:"Description,omitempty"` InternalProperties NullableWorkflowInternalProperties `json:"InternalProperties,omitempty"` // 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. - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_'.\\/:-]{0,91}$"` // 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. * `IKS-Advantage` - IKS-Advantage as a License type. * `INC-Premier-1GFixed` - Premier 1G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-10GFixed` - Premier 10G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-100GFixed` - Premier 100G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-Mod4Slot` - Premier Modular 4 slot license tier for Intersight Nexus Cloud. * `INC-Premier-Mod8Slot` - Premier Modular 8 slot license tier for Intersight Nexus Cloud. * `INC-Premier-D2OpsFixed` - Premier D2Ops fixed license tier for Intersight Nexus Cloud. * `INC-Premier-D2OpsMod` - Premier D2Ops modular license tier for Intersight Nexus Cloud. * `INC-Premier-CentralizedMod8Slot` - Premier modular license tier of switch type CentralizedMod8Slot for Intersight Nexus Cloud. * `INC-Premier-DistributedMod8Slot` - Premier modular license tier of switch type DistributedMod8Slot for Intersight Nexus Cloud. * `IntersightTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode Intersight tiers. * `IWOTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode IKS tiers. * `IKSTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode IWO tiers. * `INCTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode Nexus tiers. LicenseEntitlement *string `json:"LicenseEntitlement,omitempty"` // 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. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[a-zA-Z0-9_.:-]{0,63}$"` Properties NullableWorkflowProperties `json:"Properties,omitempty"` RollbackTasks []WorkflowRollbackTask `json:"RollbackTasks,omitempty"` // 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. diff --git a/intersight_gosdk/model_workflow_task_definition_list.go b/intersight_gosdk/model_workflow_task_definition_list.go index 449be69e4f..2cc0e10064 100644 --- a/intersight_gosdk/model_workflow_task_definition_list.go +++ b/intersight_gosdk/model_workflow_task_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_task_definition_relationship.go b/intersight_gosdk/model_workflow_task_definition_relationship.go index d18e179275..7f24fb9e72 100644 --- a/intersight_gosdk/model_workflow_task_definition_relationship.go +++ b/intersight_gosdk/model_workflow_task_definition_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_task_definition_response.go b/intersight_gosdk/model_workflow_task_definition_response.go index f1dad8ebe4..6343608976 100644 --- a/intersight_gosdk/model_workflow_task_definition_response.go +++ b/intersight_gosdk/model_workflow_task_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_task_info.go b/intersight_gosdk/model_workflow_task_info.go index 29c0551975..29dcbadb8b 100644 --- a/intersight_gosdk/model_workflow_task_info.go +++ b/intersight_gosdk/model_workflow_task_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_task_info_list.go b/intersight_gosdk/model_workflow_task_info_list.go index 6c783de654..08016ab933 100644 --- a/intersight_gosdk/model_workflow_task_info_list.go +++ b/intersight_gosdk/model_workflow_task_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_task_info_relationship.go b/intersight_gosdk/model_workflow_task_info_relationship.go index 9b307f8953..17f7300899 100644 --- a/intersight_gosdk/model_workflow_task_info_relationship.go +++ b/intersight_gosdk/model_workflow_task_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_task_info_response.go b/intersight_gosdk/model_workflow_task_info_response.go index fc7fb30968..9f53fa32c7 100644 --- a/intersight_gosdk/model_workflow_task_info_response.go +++ b/intersight_gosdk/model_workflow_task_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_task_info_update.go b/intersight_gosdk/model_workflow_task_info_update.go index 0ad465381b..cf68c78ae5 100644 --- a/intersight_gosdk/model_workflow_task_info_update.go +++ b/intersight_gosdk/model_workflow_task_info_update.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_task_loop_info.go b/intersight_gosdk/model_workflow_task_loop_info.go index 451ddd9647..5dfca47e53 100644 --- a/intersight_gosdk/model_workflow_task_loop_info.go +++ b/intersight_gosdk/model_workflow_task_loop_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_task_metadata.go b/intersight_gosdk/model_workflow_task_metadata.go index 2943d4d6b3..14cd8105ef 100644 --- a/intersight_gosdk/model_workflow_task_metadata.go +++ b/intersight_gosdk/model_workflow_task_metadata.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,9 +31,9 @@ type WorkflowTaskMetadata struct { // The task metadata description to describe what this task will do when executed. Description *string `json:"Description,omitempty"` // A user friendly short name to identify the task metadata. - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_'.:-]{0,92}$"` // The name of the task metadata. 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. 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. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[a-zA-Z0-9_.:-]{0,63}$"` // An array of relationships to iamRole resources. AssociatedRoles []IamRoleRelationship `json:"AssociatedRoles,omitempty"` Catalog NullableWorkflowCatalogRelationship `json:"Catalog,omitempty"` @@ -394,9 +394,9 @@ func (o *WorkflowTaskMetadata) UnmarshalJSON(data []byte) (err error) { // The task metadata description to describe what this task will do when executed. Description *string `json:"Description,omitempty"` // A user friendly short name to identify the task metadata. - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_'.:-]{0,92}$"` // The name of the task metadata. 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. 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. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[a-zA-Z0-9_.:-]{0,63}$"` // An array of relationships to iamRole resources. AssociatedRoles []IamRoleRelationship `json:"AssociatedRoles,omitempty"` Catalog NullableWorkflowCatalogRelationship `json:"Catalog,omitempty"` diff --git a/intersight_gosdk/model_workflow_task_metadata_list.go b/intersight_gosdk/model_workflow_task_metadata_list.go index 7720aa0879..5969030968 100644 --- a/intersight_gosdk/model_workflow_task_metadata_list.go +++ b/intersight_gosdk/model_workflow_task_metadata_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_task_metadata_relationship.go b/intersight_gosdk/model_workflow_task_metadata_relationship.go index 805ace77f7..e76cd7465e 100644 --- a/intersight_gosdk/model_workflow_task_metadata_relationship.go +++ b/intersight_gosdk/model_workflow_task_metadata_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_task_metadata_response.go b/intersight_gosdk/model_workflow_task_metadata_response.go index bdc8ae9472..8da9a025ce 100644 --- a/intersight_gosdk/model_workflow_task_metadata_response.go +++ b/intersight_gosdk/model_workflow_task_metadata_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_task_retry_info.go b/intersight_gosdk/model_workflow_task_retry_info.go index 08ec590923..0d595d7ea2 100644 --- a/intersight_gosdk/model_workflow_task_retry_info.go +++ b/intersight_gosdk/model_workflow_task_retry_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_template_evaluation.go b/intersight_gosdk/model_workflow_template_evaluation.go index 452dc7032b..2efd463906 100644 --- a/intersight_gosdk/model_workflow_template_evaluation.go +++ b/intersight_gosdk/model_workflow_template_evaluation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_template_function_meta.go b/intersight_gosdk/model_workflow_template_function_meta.go index 6a67a146bf..2241316af3 100644 --- a/intersight_gosdk/model_workflow_template_function_meta.go +++ b/intersight_gosdk/model_workflow_template_function_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_template_function_meta_list.go b/intersight_gosdk/model_workflow_template_function_meta_list.go index fdf3469c52..2908e0d022 100644 --- a/intersight_gosdk/model_workflow_template_function_meta_list.go +++ b/intersight_gosdk/model_workflow_template_function_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_template_function_meta_response.go b/intersight_gosdk/model_workflow_template_function_meta_response.go index a7eaa00e08..31087d247a 100644 --- a/intersight_gosdk/model_workflow_template_function_meta_response.go +++ b/intersight_gosdk/model_workflow_template_function_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_template_parser.go b/intersight_gosdk/model_workflow_template_parser.go index ab2775e46f..3d492b4e38 100644 --- a/intersight_gosdk/model_workflow_template_parser.go +++ b/intersight_gosdk/model_workflow_template_parser.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_ui_display_metadata.go b/intersight_gosdk/model_workflow_ui_display_metadata.go index 21734a6c8d..e8a25fcde6 100644 --- a/intersight_gosdk/model_workflow_ui_display_metadata.go +++ b/intersight_gosdk/model_workflow_ui_display_metadata.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_ui_display_metadata_list.go b/intersight_gosdk/model_workflow_ui_display_metadata_list.go index ccd7e2fc0f..a572a4406c 100644 --- a/intersight_gosdk/model_workflow_ui_display_metadata_list.go +++ b/intersight_gosdk/model_workflow_ui_display_metadata_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_ui_display_metadata_response.go b/intersight_gosdk/model_workflow_ui_display_metadata_response.go index 0ce8e184ff..75b6f95b67 100644 --- a/intersight_gosdk/model_workflow_ui_display_metadata_response.go +++ b/intersight_gosdk/model_workflow_ui_display_metadata_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_ui_form_config.go b/intersight_gosdk/model_workflow_ui_form_config.go index d1c3e96fdd..b9b9086c04 100644 --- a/intersight_gosdk/model_workflow_ui_form_config.go +++ b/intersight_gosdk/model_workflow_ui_form_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_ui_input_filter.go b/intersight_gosdk/model_workflow_ui_input_filter.go index 0223de0655..c2fe6c4e84 100644 --- a/intersight_gosdk/model_workflow_ui_input_filter.go +++ b/intersight_gosdk/model_workflow_ui_input_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,7 +30,7 @@ type WorkflowUiInputFilter struct { ObjectType string `json:"ObjectType"` Filters []string `json:"Filters,omitempty"` // Name for the input definition to which this filter applies. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_). The first and last character in name must be an alphanumeric character. When defining the cascade filter for a sub property, use a period (.) to separate each section of the name like \"StorageConfig.Volume\" where 'StorageConfig' is an input name and 'Volume' is a sub property defined through custom data type definition. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+([a-zA-Z0-9-_.]*[a-zA-Z0-9])*$"` // Help message shown to the user about which prior input needs to be selected to enable the input mapped to this filter. UserHelpMessage *string `json:"UserHelpMessage,omitempty"` AdditionalProperties map[string]interface{} @@ -308,7 +308,7 @@ func (o *WorkflowUiInputFilter) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` Filters []string `json:"Filters,omitempty"` // Name for the input definition to which this filter applies. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_). The first and last character in name must be an alphanumeric character. When defining the cascade filter for a sub property, use a period (.) to separate each section of the name like \"StorageConfig.Volume\" where 'StorageConfig' is an input name and 'Volume' is a sub property defined through custom data type definition. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+([a-zA-Z0-9-_.]*[a-zA-Z0-9])*$"` // Help message shown to the user about which prior input needs to be selected to enable the input mapped to this filter. UserHelpMessage *string `json:"UserHelpMessage,omitempty"` } diff --git a/intersight_gosdk/model_workflow_ui_view_config.go b/intersight_gosdk/model_workflow_ui_view_config.go index 09e051cea6..693291d942 100644 --- a/intersight_gosdk/model_workflow_ui_view_config.go +++ b/intersight_gosdk/model_workflow_ui_view_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_validation_error.go b/intersight_gosdk/model_workflow_validation_error.go index a8c1a39a37..6b68b9390e 100644 --- a/intersight_gosdk/model_workflow_validation_error.go +++ b/intersight_gosdk/model_workflow_validation_error.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_validation_information.go b/intersight_gosdk/model_workflow_validation_information.go index 09e4b87706..30407e723f 100644 --- a/intersight_gosdk/model_workflow_validation_information.go +++ b/intersight_gosdk/model_workflow_validation_information.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_wait_task.go b/intersight_gosdk/model_workflow_wait_task.go index 67a04c8fcb..7cf6257d01 100644 --- a/intersight_gosdk/model_workflow_wait_task.go +++ b/intersight_gosdk/model_workflow_wait_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_wait_task_prompt.go b/intersight_gosdk/model_workflow_wait_task_prompt.go index 1b6f4401b7..d1be2daf5d 100644 --- a/intersight_gosdk/model_workflow_wait_task_prompt.go +++ b/intersight_gosdk/model_workflow_wait_task_prompt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_web_api.go b/intersight_gosdk/model_workflow_web_api.go index 307653b983..05f6a4d109 100644 --- a/intersight_gosdk/model_workflow_web_api.go +++ b/intersight_gosdk/model_workflow_web_api.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_worker_task.go b/intersight_gosdk/model_workflow_worker_task.go index 59fb06c31c..d805d88233 100644 --- a/intersight_gosdk/model_workflow_worker_task.go +++ b/intersight_gosdk/model_workflow_worker_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_workflow_ctx.go b/intersight_gosdk/model_workflow_workflow_ctx.go index 07c0ad2688..bbcb6d3950 100644 --- a/intersight_gosdk/model_workflow_workflow_ctx.go +++ b/intersight_gosdk/model_workflow_workflow_ctx.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_workflow_definition.go b/intersight_gosdk/model_workflow_workflow_definition.go index 13968a9326..8a390302f7 100644 --- a/intersight_gosdk/model_workflow_workflow_definition.go +++ b/intersight_gosdk/model_workflow_workflow_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -37,7 +37,7 @@ type WorkflowWorkflowDefinition struct { InputDefinition []WorkflowBaseDataType `json:"InputDefinition,omitempty"` InputParameterSet []WorkflowParameterSet `json:"InputParameterSet,omitempty"` // A user friendly short name to identify the workflow. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), forward slash (/), or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_.\\/:-]{0,91}$"` // License entitlement required to run this workflow. It is calculated based on the highest license requirement of all its tasks. * `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. * `IKS-Advantage` - IKS-Advantage as a License type. * `INC-Premier-1GFixed` - Premier 1G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-10GFixed` - Premier 10G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-100GFixed` - Premier 100G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-Mod4Slot` - Premier Modular 4 slot license tier for Intersight Nexus Cloud. * `INC-Premier-Mod8Slot` - Premier Modular 8 slot license tier for Intersight Nexus Cloud. * `INC-Premier-D2OpsFixed` - Premier D2Ops fixed license tier for Intersight Nexus Cloud. * `INC-Premier-D2OpsMod` - Premier D2Ops modular license tier for Intersight Nexus Cloud. * `INC-Premier-CentralizedMod8Slot` - Premier modular license tier of switch type CentralizedMod8Slot for Intersight Nexus Cloud. * `INC-Premier-DistributedMod8Slot` - Premier modular license tier of switch type DistributedMod8Slot for Intersight Nexus Cloud. * `IntersightTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode Intersight tiers. * `IWOTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode IKS tiers. * `IKSTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode IWO tiers. * `INCTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode Nexus tiers. LicenseEntitlement *string `json:"LicenseEntitlement,omitempty"` // The maximum number of tasks that can be executed on this workflow. @@ -47,7 +47,7 @@ type WorkflowWorkflowDefinition struct { // The user identifier who last updated the workflow definition. ModUser *string `json:"ModUser,omitempty"` // The name for this workflow. You can have multiple versions of the workflow with the same name. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[a-zA-Z0-9_.-]{0,63}$"` OutputDefinition []WorkflowBaseDataType `json:"OutputDefinition,omitempty"` // The output mappings for the workflow. The schema for outputs of a workflow is defined using OutputDefinition. The outputs for workflows that we want to export out at the end of the workflow can be mapped from task outputs, workflow inputs, or workflow variables. Any task output, workflow input, or workflow variable can be mapped to a workflow output as long as the types are compatible. The format to specify the mapping is '${ 'workflow | '. 'output |input | variable'.[.]}'. First, either the keyword 'workflow' or the name of the task in the workflow must be given. If a task name is used, then it must be followed by the keyword 'output', if the keyword workflow was used, then it must be followed by the keyword 'input' or 'variable'. Following this '' must be the name of either input, output, or variable that must be mapped as workflow output. The last part of the mapping can be an optional to extract specific fields on the data. OutputParameters interface{} `json:"OutputParameters,omitempty"` @@ -1111,7 +1111,7 @@ func (o *WorkflowWorkflowDefinition) UnmarshalJSON(data []byte) (err error) { InputDefinition []WorkflowBaseDataType `json:"InputDefinition,omitempty"` InputParameterSet []WorkflowParameterSet `json:"InputParameterSet,omitempty"` // A user friendly short name to identify the workflow. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), forward slash (/), or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_.\\/:-]{0,91}$"` // License entitlement required to run this workflow. It is calculated based on the highest license requirement of all its tasks. * `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. * `IKS-Advantage` - IKS-Advantage as a License type. * `INC-Premier-1GFixed` - Premier 1G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-10GFixed` - Premier 10G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-100GFixed` - Premier 100G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-Mod4Slot` - Premier Modular 4 slot license tier for Intersight Nexus Cloud. * `INC-Premier-Mod8Slot` - Premier Modular 8 slot license tier for Intersight Nexus Cloud. * `INC-Premier-D2OpsFixed` - Premier D2Ops fixed license tier for Intersight Nexus Cloud. * `INC-Premier-D2OpsMod` - Premier D2Ops modular license tier for Intersight Nexus Cloud. * `INC-Premier-CentralizedMod8Slot` - Premier modular license tier of switch type CentralizedMod8Slot for Intersight Nexus Cloud. * `INC-Premier-DistributedMod8Slot` - Premier modular license tier of switch type DistributedMod8Slot for Intersight Nexus Cloud. * `IntersightTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode Intersight tiers. * `IWOTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode IKS tiers. * `IKSTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode IWO tiers. * `INCTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode Nexus tiers. LicenseEntitlement *string `json:"LicenseEntitlement,omitempty"` // The maximum number of tasks that can be executed on this workflow. @@ -1121,7 +1121,7 @@ func (o *WorkflowWorkflowDefinition) UnmarshalJSON(data []byte) (err error) { // The user identifier who last updated the workflow definition. ModUser *string `json:"ModUser,omitempty"` // The name for this workflow. You can have multiple versions of the workflow with the same name. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[a-zA-Z0-9_.-]{0,63}$"` OutputDefinition []WorkflowBaseDataType `json:"OutputDefinition,omitempty"` // The output mappings for the workflow. The schema for outputs of a workflow is defined using OutputDefinition. The outputs for workflows that we want to export out at the end of the workflow can be mapped from task outputs, workflow inputs, or workflow variables. Any task output, workflow input, or workflow variable can be mapped to a workflow output as long as the types are compatible. The format to specify the mapping is '${ 'workflow | '. 'output |input | variable'.[.]}'. First, either the keyword 'workflow' or the name of the task in the workflow must be given. If a task name is used, then it must be followed by the keyword 'output', if the keyword workflow was used, then it must be followed by the keyword 'input' or 'variable'. Following this '' must be the name of either input, output, or variable that must be mapped as workflow output. The last part of the mapping can be an optional to extract specific fields on the data. OutputParameters interface{} `json:"OutputParameters,omitempty"` diff --git a/intersight_gosdk/model_workflow_workflow_definition_list.go b/intersight_gosdk/model_workflow_workflow_definition_list.go index 0cb8c68e56..64ad6ea49b 100644 --- a/intersight_gosdk/model_workflow_workflow_definition_list.go +++ b/intersight_gosdk/model_workflow_workflow_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_workflow_definition_relationship.go b/intersight_gosdk/model_workflow_workflow_definition_relationship.go index d7a63efb61..9d6b5dcc6d 100644 --- a/intersight_gosdk/model_workflow_workflow_definition_relationship.go +++ b/intersight_gosdk/model_workflow_workflow_definition_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_workflow_definition_response.go b/intersight_gosdk/model_workflow_workflow_definition_response.go index 92aad81a4d..7d09279f69 100644 --- a/intersight_gosdk/model_workflow_workflow_definition_response.go +++ b/intersight_gosdk/model_workflow_workflow_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_workflow_engine_properties.go b/intersight_gosdk/model_workflow_workflow_engine_properties.go index e0982ca41e..f1af3e60a9 100644 --- a/intersight_gosdk/model_workflow_workflow_engine_properties.go +++ b/intersight_gosdk/model_workflow_workflow_engine_properties.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_workflow_info.go b/intersight_gosdk/model_workflow_workflow_info.go index c20624b922..7b001cfa0b 100644 --- a/intersight_gosdk/model_workflow_workflow_info.go +++ b/intersight_gosdk/model_workflow_workflow_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -49,7 +49,7 @@ type WorkflowWorkflowInfo struct { LastAction *string `json:"LastAction,omitempty"` Message []WorkflowMessage `json:"Message,omitempty"` // A name of the workflow execution instance. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[^:]{1,92}$"` // All the generated outputs for the workflow. The schema for the outputs are defined in the OutputDefinition section of the WorkflowDefinition. The OutputDefinition will provide a list of output fields that could be generated after workflow execution is completed and the associated datatype of the outputs. For more information please refer to OutputDefinition property in WorkflowDefinition resource. The output for the workflow is generated as a collection of key-value pairs, where key is the name of the output and value is any valid JSON data which conforms to the datatype of output as specified in the OutputDefinition. During workflow definition design, if a workflow is included as a sub-workflow inside a parent workflow then the outputs generated by the sub-workflow can be used in the workflow design. For example, if workflow was included into parent workflow as 'SubWorkflowSample1', then that output can be referred as 'SubWorkflowSample1.output.'. In the output is referred directly in a mapping it will be in the format '${SubWorkflowSample1.output.}' or inside a template mapping will be in the format '{{SubWorkflowSample1.output.}}'. Output interface{} `json:"Output,omitempty"` // Denotes the reason workflow is in paused status. * `None` - Pause reason is none, which indicates there is no reason for the pause state. * `TaskWithWarning` - Pause reason indicates the workflow is in this state due to a task that has a status as completed with warnings. * `SystemMaintenance` - Pause reason indicates the workflow is in this state based on actions of system admin for maintenance. @@ -1658,7 +1658,7 @@ func (o *WorkflowWorkflowInfo) UnmarshalJSON(data []byte) (err error) { LastAction *string `json:"LastAction,omitempty"` Message []WorkflowMessage `json:"Message,omitempty"` // A name of the workflow execution instance. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[^:]{1,92}$"` // All the generated outputs for the workflow. The schema for the outputs are defined in the OutputDefinition section of the WorkflowDefinition. The OutputDefinition will provide a list of output fields that could be generated after workflow execution is completed and the associated datatype of the outputs. For more information please refer to OutputDefinition property in WorkflowDefinition resource. The output for the workflow is generated as a collection of key-value pairs, where key is the name of the output and value is any valid JSON data which conforms to the datatype of output as specified in the OutputDefinition. During workflow definition design, if a workflow is included as a sub-workflow inside a parent workflow then the outputs generated by the sub-workflow can be used in the workflow design. For example, if workflow was included into parent workflow as 'SubWorkflowSample1', then that output can be referred as 'SubWorkflowSample1.output.'. In the output is referred directly in a mapping it will be in the format '${SubWorkflowSample1.output.}' or inside a template mapping will be in the format '{{SubWorkflowSample1.output.}}'. Output interface{} `json:"Output,omitempty"` // Denotes the reason workflow is in paused status. * `None` - Pause reason is none, which indicates there is no reason for the pause state. * `TaskWithWarning` - Pause reason indicates the workflow is in this state due to a task that has a status as completed with warnings. * `SystemMaintenance` - Pause reason indicates the workflow is in this state based on actions of system admin for maintenance. diff --git a/intersight_gosdk/model_workflow_workflow_info_auto_restart_properties.go b/intersight_gosdk/model_workflow_workflow_info_auto_restart_properties.go index ec97c40a51..d396e80bfc 100644 --- a/intersight_gosdk/model_workflow_workflow_info_auto_restart_properties.go +++ b/intersight_gosdk/model_workflow_workflow_info_auto_restart_properties.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_workflow_info_list.go b/intersight_gosdk/model_workflow_workflow_info_list.go index ef30a8aaf4..cb3eacc6fc 100644 --- a/intersight_gosdk/model_workflow_workflow_info_list.go +++ b/intersight_gosdk/model_workflow_workflow_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_workflow_info_properties.go b/intersight_gosdk/model_workflow_workflow_info_properties.go index 71ddb817c6..29e51ee961 100644 --- a/intersight_gosdk/model_workflow_workflow_info_properties.go +++ b/intersight_gosdk/model_workflow_workflow_info_properties.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_workflow_info_relationship.go b/intersight_gosdk/model_workflow_workflow_info_relationship.go index bb799b015b..f064f272c5 100644 --- a/intersight_gosdk/model_workflow_workflow_info_relationship.go +++ b/intersight_gosdk/model_workflow_workflow_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_workflow_info_response.go b/intersight_gosdk/model_workflow_workflow_info_response.go index 4b099ae6bd..fea514fd94 100644 --- a/intersight_gosdk/model_workflow_workflow_info_response.go +++ b/intersight_gosdk/model_workflow_workflow_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_workflow_metadata.go b/intersight_gosdk/model_workflow_workflow_metadata.go index 842835a02a..6b90bd528d 100644 --- a/intersight_gosdk/model_workflow_workflow_metadata.go +++ b/intersight_gosdk/model_workflow_workflow_metadata.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,9 +31,9 @@ type WorkflowWorkflowMetadata struct { // The description for this workflow. Description *string `json:"Description,omitempty"` // A user friendly short name to identify the workflow metadata. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ) or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_.:-]{0,91}$"` // The name for this workflow metadata. You can have multiple versions of the workflow with the same name. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[a-zA-Z0-9_.-]{0,63}$"` // An array of relationships to iamRole resources. AssociatedRoles []IamRoleRelationship `json:"AssociatedRoles,omitempty"` Catalog NullableWorkflowCatalogRelationship `json:"Catalog,omitempty"` @@ -394,9 +394,9 @@ func (o *WorkflowWorkflowMetadata) UnmarshalJSON(data []byte) (err error) { // The description for this workflow. Description *string `json:"Description,omitempty"` // A user friendly short name to identify the workflow metadata. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ) or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_.:-]{0,91}$"` // The name for this workflow metadata. You can have multiple versions of the workflow with the same name. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[a-zA-Z0-9_.-]{0,63}$"` // An array of relationships to iamRole resources. AssociatedRoles []IamRoleRelationship `json:"AssociatedRoles,omitempty"` Catalog NullableWorkflowCatalogRelationship `json:"Catalog,omitempty"` diff --git a/intersight_gosdk/model_workflow_workflow_metadata_list.go b/intersight_gosdk/model_workflow_workflow_metadata_list.go index 2b4ec2a198..a08f286bac 100644 --- a/intersight_gosdk/model_workflow_workflow_metadata_list.go +++ b/intersight_gosdk/model_workflow_workflow_metadata_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_workflow_metadata_relationship.go b/intersight_gosdk/model_workflow_workflow_metadata_relationship.go index 776e880268..5699a18dbb 100644 --- a/intersight_gosdk/model_workflow_workflow_metadata_relationship.go +++ b/intersight_gosdk/model_workflow_workflow_metadata_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_workflow_metadata_response.go b/intersight_gosdk/model_workflow_workflow_metadata_response.go index a2b3f2d436..8798e9bdc1 100644 --- a/intersight_gosdk/model_workflow_workflow_metadata_response.go +++ b/intersight_gosdk/model_workflow_workflow_metadata_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_workflow_properties.go b/intersight_gosdk/model_workflow_workflow_properties.go index 4c598ec883..30619849dd 100644 --- a/intersight_gosdk/model_workflow_workflow_properties.go +++ b/intersight_gosdk/model_workflow_workflow_properties.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_workflow_task.go b/intersight_gosdk/model_workflow_workflow_task.go index 35857431dc..31d077e5be 100644 --- a/intersight_gosdk/model_workflow_workflow_task.go +++ b/intersight_gosdk/model_workflow_workflow_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type WorkflowWorkflowTask struct { // A user defined label identifier of the workflow task used for UI display. Label *string `json:"Label,omitempty"` // The name of the task within the workflow and it must be unique among all WorkflowTasks within a workflow definition. This name serves as the internal unique identifier for the task and is used to pick input and output parameters to feed into other tasks. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_:-]{1,64}$"` AdditionalProperties map[string]interface{} } @@ -288,7 +288,7 @@ func (o *WorkflowWorkflowTask) UnmarshalJSON(data []byte) (err error) { // A user defined label identifier of the workflow task used for UI display. Label *string `json:"Label,omitempty"` // The name of the task within the workflow and it must be unique among all WorkflowTasks within a workflow definition. This name serves as the internal unique identifier for the task and is used to pick input and output parameters to feed into other tasks. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_:-]{1,64}$"` } varWorkflowWorkflowTaskWithoutEmbeddedStruct := WorkflowWorkflowTaskWithoutEmbeddedStruct{} diff --git a/intersight_gosdk/model_workflow_xml_api.go b/intersight_gosdk/model_workflow_xml_api.go index 8e009d797f..0c23b21dba 100644 --- a/intersight_gosdk/model_workflow_xml_api.go +++ b/intersight_gosdk/model_workflow_xml_api.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workspace_folder.go b/intersight_gosdk/model_workspace_folder.go index f179297327..db5b0c229f 100644 --- a/intersight_gosdk/model_workspace_folder.go +++ b/intersight_gosdk/model_workspace_folder.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type WorkspaceFolder struct { // The UserID or email who last modified this folder. ModUser *string `json:"ModUser,omitempty"` // The name for this folder. You can have multiple versions of the folder with the same name. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_.\\/:-]{0,91}$"` // An array of relationships to moBaseMo resources. Assets []MoBaseMoRelationship `json:"Assets,omitempty"` Catalog NullableWorkflowCatalogRelationship `json:"Catalog,omitempty"` @@ -524,7 +524,7 @@ func (o *WorkspaceFolder) UnmarshalJSON(data []byte) (err error) { // The UserID or email who last modified this folder. ModUser *string `json:"ModUser,omitempty"` // The name for this folder. You can have multiple versions of the folder with the same name. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_.\\/:-]{0,91}$"` // An array of relationships to moBaseMo resources. Assets []MoBaseMoRelationship `json:"Assets,omitempty"` Catalog NullableWorkflowCatalogRelationship `json:"Catalog,omitempty"` diff --git a/intersight_gosdk/model_workspace_folder_list.go b/intersight_gosdk/model_workspace_folder_list.go index 7a8bd9641a..094962da0b 100644 --- a/intersight_gosdk/model_workspace_folder_list.go +++ b/intersight_gosdk/model_workspace_folder_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workspace_folder_relationship.go b/intersight_gosdk/model_workspace_folder_relationship.go index c6598c121f..18e0f58d51 100644 --- a/intersight_gosdk/model_workspace_folder_relationship.go +++ b/intersight_gosdk/model_workspace_folder_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workspace_folder_response.go b/intersight_gosdk/model_workspace_folder_response.go index 95e9cd2da0..270242e0b1 100644 --- a/intersight_gosdk/model_workspace_folder_response.go +++ b/intersight_gosdk/model_workspace_folder_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_x509_certificate.go b/intersight_gosdk/model_x509_certificate.go index ffeeb71b16..1171e078cf 100644 --- a/intersight_gosdk/model_x509_certificate.go +++ b/intersight_gosdk/model_x509_certificate.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/response.go b/intersight_gosdk/response.go index c35a710942..d97aaef7af 100644 --- a/intersight_gosdk/response.go +++ b/intersight_gosdk/response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/signing.go b/intersight_gosdk/signing.go index 42024e542d..1f10fcfc46 100644 --- a/intersight_gosdk/signing.go +++ b/intersight_gosdk/signing.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/utils.go b/intersight_gosdk/utils.go index 5aa8f9f2a1..76610094a6 100644 --- a/intersight_gosdk/utils.go +++ b/intersight_gosdk/utils.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -12,7 +12,9 @@ Contact: intersight@cisco.com package intersight import ( + "bytes" "encoding/json" + "fmt" "reflect" "time" ) @@ -346,3 +348,15 @@ func IsNil(i interface{}) bool { type MappedNullable interface { ToMap() (map[string]interface{}, error) } + +// A wrapper for strict JSON decoding +func newStrictDecoder(data []byte) *json.Decoder { + dec := json.NewDecoder(bytes.NewBuffer(data)) + dec.DisallowUnknownFields() + return dec +} + +// Prevent trying to import "fmt" +func reportError(format string, a ...interface{}) error { + return fmt.Errorf(format, a...) +} diff --git a/spec/intersight-openapi-v3.json b/spec/intersight-openapi-v3.json index 2d2c5ff0dd..381c30d65d 100644 --- a/spec/intersight-openapi-v3.json +++ b/spec/intersight-openapi-v3.json @@ -2,7 +2,7 @@ "openapi": "3.0.2", "info": { "description": "Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and\n3rd party IT infrastructure. This platform offers an intelligent level of management that enables\nIT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior\ngenerations of tools. Cisco Intersight provides an integrated and intuitive management experience for\nresources in the traditional data center as well as at the edge. With flexible deployment options to address\ncomplex security needs, getting started with Intersight is quick and easy.\nCisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment,\nconfiguration, and ongoing maintenance. The model-based deployment works for a single system in a remote\nlocation or hundreds of systems in a data center and enables rapid, standardized configuration and deployment.\nIt also streamlines maintaining those systems whether you are working with small or very large configurations.\nThe Intersight OpenAPI document defines the complete set of properties that are returned in the\nHTTP response. From that perspective, a client can expect that no additional properties are returned,\nunless these properties are explicitly defined in the OpenAPI document.\nHowever, when a client uses an older version of the Intersight OpenAPI document, the server may\nsend additional properties because the software is more recent than the client. In that case, the client\nmay receive properties that it does not know about.\nSome generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document.\n", - "version": "1.0.11-17956", + "version": "1.0.11-18012", "title": "Cisco Intersight", "license": { "name": "Apache License, Version 2.0", @@ -398869,6 +398869,7 @@ "asset.VirtualizationAmazonWebServiceOptions": { "title": "Asset:Virtualization Amazon Web Service Options", "description": "Captures Virtualization Service configuration specific to AWS.", + "deprecated": true, "x-allOf-name": "asset.VirtualizationAmazonWebServiceOptions", "allOf": [ { @@ -398931,6 +398932,7 @@ "asset.VirtualizationService": { "title": "Asset:Virtualization Service", "description": "The necessary configuration details to enable Intersight Virtualization features on the selected managed target.", + "deprecated": true, "x-allOf-name": "asset.VirtualizationService", "allOf": [ { @@ -511949,6 +511951,12 @@ "readOnly": true, "x-omitempty": true }, + "UserLabel": { + "description": "The user defined label assigned to the server.", + "type": "string", + "readOnly": true, + "x-omitempty": true + }, "Vendor": { "description": "This field identifies the vendor of the given component.", "type": "string", @@ -604490,15 +604498,15 @@ "x-enum-as-string": true }, "Label": { - "description": "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 have an alphanumeric character.", + "description": "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 (/), round parenthesis ( () ), or an underscore (_) and must have an alphanumeric character.", "type": "string", - "pattern": "^[a-zA-Z0-9]+[+\\s\\/a-zA-Z0-9_'.:-]{0,92}$", + "pattern": "^[a-zA-Z0-9]+[+\\s\\/a-zA-Z0-9)(_'.:-]{0,92}$", "x-omitempty": true }, "Value": { - "description": "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 (_).", + "description": "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 ( ), round parenthesis ( () ), forward slash (/), or an underscore (_).", "type": "string", - "pattern": "^[a-zA-Z0-9_.:-]*[+\\s\\/a-zA-Z0-9_.:-]{1,64}$", + "pattern": "^[a-zA-Z0-9_.:-]*[+\\s\\/a-zA-Z0-9)(_.:-]{1,64}$", "x-omitempty": true } } @@ -609227,6 +609235,16 @@ "minItems": 1, "nullable": true }, + "PlatformType": { + "type": "array", + "items": { + "description": "Platform Type property defines target device type. Type must match the enumerations supported for platform types.", + "type": "string", + "readOnly": true, + "x-omitempty": true + }, + "nullable": true + }, "Selector": { "description": "Field to hold an Intersight API along with an optional filter to narrow down the search options for target device.", "type": "string", diff --git a/tests/common/main.tf b/tests/common/main.tf index 1f4655b0f7..648f440bfa 100644 --- a/tests/common/main.tf +++ b/tests/common/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { intersight = { source = "CiscoDevNet/intersight" - version = "1.0.52" + version = "1.0.53" } } } diff --git a/tests/data_sources/main.tf b/tests/data_sources/main.tf index b67a65a3fe..f18991da0a 100644 --- a/tests/data_sources/main.tf +++ b/tests/data_sources/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { intersight = { source = "CiscoDevNet/intersight" - version = "1.0.52" + version = "1.0.53" } } } diff --git a/tests/iks/main.tf b/tests/iks/main.tf index b67a65a3fe..f18991da0a 100644 --- a/tests/iks/main.tf +++ b/tests/iks/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { intersight = { source = "CiscoDevNet/intersight" - version = "1.0.52" + version = "1.0.53" } } } diff --git a/tests/negative_cases/main.tf b/tests/negative_cases/main.tf index 1f4655b0f7..648f440bfa 100644 --- a/tests/negative_cases/main.tf +++ b/tests/negative_cases/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { intersight = { source = "CiscoDevNet/intersight" - version = "1.0.52" + version = "1.0.53" } } } diff --git a/tests/only_post/main.tf b/tests/only_post/main.tf index 9c53d0c92f..577ee5a160 100644 --- a/tests/only_post/main.tf +++ b/tests/only_post/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { intersight = { source = "CiscoDevNet/intersight" - version = "1.0.52" + version = "1.0.53" } } } diff --git a/tests/server_configurations/main.tf b/tests/server_configurations/main.tf index 1f4655b0f7..648f440bfa 100644 --- a/tests/server_configurations/main.tf +++ b/tests/server_configurations/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { intersight = { source = "CiscoDevNet/intersight" - version = "1.0.52" + version = "1.0.53" } } } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/README.md b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/README.md index 8582f2acf9..7f7461739d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/README.md +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/README.md @@ -22,9 +22,9 @@ Some generated SDKs perform a strict validation of the HTTP response body agains ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 1.0.11-17956 -- Package version: 1.0.11.17956 -- Generator version: 7.7.0-SNAPSHOT +- API version: 1.0.11-18012 +- Package version: 1.0.11.18012 +- Generator version: 7.9.0-SNAPSHOT - Build package: org.openapitools.codegen.languages.GoClientCodegen For more information, please visit [https://intersight.com/help](https://intersight.com/help) diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_aaa.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_aaa.go index ec0c5e85b7..3a447495ae 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_aaa.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_aaa.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *AaaApiService) CreateAaaRetentionPolicyExecute(r ApiCreateAaaRetentionP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.aaaRetentionPolicy @@ -481,52 +481,52 @@ func (a *AaaApiService) GetAaaAuditRecordListExecute(r ApiGetAaaAuditRecordListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -910,52 +910,52 @@ func (a *AaaApiService) GetAaaRetentionConfigListExecute(r ApiGetAaaRetentionCon localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1339,52 +1339,52 @@ func (a *AaaApiService) GetAaaRetentionPolicyListExecute(r ApiGetAaaRetentionPol localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1575,7 +1575,7 @@ func (a *AaaApiService) PatchAaaRetentionPolicyExecute(r ApiPatchAaaRetentionPol localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.aaaRetentionPolicy @@ -1751,7 +1751,7 @@ func (a *AaaApiService) UpdateAaaRetentionPolicyExecute(r ApiUpdateAaaRetentionP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.aaaRetentionPolicy diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_access.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_access.go index ab90bad64f..ce8290ec40 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_access.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_access.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *AccessApiService) CreateAccessPolicyExecute(r ApiCreateAccessPolicyRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.accessPolicy @@ -623,52 +623,52 @@ func (a *AccessApiService) GetAccessIpAddressListExecute(r ApiGetAccessIpAddress localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1206,52 +1206,52 @@ func (a *AccessApiService) GetAccessPolicyInventoryListExecute(r ApiGetAccessPol localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1481,52 +1481,52 @@ func (a *AccessApiService) GetAccessPolicyListExecute(r ApiGetAccessPolicyListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1717,7 +1717,7 @@ func (a *AccessApiService) PatchAccessPolicyExecute(r ApiPatchAccessPolicyReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.accessPolicy @@ -1893,7 +1893,7 @@ func (a *AccessApiService) UpdateAccessPolicyExecute(r ApiUpdateAccessPolicyRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.accessPolicy diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_adapter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_adapter.go index 668de4a698..53ec3ebdc7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_adapter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_adapter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *AdapterApiService) CreateAdapterConfigPolicyExecute(r ApiCreateAdapterC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.adapterConfigPolicy @@ -623,52 +623,52 @@ func (a *AdapterApiService) GetAdapterConfigPolicyListExecute(r ApiGetAdapterCon localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *AdapterApiService) GetAdapterExtEthInterfaceListExecute(r ApiGetAdapter localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1481,52 +1481,52 @@ func (a *AdapterApiService) GetAdapterHostEthInterfaceListExecute(r ApiGetAdapte localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1910,52 +1910,52 @@ func (a *AdapterApiService) GetAdapterHostFcInterfaceListExecute(r ApiGetAdapter localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2339,52 +2339,52 @@ func (a *AdapterApiService) GetAdapterHostIscsiInterfaceListExecute(r ApiGetAdap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2922,52 +2922,52 @@ func (a *AdapterApiService) GetAdapterUnitExpanderListExecute(r ApiGetAdapterUni localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3197,52 +3197,52 @@ func (a *AdapterApiService) GetAdapterUnitListExecute(r ApiGetAdapterUnitListReq localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3433,7 +3433,7 @@ func (a *AdapterApiService) PatchAdapterConfigPolicyExecute(r ApiPatchAdapterCon localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.adapterConfigPolicy @@ -3609,7 +3609,7 @@ func (a *AdapterApiService) PatchAdapterHostEthInterfaceExecute(r ApiPatchAdapte localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.adapterHostEthInterface @@ -3785,7 +3785,7 @@ func (a *AdapterApiService) PatchAdapterHostFcInterfaceExecute(r ApiPatchAdapter localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.adapterHostFcInterface @@ -3961,7 +3961,7 @@ func (a *AdapterApiService) UpdateAdapterConfigPolicyExecute(r ApiUpdateAdapterC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.adapterConfigPolicy @@ -4137,7 +4137,7 @@ func (a *AdapterApiService) UpdateAdapterHostEthInterfaceExecute(r ApiUpdateAdap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.adapterHostEthInterface @@ -4313,7 +4313,7 @@ func (a *AdapterApiService) UpdateAdapterHostFcInterfaceExecute(r ApiUpdateAdapt localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.adapterHostFcInterface diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_apic.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_apic.go index 4bef7cdef3..7ba1a82bd8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_apic.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_apic.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *ApicApiService) GetApicAciPodListExecute(r ApiGetApicAciPodListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -882,52 +882,52 @@ func (a *ApicApiService) GetApicApplicationEndpointGroupListExecute(r ApiGetApic localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *ApicApiService) GetApicApplicationListExecute(r ApiGetApicApplicationLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1586,52 +1586,52 @@ func (a *ApicApiService) GetApicBridgeDomainListExecute(r ApiGetApicBridgeDomain localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2015,52 +2015,52 @@ func (a *ApicApiService) GetApicExternalRoutedLayerThreeDomainListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2598,52 +2598,52 @@ func (a *ApicApiService) GetApicFabricLeafNodeInterfaceListExecute(r ApiGetApicF localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2873,52 +2873,52 @@ func (a *ApicApiService) GetApicFabricLeafNodeListExecute(r ApiGetApicFabricLeaf localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3302,52 +3302,52 @@ func (a *ApicApiService) GetApicOutListExecute(r ApiGetApicOutListRequest) (*Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3731,52 +3731,52 @@ func (a *ApicApiService) GetApicSubnetListExecute(r ApiGetApicSubnetListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4160,52 +4160,52 @@ func (a *ApicApiService) GetApicTenantListExecute(r ApiGetApicTenantListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4589,52 +4589,52 @@ func (a *ApicApiService) GetApicVpcGroupListExecute(r ApiGetApicVpcGroupListRequ localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5018,52 +5018,52 @@ func (a *ApicApiService) GetApicVrfsListExecute(r ApiGetApicVrfsListRequest) (*A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_appliance.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_appliance.go index fbaa5364f4..a3f846421f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_appliance.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_appliance.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *ApplianceApiService) CreateApplianceAutoRmaPolicyExecute(r ApiCreateApp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.applianceAutoRmaPolicy @@ -291,10 +291,10 @@ func (a *ApplianceApiService) CreateApplianceBackupExecute(r ApiCreateApplianceB localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.applianceBackup @@ -473,10 +473,10 @@ func (a *ApplianceApiService) CreateApplianceBackupPolicyExecute(r ApiCreateAppl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.applianceBackupPolicy @@ -655,10 +655,10 @@ func (a *ApplianceApiService) CreateApplianceClusterInfoExecute(r ApiCreateAppli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.applianceClusterInfo @@ -837,10 +837,10 @@ func (a *ApplianceApiService) CreateApplianceClusterReplaceNodeExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.applianceClusterReplaceNode @@ -1019,10 +1019,10 @@ func (a *ApplianceApiService) CreateApplianceDataExportPolicyExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.applianceDataExportPolicy @@ -1201,10 +1201,10 @@ func (a *ApplianceApiService) CreateApplianceDeviceClaimExecute(r ApiCreateAppli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.applianceDeviceClaim @@ -1383,10 +1383,10 @@ func (a *ApplianceApiService) CreateApplianceDiagSettingExecute(r ApiCreateAppli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.applianceDiagSetting @@ -1565,10 +1565,10 @@ func (a *ApplianceApiService) CreateApplianceExternalSyslogSettingExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.applianceExternalSyslogSetting @@ -1747,10 +1747,10 @@ func (a *ApplianceApiService) CreateApplianceRemoteFileImportExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.applianceRemoteFileImport @@ -1929,10 +1929,10 @@ func (a *ApplianceApiService) CreateApplianceRestoreExecute(r ApiCreateAppliance localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.applianceRestore @@ -3011,52 +3011,52 @@ func (a *ApplianceApiService) GetApplianceAppOpStatusListExecute(r ApiGetApplian localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3440,52 +3440,52 @@ func (a *ApplianceApiService) GetApplianceAppStatusListExecute(r ApiGetAppliance localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3869,52 +3869,52 @@ func (a *ApplianceApiService) GetApplianceAutoRmaPolicyListExecute(r ApiGetAppli localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4298,52 +4298,52 @@ func (a *ApplianceApiService) GetApplianceBackupListExecute(r ApiGetApplianceBac localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4727,52 +4727,52 @@ func (a *ApplianceApiService) GetApplianceBackupMonitorListExecute(r ApiGetAppli localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5156,52 +5156,52 @@ func (a *ApplianceApiService) GetApplianceBackupPolicyListExecute(r ApiGetApplia localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5585,52 +5585,52 @@ func (a *ApplianceApiService) GetApplianceBackupRotateDataListExecute(r ApiGetAp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6014,52 +6014,52 @@ func (a *ApplianceApiService) GetApplianceCertificateSettingListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6443,52 +6443,52 @@ func (a *ApplianceApiService) GetApplianceClusterInfoListExecute(r ApiGetApplian localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6872,52 +6872,52 @@ func (a *ApplianceApiService) GetApplianceClusterInstallListExecute(r ApiGetAppl localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7301,52 +7301,52 @@ func (a *ApplianceApiService) GetApplianceClusterReplaceNodeListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7730,52 +7730,52 @@ func (a *ApplianceApiService) GetApplianceDataExportPolicyListExecute(r ApiGetAp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8159,52 +8159,52 @@ func (a *ApplianceApiService) GetApplianceDeviceCertificateListExecute(r ApiGetA localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8588,52 +8588,52 @@ func (a *ApplianceApiService) GetApplianceDeviceClaimListExecute(r ApiGetApplian localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9017,52 +9017,52 @@ func (a *ApplianceApiService) GetApplianceDeviceClusterInstallListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9446,52 +9446,52 @@ func (a *ApplianceApiService) GetApplianceDeviceStateListExecute(r ApiGetApplian localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9875,52 +9875,52 @@ func (a *ApplianceApiService) GetApplianceDeviceUpgradePolicyListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10304,52 +10304,52 @@ func (a *ApplianceApiService) GetApplianceDiagSettingListExecute(r ApiGetApplian localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10733,52 +10733,52 @@ func (a *ApplianceApiService) GetApplianceExternalSyslogSettingListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11162,52 +11162,52 @@ func (a *ApplianceApiService) GetApplianceFileGatewayListExecute(r ApiGetApplian localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11591,52 +11591,52 @@ func (a *ApplianceApiService) GetApplianceFileSystemOpStatusListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12020,52 +12020,52 @@ func (a *ApplianceApiService) GetApplianceFileSystemStatusListExecute(r ApiGetAp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12449,52 +12449,52 @@ func (a *ApplianceApiService) GetApplianceGroupOpStatusListExecute(r ApiGetAppli localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12878,52 +12878,52 @@ func (a *ApplianceApiService) GetApplianceGroupStatusListExecute(r ApiGetApplian localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13307,52 +13307,52 @@ func (a *ApplianceApiService) GetApplianceImageBundleListExecute(r ApiGetApplian localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13736,52 +13736,52 @@ func (a *ApplianceApiService) GetApplianceMetaManifestListExecute(r ApiGetApplia localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14165,52 +14165,52 @@ func (a *ApplianceApiService) GetApplianceMetricsConfigListExecute(r ApiGetAppli localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14594,52 +14594,52 @@ func (a *ApplianceApiService) GetApplianceNetworkLinkStatusListExecute(r ApiGetA localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15023,52 +15023,52 @@ func (a *ApplianceApiService) GetApplianceNodeInfoListExecute(r ApiGetApplianceN localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15452,52 +15452,52 @@ func (a *ApplianceApiService) GetApplianceNodeOpStatusListExecute(r ApiGetApplia localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15881,52 +15881,52 @@ func (a *ApplianceApiService) GetApplianceNodeStatusListExecute(r ApiGetApplianc localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16318,52 +16318,52 @@ func (a *ApplianceApiService) GetApplianceReleaseNoteListExecute(r ApiGetApplian localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16747,52 +16747,52 @@ func (a *ApplianceApiService) GetApplianceRemoteFileImportListExecute(r ApiGetAp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17176,52 +17176,52 @@ func (a *ApplianceApiService) GetApplianceRestoreListExecute(r ApiGetApplianceRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17605,52 +17605,52 @@ func (a *ApplianceApiService) GetApplianceSetupInfoListExecute(r ApiGetAppliance localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18034,52 +18034,52 @@ func (a *ApplianceApiService) GetApplianceSystemInfoListExecute(r ApiGetApplianc localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18463,52 +18463,52 @@ func (a *ApplianceApiService) GetApplianceSystemOpStatusListExecute(r ApiGetAppl localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18892,52 +18892,52 @@ func (a *ApplianceApiService) GetApplianceSystemStatusListExecute(r ApiGetApplia localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19321,52 +19321,52 @@ func (a *ApplianceApiService) GetApplianceUpgradeListExecute(r ApiGetApplianceUp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19750,52 +19750,52 @@ func (a *ApplianceApiService) GetApplianceUpgradePolicyListExecute(r ApiGetAppli localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20179,52 +20179,52 @@ func (a *ApplianceApiService) GetApplianceUpgradeTrackerListExecute(r ApiGetAppl localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20415,7 +20415,7 @@ func (a *ApplianceApiService) PatchApplianceAutoRmaPolicyExecute(r ApiPatchAppli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceAutoRmaPolicy @@ -20591,7 +20591,7 @@ func (a *ApplianceApiService) PatchApplianceBackupPolicyExecute(r ApiPatchApplia localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceBackupPolicy @@ -20767,7 +20767,7 @@ func (a *ApplianceApiService) PatchApplianceCertificateSettingExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceCertificateSetting @@ -20943,7 +20943,7 @@ func (a *ApplianceApiService) PatchApplianceClusterInfoExecute(r ApiPatchApplian localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceClusterInfo @@ -21119,7 +21119,7 @@ func (a *ApplianceApiService) PatchApplianceClusterInstallExecute(r ApiPatchAppl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceClusterInstall @@ -21295,7 +21295,7 @@ func (a *ApplianceApiService) PatchApplianceClusterReplaceNodeExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceClusterReplaceNode @@ -21471,7 +21471,7 @@ func (a *ApplianceApiService) PatchApplianceDataExportPolicyExecute(r ApiPatchAp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceDataExportPolicy @@ -21647,7 +21647,7 @@ func (a *ApplianceApiService) PatchApplianceDeviceClaimExecute(r ApiPatchApplian localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceDeviceClaim @@ -21823,7 +21823,7 @@ func (a *ApplianceApiService) PatchApplianceDeviceUpgradePolicyExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceDeviceUpgradePolicy @@ -21999,7 +21999,7 @@ func (a *ApplianceApiService) PatchApplianceDiagSettingExecute(r ApiPatchApplian localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceDiagSetting @@ -22175,7 +22175,7 @@ func (a *ApplianceApiService) PatchApplianceExternalSyslogSettingExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceExternalSyslogSetting @@ -22351,7 +22351,7 @@ func (a *ApplianceApiService) PatchApplianceMetricsConfigExecute(r ApiPatchAppli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceMetricsConfig @@ -22527,7 +22527,7 @@ func (a *ApplianceApiService) PatchApplianceSetupInfoExecute(r ApiPatchAppliance localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceSetupInfo @@ -22703,7 +22703,7 @@ func (a *ApplianceApiService) PatchApplianceUpgradeExecute(r ApiPatchApplianceUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceUpgrade @@ -22879,7 +22879,7 @@ func (a *ApplianceApiService) PatchApplianceUpgradePolicyExecute(r ApiPatchAppli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceUpgradePolicy @@ -23055,7 +23055,7 @@ func (a *ApplianceApiService) UpdateApplianceAutoRmaPolicyExecute(r ApiUpdateApp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceAutoRmaPolicy @@ -23231,7 +23231,7 @@ func (a *ApplianceApiService) UpdateApplianceBackupPolicyExecute(r ApiUpdateAppl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceBackupPolicy @@ -23407,7 +23407,7 @@ func (a *ApplianceApiService) UpdateApplianceCertificateSettingExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceCertificateSetting @@ -23583,7 +23583,7 @@ func (a *ApplianceApiService) UpdateApplianceClusterInfoExecute(r ApiUpdateAppli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceClusterInfo @@ -23759,7 +23759,7 @@ func (a *ApplianceApiService) UpdateApplianceClusterInstallExecute(r ApiUpdateAp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceClusterInstall @@ -23935,7 +23935,7 @@ func (a *ApplianceApiService) UpdateApplianceClusterReplaceNodeExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceClusterReplaceNode @@ -24111,7 +24111,7 @@ func (a *ApplianceApiService) UpdateApplianceDataExportPolicyExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceDataExportPolicy @@ -24287,7 +24287,7 @@ func (a *ApplianceApiService) UpdateApplianceDeviceClaimExecute(r ApiUpdateAppli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceDeviceClaim @@ -24463,7 +24463,7 @@ func (a *ApplianceApiService) UpdateApplianceDeviceUpgradePolicyExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceDeviceUpgradePolicy @@ -24639,7 +24639,7 @@ func (a *ApplianceApiService) UpdateApplianceDiagSettingExecute(r ApiUpdateAppli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceDiagSetting @@ -24815,7 +24815,7 @@ func (a *ApplianceApiService) UpdateApplianceExternalSyslogSettingExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceExternalSyslogSetting @@ -24991,7 +24991,7 @@ func (a *ApplianceApiService) UpdateApplianceMetricsConfigExecute(r ApiUpdateApp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceMetricsConfig @@ -25167,7 +25167,7 @@ func (a *ApplianceApiService) UpdateApplianceSetupInfoExecute(r ApiUpdateApplian localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceSetupInfo @@ -25343,7 +25343,7 @@ func (a *ApplianceApiService) UpdateApplianceUpgradeExecute(r ApiUpdateAppliance localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceUpgrade @@ -25519,7 +25519,7 @@ func (a *ApplianceApiService) UpdateApplianceUpgradePolicyExecute(r ApiUpdateApp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.applianceUpgradePolicy diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_asset.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_asset.go index 6a4a3e07da..e61f89a84e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_asset.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_asset.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *AssetApiService) CreateAssetDeviceClaimExecute(r ApiCreateAssetDeviceCl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.assetDeviceClaim @@ -291,10 +291,10 @@ func (a *AssetApiService) CreateAssetDeviceContractNotificationExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.assetDeviceContractNotification @@ -473,10 +473,10 @@ func (a *AssetApiService) CreateAssetTargetExecute(r ApiCreateAssetTargetRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.assetTarget @@ -2123,52 +2123,52 @@ func (a *AssetApiService) GetAssetClusterMemberListExecute(r ApiGetAssetClusterM localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2706,52 +2706,52 @@ func (a *AssetApiService) GetAssetDeploymentDeviceListExecute(r ApiGetAssetDeplo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2981,52 +2981,52 @@ func (a *AssetApiService) GetAssetDeploymentListExecute(r ApiGetAssetDeploymentL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3410,52 +3410,52 @@ func (a *AssetApiService) GetAssetDeviceConfigurationListExecute(r ApiGetAssetDe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3839,52 +3839,52 @@ func (a *AssetApiService) GetAssetDeviceConnectorManagerListExecute(r ApiGetAsse localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4268,52 +4268,52 @@ func (a *AssetApiService) GetAssetDeviceContractInformationListExecute(r ApiGetA localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4697,52 +4697,52 @@ func (a *AssetApiService) GetAssetDeviceRegistrationListExecute(r ApiGetAssetDev localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5126,52 +5126,52 @@ func (a *AssetApiService) GetAssetSubscriptionAccountListExecute(r ApiGetAssetSu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5709,52 +5709,52 @@ func (a *AssetApiService) GetAssetSubscriptionDeviceContractInformationListExecu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5984,52 +5984,52 @@ func (a *AssetApiService) GetAssetSubscriptionListExecute(r ApiGetAssetSubscript localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6413,52 +6413,52 @@ func (a *AssetApiService) GetAssetTargetListExecute(r ApiGetAssetTargetListReque localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6649,7 +6649,7 @@ func (a *AssetApiService) PatchAssetDeviceConfigurationExecute(r ApiPatchAssetDe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.assetDeviceConfiguration @@ -6825,7 +6825,7 @@ func (a *AssetApiService) PatchAssetDeviceContractInformationExecute(r ApiPatchA localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.assetDeviceContractInformation @@ -7001,7 +7001,7 @@ func (a *AssetApiService) PatchAssetDeviceRegistrationExecute(r ApiPatchAssetDev localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.assetDeviceRegistration @@ -7177,7 +7177,7 @@ func (a *AssetApiService) PatchAssetTargetExecute(r ApiPatchAssetTargetRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.assetTarget @@ -7353,7 +7353,7 @@ func (a *AssetApiService) UpdateAssetDeviceConfigurationExecute(r ApiUpdateAsset localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.assetDeviceConfiguration @@ -7529,7 +7529,7 @@ func (a *AssetApiService) UpdateAssetDeviceContractInformationExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.assetDeviceContractInformation @@ -7705,7 +7705,7 @@ func (a *AssetApiService) UpdateAssetDeviceRegistrationExecute(r ApiUpdateAssetD localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.assetDeviceRegistration @@ -7881,7 +7881,7 @@ func (a *AssetApiService) UpdateAssetTargetExecute(r ApiUpdateAssetTargetRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.assetTarget diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_bios.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_bios.go index d174d818e3..64693a8c97 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_bios.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_bios.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *BiosApiService) CreateBiosPolicyExecute(r ApiCreateBiosPolicyRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.biosPolicy @@ -623,52 +623,52 @@ func (a *BiosApiService) GetBiosBootDeviceListExecute(r ApiGetBiosBootDeviceList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *BiosApiService) GetBiosBootModeListExecute(r ApiGetBiosBootModeListRequ localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1481,52 +1481,52 @@ func (a *BiosApiService) GetBiosPolicyListExecute(r ApiGetBiosPolicyListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1910,52 +1910,52 @@ func (a *BiosApiService) GetBiosSystemBootOrderListExecute(r ApiGetBiosSystemBoo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2339,52 +2339,52 @@ func (a *BiosApiService) GetBiosTokenSettingsListExecute(r ApiGetBiosTokenSettin localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2768,52 +2768,52 @@ func (a *BiosApiService) GetBiosUnitListExecute(r ApiGetBiosUnitListRequest) (*B localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3197,52 +3197,52 @@ func (a *BiosApiService) GetBiosVfSelectMemoryRasConfigurationListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3433,7 +3433,7 @@ func (a *BiosApiService) PatchBiosBootModeExecute(r ApiPatchBiosBootModeRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.biosBootMode @@ -3609,7 +3609,7 @@ func (a *BiosApiService) PatchBiosPolicyExecute(r ApiPatchBiosPolicyRequest) (*B localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.biosPolicy @@ -3785,7 +3785,7 @@ func (a *BiosApiService) PatchBiosUnitExecute(r ApiPatchBiosUnitRequest) (*BiosU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.biosUnit @@ -3961,7 +3961,7 @@ func (a *BiosApiService) UpdateBiosBootModeExecute(r ApiUpdateBiosBootModeReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.biosBootMode @@ -4137,7 +4137,7 @@ func (a *BiosApiService) UpdateBiosPolicyExecute(r ApiUpdateBiosPolicyRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.biosPolicy @@ -4313,7 +4313,7 @@ func (a *BiosApiService) UpdateBiosUnitExecute(r ApiUpdateBiosUnitRequest) (*Bio localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.biosUnit diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_boot.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_boot.go index ec667ab142..d4ad6c4f24 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_boot.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_boot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *BootApiService) CreateBootPrecisionPolicyExecute(r ApiCreateBootPrecisi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.bootPrecisionPolicy @@ -623,52 +623,52 @@ func (a *BootApiService) GetBootCddDeviceListExecute(r ApiGetBootCddDeviceListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *BootApiService) GetBootDeviceBootModeListExecute(r ApiGetBootDeviceBoot localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1481,52 +1481,52 @@ func (a *BootApiService) GetBootDeviceBootSecurityListExecute(r ApiGetBootDevice localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1910,52 +1910,52 @@ func (a *BootApiService) GetBootHddDeviceListExecute(r ApiGetBootHddDeviceListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2339,52 +2339,52 @@ func (a *BootApiService) GetBootIscsiDeviceListExecute(r ApiGetBootIscsiDeviceLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2768,52 +2768,52 @@ func (a *BootApiService) GetBootNvmeDeviceListExecute(r ApiGetBootNvmeDeviceList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3197,52 +3197,52 @@ func (a *BootApiService) GetBootPchStorageDeviceListExecute(r ApiGetBootPchStora localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3626,52 +3626,52 @@ func (a *BootApiService) GetBootPrecisionPolicyListExecute(r ApiGetBootPrecision localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4055,52 +4055,52 @@ func (a *BootApiService) GetBootPxeDeviceListExecute(r ApiGetBootPxeDeviceListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4484,52 +4484,52 @@ func (a *BootApiService) GetBootSanDeviceListExecute(r ApiGetBootSanDeviceListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4913,52 +4913,52 @@ func (a *BootApiService) GetBootSdDeviceListExecute(r ApiGetBootSdDeviceListRequ localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5342,52 +5342,52 @@ func (a *BootApiService) GetBootUefiShellDeviceListExecute(r ApiGetBootUefiShell localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5771,52 +5771,52 @@ func (a *BootApiService) GetBootUsbDeviceListExecute(r ApiGetBootUsbDeviceListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6200,52 +6200,52 @@ func (a *BootApiService) GetBootVmediaDeviceListExecute(r ApiGetBootVmediaDevice localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6436,7 +6436,7 @@ func (a *BootApiService) PatchBootCddDeviceExecute(r ApiPatchBootCddDeviceReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootCddDevice @@ -6612,7 +6612,7 @@ func (a *BootApiService) PatchBootDeviceBootModeExecute(r ApiPatchBootDeviceBoot localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootDeviceBootMode @@ -6788,7 +6788,7 @@ func (a *BootApiService) PatchBootDeviceBootSecurityExecute(r ApiPatchBootDevice localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootDeviceBootSecurity @@ -6964,7 +6964,7 @@ func (a *BootApiService) PatchBootHddDeviceExecute(r ApiPatchBootHddDeviceReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootHddDevice @@ -7140,7 +7140,7 @@ func (a *BootApiService) PatchBootIscsiDeviceExecute(r ApiPatchBootIscsiDeviceRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootIscsiDevice @@ -7316,7 +7316,7 @@ func (a *BootApiService) PatchBootNvmeDeviceExecute(r ApiPatchBootNvmeDeviceRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootNvmeDevice @@ -7492,7 +7492,7 @@ func (a *BootApiService) PatchBootPchStorageDeviceExecute(r ApiPatchBootPchStora localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootPchStorageDevice @@ -7668,7 +7668,7 @@ func (a *BootApiService) PatchBootPrecisionPolicyExecute(r ApiPatchBootPrecision localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootPrecisionPolicy @@ -7844,7 +7844,7 @@ func (a *BootApiService) PatchBootPxeDeviceExecute(r ApiPatchBootPxeDeviceReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootPxeDevice @@ -8020,7 +8020,7 @@ func (a *BootApiService) PatchBootSanDeviceExecute(r ApiPatchBootSanDeviceReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootSanDevice @@ -8196,7 +8196,7 @@ func (a *BootApiService) PatchBootSdDeviceExecute(r ApiPatchBootSdDeviceRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootSdDevice @@ -8372,7 +8372,7 @@ func (a *BootApiService) PatchBootUefiShellDeviceExecute(r ApiPatchBootUefiShell localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootUefiShellDevice @@ -8548,7 +8548,7 @@ func (a *BootApiService) PatchBootUsbDeviceExecute(r ApiPatchBootUsbDeviceReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootUsbDevice @@ -8724,7 +8724,7 @@ func (a *BootApiService) PatchBootVmediaDeviceExecute(r ApiPatchBootVmediaDevice localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootVmediaDevice @@ -8900,7 +8900,7 @@ func (a *BootApiService) UpdateBootCddDeviceExecute(r ApiUpdateBootCddDeviceRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootCddDevice @@ -9076,7 +9076,7 @@ func (a *BootApiService) UpdateBootDeviceBootModeExecute(r ApiUpdateBootDeviceBo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootDeviceBootMode @@ -9252,7 +9252,7 @@ func (a *BootApiService) UpdateBootDeviceBootSecurityExecute(r ApiUpdateBootDevi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootDeviceBootSecurity @@ -9428,7 +9428,7 @@ func (a *BootApiService) UpdateBootHddDeviceExecute(r ApiUpdateBootHddDeviceRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootHddDevice @@ -9604,7 +9604,7 @@ func (a *BootApiService) UpdateBootIscsiDeviceExecute(r ApiUpdateBootIscsiDevice localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootIscsiDevice @@ -9780,7 +9780,7 @@ func (a *BootApiService) UpdateBootNvmeDeviceExecute(r ApiUpdateBootNvmeDeviceRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootNvmeDevice @@ -9956,7 +9956,7 @@ func (a *BootApiService) UpdateBootPchStorageDeviceExecute(r ApiUpdateBootPchSto localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootPchStorageDevice @@ -10132,7 +10132,7 @@ func (a *BootApiService) UpdateBootPrecisionPolicyExecute(r ApiUpdateBootPrecisi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootPrecisionPolicy @@ -10308,7 +10308,7 @@ func (a *BootApiService) UpdateBootPxeDeviceExecute(r ApiUpdateBootPxeDeviceRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootPxeDevice @@ -10484,7 +10484,7 @@ func (a *BootApiService) UpdateBootSanDeviceExecute(r ApiUpdateBootSanDeviceRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootSanDevice @@ -10660,7 +10660,7 @@ func (a *BootApiService) UpdateBootSdDeviceExecute(r ApiUpdateBootSdDeviceReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootSdDevice @@ -10836,7 +10836,7 @@ func (a *BootApiService) UpdateBootUefiShellDeviceExecute(r ApiUpdateBootUefiShe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootUefiShellDevice @@ -11012,7 +11012,7 @@ func (a *BootApiService) UpdateBootUsbDeviceExecute(r ApiUpdateBootUsbDeviceRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootUsbDevice @@ -11188,7 +11188,7 @@ func (a *BootApiService) UpdateBootVmediaDeviceExecute(r ApiUpdateBootVmediaDevi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bootVmediaDevice diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_bulk.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_bulk.go index 394c598faf..87b1cfeabe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_bulk.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_bulk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *BulkApiService) CreateBulkExportExecute(r ApiCreateBulkExportRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.bulkExport @@ -298,13 +298,13 @@ func (a *BulkApiService) CreateBulkMoClonerExecute(r ApiCreateBulkMoClonerReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } if r.prefer != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "Prefer", r.prefer, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "Prefer", r.prefer, "simple", "") } // body params localVarPostBody = r.bulkMoCloner @@ -490,13 +490,13 @@ func (a *BulkApiService) CreateBulkMoDeepClonerExecute(r ApiCreateBulkMoDeepClon localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } if r.prefer != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "Prefer", r.prefer, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "Prefer", r.prefer, "simple", "") } // body params localVarPostBody = r.bulkMoDeepCloner @@ -682,13 +682,13 @@ func (a *BulkApiService) CreateBulkMoMergerExecute(r ApiCreateBulkMoMergerReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } if r.prefer != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "Prefer", r.prefer, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "Prefer", r.prefer, "simple", "") } // body params localVarPostBody = r.bulkMoMerger @@ -874,13 +874,13 @@ func (a *BulkApiService) CreateBulkRequestExecute(r ApiCreateBulkRequestRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } if r.prefer != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "Prefer", r.prefer, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "Prefer", r.prefer, "simple", "") } // body params localVarPostBody = r.bulkRequest @@ -1391,52 +1391,52 @@ func (a *BulkApiService) GetBulkExportListExecute(r ApiGetBulkExportListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1820,52 +1820,52 @@ func (a *BulkApiService) GetBulkExportedItemListExecute(r ApiGetBulkExportedItem localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2249,52 +2249,52 @@ func (a *BulkApiService) GetBulkMoClonerListExecute(r ApiGetBulkMoClonerListRequ localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2678,52 +2678,52 @@ func (a *BulkApiService) GetBulkMoDeepClonerListExecute(r ApiGetBulkMoDeepCloner localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3107,52 +3107,52 @@ func (a *BulkApiService) GetBulkMoMergerListExecute(r ApiGetBulkMoMergerListRequ localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3536,52 +3536,52 @@ func (a *BulkApiService) GetBulkRequestListExecute(r ApiGetBulkRequestListReques localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3965,52 +3965,52 @@ func (a *BulkApiService) GetBulkResultListExecute(r ApiGetBulkResultListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4394,52 +4394,52 @@ func (a *BulkApiService) GetBulkSubRequestObjListExecute(r ApiGetBulkSubRequestO localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4630,7 +4630,7 @@ func (a *BulkApiService) PatchBulkExportExecute(r ApiPatchBulkExportRequest) (*B localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bulkExport @@ -4806,7 +4806,7 @@ func (a *BulkApiService) UpdateBulkExportExecute(r ApiUpdateBulkExportRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.bulkExport diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_capability.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_capability.go index 9d501a484d..c7d6f1e3cf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_capability.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_capability.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *CapabilityApiService) CreateCapabilityActionsMetaDataExecute(r ApiCreat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityActionsMetaData @@ -291,10 +291,10 @@ func (a *CapabilityApiService) CreateCapabilityAdapterDeprecatedDefExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityAdapterDeprecatedDef @@ -473,10 +473,10 @@ func (a *CapabilityApiService) CreateCapabilityAdapterUnitDescriptorExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityAdapterUnitDescriptor @@ -655,10 +655,10 @@ func (a *CapabilityApiService) CreateCapabilityChassisDescriptorExecute(r ApiCre localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityChassisDescriptor @@ -837,10 +837,10 @@ func (a *CapabilityApiService) CreateCapabilityChassisManufacturingDefExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityChassisManufacturingDef @@ -1019,10 +1019,10 @@ func (a *CapabilityApiService) CreateCapabilityCimcFirmwareDescriptorExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityCimcFirmwareDescriptor @@ -1201,10 +1201,10 @@ func (a *CapabilityApiService) CreateCapabilityEquipmentPhysicalDefExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityEquipmentPhysicalDef @@ -1383,10 +1383,10 @@ func (a *CapabilityApiService) CreateCapabilityEquipmentSlotArrayExecute(r ApiCr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityEquipmentSlotArray @@ -1565,10 +1565,10 @@ func (a *CapabilityApiService) CreateCapabilityFanModuleDescriptorExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityFanModuleDescriptor @@ -1747,10 +1747,10 @@ func (a *CapabilityApiService) CreateCapabilityFanModuleManufacturingDefExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityFanModuleManufacturingDef @@ -1929,10 +1929,10 @@ func (a *CapabilityApiService) CreateCapabilityFexCapabilityDefExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityFexCapabilityDef @@ -2111,10 +2111,10 @@ func (a *CapabilityApiService) CreateCapabilityFexDescriptorExecute(r ApiCreateC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityFexDescriptor @@ -2293,10 +2293,10 @@ func (a *CapabilityApiService) CreateCapabilityFexManufacturingDefExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityFexManufacturingDef @@ -2475,10 +2475,10 @@ func (a *CapabilityApiService) CreateCapabilityIoCardCapabilityDefExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityIoCardCapabilityDef @@ -2657,10 +2657,10 @@ func (a *CapabilityApiService) CreateCapabilityIoCardDescriptorExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityIoCardDescriptor @@ -2839,10 +2839,10 @@ func (a *CapabilityApiService) CreateCapabilityIoCardManufacturingDefExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityIoCardManufacturingDef @@ -3021,10 +3021,10 @@ func (a *CapabilityApiService) CreateCapabilityPortGroupAggregationDefExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityPortGroupAggregationDef @@ -3203,10 +3203,10 @@ func (a *CapabilityApiService) CreateCapabilityPsuDescriptorExecute(r ApiCreateC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityPsuDescriptor @@ -3385,10 +3385,10 @@ func (a *CapabilityApiService) CreateCapabilityPsuManufacturingDefExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityPsuManufacturingDef @@ -3567,10 +3567,10 @@ func (a *CapabilityApiService) CreateCapabilityServerDescriptorExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityServerDescriptor @@ -3749,10 +3749,10 @@ func (a *CapabilityApiService) CreateCapabilityServerModelsCapabilityDefExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityServerModelsCapabilityDef @@ -3931,10 +3931,10 @@ func (a *CapabilityApiService) CreateCapabilityServerSchemaDescriptorExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityServerSchemaDescriptor @@ -4113,10 +4113,10 @@ func (a *CapabilityApiService) CreateCapabilitySiocModuleCapabilityDefExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilitySiocModuleCapabilityDef @@ -4295,10 +4295,10 @@ func (a *CapabilityApiService) CreateCapabilitySiocModuleDescriptorExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilitySiocModuleDescriptor @@ -4477,10 +4477,10 @@ func (a *CapabilityApiService) CreateCapabilitySiocModuleManufacturingDefExecute localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilitySiocModuleManufacturingDef @@ -4659,10 +4659,10 @@ func (a *CapabilityApiService) CreateCapabilitySwitchCapabilityExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilitySwitchCapability @@ -4841,10 +4841,10 @@ func (a *CapabilityApiService) CreateCapabilitySwitchDescriptorExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilitySwitchDescriptor @@ -5023,10 +5023,10 @@ func (a *CapabilityApiService) CreateCapabilitySwitchEquipmentInfoExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilitySwitchEquipmentInfo @@ -5205,10 +5205,10 @@ func (a *CapabilityApiService) CreateCapabilitySwitchManufacturingDefExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilitySwitchManufacturingDef @@ -5387,10 +5387,10 @@ func (a *CapabilityApiService) CreateCapabilityVicDescriptorExecute(r ApiCreateC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.capabilityVicDescriptor @@ -10161,52 +10161,52 @@ func (a *CapabilityApiService) GetCapabilityActionsMetaDataListExecute(r ApiGetC localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10590,52 +10590,52 @@ func (a *CapabilityApiService) GetCapabilityAdapterDeprecatedDefListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11019,52 +11019,52 @@ func (a *CapabilityApiService) GetCapabilityAdapterFirmwareRequirementListExecut localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11448,52 +11448,52 @@ func (a *CapabilityApiService) GetCapabilityAdapterUnitDescriptorListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11877,52 +11877,52 @@ func (a *CapabilityApiService) GetCapabilityAdapterUpdateConstraintMetaListExecu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12306,52 +12306,52 @@ func (a *CapabilityApiService) GetCapabilityAdapterUpgradeSupportMetaListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12735,52 +12735,52 @@ func (a *CapabilityApiService) GetCapabilityCatalogListExecute(r ApiGetCapabilit localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13164,52 +13164,52 @@ func (a *CapabilityApiService) GetCapabilityChassisDescriptorListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13593,52 +13593,52 @@ func (a *CapabilityApiService) GetCapabilityChassisManufacturingDefListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14022,52 +14022,52 @@ func (a *CapabilityApiService) GetCapabilityChassisUpgradeSupportMetaListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14451,52 +14451,52 @@ func (a *CapabilityApiService) GetCapabilityCimcFirmwareDescriptorListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14880,52 +14880,52 @@ func (a *CapabilityApiService) GetCapabilityCpuEndpointDescriptorListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15309,52 +15309,52 @@ func (a *CapabilityApiService) GetCapabilityDimmsEndpointDescriptorListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15738,52 +15738,52 @@ func (a *CapabilityApiService) GetCapabilityDrivesEndpointDescriptorListExecute( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16167,52 +16167,52 @@ func (a *CapabilityApiService) GetCapabilityEquipmentPhysicalDefListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16596,52 +16596,52 @@ func (a *CapabilityApiService) GetCapabilityEquipmentSlotArrayListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17025,52 +17025,52 @@ func (a *CapabilityApiService) GetCapabilityFanModuleDescriptorListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17454,52 +17454,52 @@ func (a *CapabilityApiService) GetCapabilityFanModuleManufacturingDefListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17883,52 +17883,52 @@ func (a *CapabilityApiService) GetCapabilityFexCapabilityDefListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18312,52 +18312,52 @@ func (a *CapabilityApiService) GetCapabilityFexDescriptorListExecute(r ApiGetCap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18741,52 +18741,52 @@ func (a *CapabilityApiService) GetCapabilityFexManufacturingDefListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19170,52 +19170,52 @@ func (a *CapabilityApiService) GetCapabilityGpuEndpointDescriptorListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19599,52 +19599,52 @@ func (a *CapabilityApiService) GetCapabilityHsuIsoFileSupportMetaListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20028,52 +20028,52 @@ func (a *CapabilityApiService) GetCapabilityIoCardCapabilityDefListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20457,52 +20457,52 @@ func (a *CapabilityApiService) GetCapabilityIoCardDescriptorListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20886,52 +20886,52 @@ func (a *CapabilityApiService) GetCapabilityIoCardManufacturingDefListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21315,52 +21315,52 @@ func (a *CapabilityApiService) GetCapabilityIomUpgradeSupportMetaListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21744,52 +21744,52 @@ func (a *CapabilityApiService) GetCapabilityPortGroupAggregationDefListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22173,52 +22173,52 @@ func (a *CapabilityApiService) GetCapabilityProcessorUnitUpdateConstraintMetaLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22602,52 +22602,52 @@ func (a *CapabilityApiService) GetCapabilityPsuDescriptorListExecute(r ApiGetCap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23031,52 +23031,52 @@ func (a *CapabilityApiService) GetCapabilityPsuManufacturingDefListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23460,52 +23460,52 @@ func (a *CapabilityApiService) GetCapabilityServerActionsMetaListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23889,52 +23889,52 @@ func (a *CapabilityApiService) GetCapabilityServerDescriptorListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24318,52 +24318,52 @@ func (a *CapabilityApiService) GetCapabilityServerModelsCapabilityDefListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24747,52 +24747,52 @@ func (a *CapabilityApiService) GetCapabilityServerSchemaDescriptorListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25176,52 +25176,52 @@ func (a *CapabilityApiService) GetCapabilityServerUpgradeSupportMetaListExecute( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25605,52 +25605,52 @@ func (a *CapabilityApiService) GetCapabilitySiocModuleCapabilityDefListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26034,52 +26034,52 @@ func (a *CapabilityApiService) GetCapabilitySiocModuleDescriptorListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26463,52 +26463,52 @@ func (a *CapabilityApiService) GetCapabilitySiocModuleManufacturingDefListExecut localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26892,52 +26892,52 @@ func (a *CapabilityApiService) GetCapabilityStorageControllerUpdateConstraintMet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27321,52 +27321,52 @@ func (a *CapabilityApiService) GetCapabilitySwitchCapabilityListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27750,52 +27750,52 @@ func (a *CapabilityApiService) GetCapabilitySwitchDescriptorListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28179,52 +28179,52 @@ func (a *CapabilityApiService) GetCapabilitySwitchEquipmentInfoListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28608,52 +28608,52 @@ func (a *CapabilityApiService) GetCapabilitySwitchManufacturingDefListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29037,52 +29037,52 @@ func (a *CapabilityApiService) GetCapabilityTemplateCatalogListExecute(r ApiGetC localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29466,52 +29466,52 @@ func (a *CapabilityApiService) GetCapabilityUpdateOrderMetaListExecute(r ApiGetC localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29895,52 +29895,52 @@ func (a *CapabilityApiService) GetCapabilityVicDescriptorListExecute(r ApiGetCap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -30131,7 +30131,7 @@ func (a *CapabilityApiService) PatchCapabilityActionsMetaDataExecute(r ApiPatchC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityActionsMetaData @@ -30307,7 +30307,7 @@ func (a *CapabilityApiService) PatchCapabilityAdapterDeprecatedDefExecute(r ApiP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityAdapterDeprecatedDef @@ -30483,7 +30483,7 @@ func (a *CapabilityApiService) PatchCapabilityAdapterUnitDescriptorExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityAdapterUnitDescriptor @@ -30659,7 +30659,7 @@ func (a *CapabilityApiService) PatchCapabilityCatalogExecute(r ApiPatchCapabilit localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityCatalog @@ -30835,7 +30835,7 @@ func (a *CapabilityApiService) PatchCapabilityChassisDescriptorExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityChassisDescriptor @@ -31011,7 +31011,7 @@ func (a *CapabilityApiService) PatchCapabilityChassisManufacturingDefExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityChassisManufacturingDef @@ -31187,7 +31187,7 @@ func (a *CapabilityApiService) PatchCapabilityCimcFirmwareDescriptorExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityCimcFirmwareDescriptor @@ -31363,7 +31363,7 @@ func (a *CapabilityApiService) PatchCapabilityEquipmentPhysicalDefExecute(r ApiP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityEquipmentPhysicalDef @@ -31539,7 +31539,7 @@ func (a *CapabilityApiService) PatchCapabilityEquipmentSlotArrayExecute(r ApiPat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityEquipmentSlotArray @@ -31715,7 +31715,7 @@ func (a *CapabilityApiService) PatchCapabilityFanModuleDescriptorExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityFanModuleDescriptor @@ -31891,7 +31891,7 @@ func (a *CapabilityApiService) PatchCapabilityFanModuleManufacturingDefExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityFanModuleManufacturingDef @@ -32067,7 +32067,7 @@ func (a *CapabilityApiService) PatchCapabilityFexCapabilityDefExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityFexCapabilityDef @@ -32243,7 +32243,7 @@ func (a *CapabilityApiService) PatchCapabilityFexDescriptorExecute(r ApiPatchCap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityFexDescriptor @@ -32419,7 +32419,7 @@ func (a *CapabilityApiService) PatchCapabilityFexManufacturingDefExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityFexManufacturingDef @@ -32595,7 +32595,7 @@ func (a *CapabilityApiService) PatchCapabilityIoCardCapabilityDefExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityIoCardCapabilityDef @@ -32771,7 +32771,7 @@ func (a *CapabilityApiService) PatchCapabilityIoCardDescriptorExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityIoCardDescriptor @@ -32947,7 +32947,7 @@ func (a *CapabilityApiService) PatchCapabilityIoCardManufacturingDefExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityIoCardManufacturingDef @@ -33123,7 +33123,7 @@ func (a *CapabilityApiService) PatchCapabilityPortGroupAggregationDefExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityPortGroupAggregationDef @@ -33299,7 +33299,7 @@ func (a *CapabilityApiService) PatchCapabilityPsuDescriptorExecute(r ApiPatchCap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityPsuDescriptor @@ -33475,7 +33475,7 @@ func (a *CapabilityApiService) PatchCapabilityPsuManufacturingDefExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityPsuManufacturingDef @@ -33651,7 +33651,7 @@ func (a *CapabilityApiService) PatchCapabilityServerActionsMetaExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityServerActionsMeta @@ -33827,7 +33827,7 @@ func (a *CapabilityApiService) PatchCapabilityServerDescriptorExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityServerDescriptor @@ -34003,7 +34003,7 @@ func (a *CapabilityApiService) PatchCapabilityServerModelsCapabilityDefExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityServerModelsCapabilityDef @@ -34179,7 +34179,7 @@ func (a *CapabilityApiService) PatchCapabilityServerSchemaDescriptorExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityServerSchemaDescriptor @@ -34355,7 +34355,7 @@ func (a *CapabilityApiService) PatchCapabilitySiocModuleCapabilityDefExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySiocModuleCapabilityDef @@ -34531,7 +34531,7 @@ func (a *CapabilityApiService) PatchCapabilitySiocModuleDescriptorExecute(r ApiP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySiocModuleDescriptor @@ -34707,7 +34707,7 @@ func (a *CapabilityApiService) PatchCapabilitySiocModuleManufacturingDefExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySiocModuleManufacturingDef @@ -34883,7 +34883,7 @@ func (a *CapabilityApiService) PatchCapabilitySwitchCapabilityExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySwitchCapability @@ -35059,7 +35059,7 @@ func (a *CapabilityApiService) PatchCapabilitySwitchDescriptorExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySwitchDescriptor @@ -35235,7 +35235,7 @@ func (a *CapabilityApiService) PatchCapabilitySwitchEquipmentInfoExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySwitchEquipmentInfo @@ -35411,7 +35411,7 @@ func (a *CapabilityApiService) PatchCapabilitySwitchManufacturingDefExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySwitchManufacturingDef @@ -35587,7 +35587,7 @@ func (a *CapabilityApiService) PatchCapabilityVicDescriptorExecute(r ApiPatchCap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityVicDescriptor @@ -35763,7 +35763,7 @@ func (a *CapabilityApiService) UpdateCapabilityActionsMetaDataExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityActionsMetaData @@ -35939,7 +35939,7 @@ func (a *CapabilityApiService) UpdateCapabilityAdapterDeprecatedDefExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityAdapterDeprecatedDef @@ -36115,7 +36115,7 @@ func (a *CapabilityApiService) UpdateCapabilityAdapterUnitDescriptorExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityAdapterUnitDescriptor @@ -36291,7 +36291,7 @@ func (a *CapabilityApiService) UpdateCapabilityCatalogExecute(r ApiUpdateCapabil localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityCatalog @@ -36467,7 +36467,7 @@ func (a *CapabilityApiService) UpdateCapabilityChassisDescriptorExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityChassisDescriptor @@ -36643,7 +36643,7 @@ func (a *CapabilityApiService) UpdateCapabilityChassisManufacturingDefExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityChassisManufacturingDef @@ -36819,7 +36819,7 @@ func (a *CapabilityApiService) UpdateCapabilityCimcFirmwareDescriptorExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityCimcFirmwareDescriptor @@ -36995,7 +36995,7 @@ func (a *CapabilityApiService) UpdateCapabilityEquipmentPhysicalDefExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityEquipmentPhysicalDef @@ -37171,7 +37171,7 @@ func (a *CapabilityApiService) UpdateCapabilityEquipmentSlotArrayExecute(r ApiUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityEquipmentSlotArray @@ -37347,7 +37347,7 @@ func (a *CapabilityApiService) UpdateCapabilityFanModuleDescriptorExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityFanModuleDescriptor @@ -37523,7 +37523,7 @@ func (a *CapabilityApiService) UpdateCapabilityFanModuleManufacturingDefExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityFanModuleManufacturingDef @@ -37699,7 +37699,7 @@ func (a *CapabilityApiService) UpdateCapabilityFexCapabilityDefExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityFexCapabilityDef @@ -37875,7 +37875,7 @@ func (a *CapabilityApiService) UpdateCapabilityFexDescriptorExecute(r ApiUpdateC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityFexDescriptor @@ -38051,7 +38051,7 @@ func (a *CapabilityApiService) UpdateCapabilityFexManufacturingDefExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityFexManufacturingDef @@ -38227,7 +38227,7 @@ func (a *CapabilityApiService) UpdateCapabilityIoCardCapabilityDefExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityIoCardCapabilityDef @@ -38403,7 +38403,7 @@ func (a *CapabilityApiService) UpdateCapabilityIoCardDescriptorExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityIoCardDescriptor @@ -38579,7 +38579,7 @@ func (a *CapabilityApiService) UpdateCapabilityIoCardManufacturingDefExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityIoCardManufacturingDef @@ -38755,7 +38755,7 @@ func (a *CapabilityApiService) UpdateCapabilityPortGroupAggregationDefExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityPortGroupAggregationDef @@ -38931,7 +38931,7 @@ func (a *CapabilityApiService) UpdateCapabilityPsuDescriptorExecute(r ApiUpdateC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityPsuDescriptor @@ -39107,7 +39107,7 @@ func (a *CapabilityApiService) UpdateCapabilityPsuManufacturingDefExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityPsuManufacturingDef @@ -39283,7 +39283,7 @@ func (a *CapabilityApiService) UpdateCapabilityServerActionsMetaExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityServerActionsMeta @@ -39459,7 +39459,7 @@ func (a *CapabilityApiService) UpdateCapabilityServerDescriptorExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityServerDescriptor @@ -39635,7 +39635,7 @@ func (a *CapabilityApiService) UpdateCapabilityServerModelsCapabilityDefExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityServerModelsCapabilityDef @@ -39811,7 +39811,7 @@ func (a *CapabilityApiService) UpdateCapabilityServerSchemaDescriptorExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityServerSchemaDescriptor @@ -39987,7 +39987,7 @@ func (a *CapabilityApiService) UpdateCapabilitySiocModuleCapabilityDefExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySiocModuleCapabilityDef @@ -40163,7 +40163,7 @@ func (a *CapabilityApiService) UpdateCapabilitySiocModuleDescriptorExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySiocModuleDescriptor @@ -40339,7 +40339,7 @@ func (a *CapabilityApiService) UpdateCapabilitySiocModuleManufacturingDefExecute localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySiocModuleManufacturingDef @@ -40515,7 +40515,7 @@ func (a *CapabilityApiService) UpdateCapabilitySwitchCapabilityExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySwitchCapability @@ -40691,7 +40691,7 @@ func (a *CapabilityApiService) UpdateCapabilitySwitchDescriptorExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySwitchDescriptor @@ -40867,7 +40867,7 @@ func (a *CapabilityApiService) UpdateCapabilitySwitchEquipmentInfoExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySwitchEquipmentInfo @@ -41043,7 +41043,7 @@ func (a *CapabilityApiService) UpdateCapabilitySwitchManufacturingDefExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilitySwitchManufacturingDef @@ -41219,7 +41219,7 @@ func (a *CapabilityApiService) UpdateCapabilityVicDescriptorExecute(r ApiUpdateC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.capabilityVicDescriptor diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_catalystsdwan.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_catalystsdwan.go index ac9d321691..c15238f003 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_catalystsdwan.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_catalystsdwan.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *CatalystsdwanApiService) GetCatalystsdwanConfigGroupListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *CatalystsdwanApiService) GetCatalystsdwanPolicyGroupListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *CatalystsdwanApiService) GetCatalystsdwanVedgeDeviceListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_certificatemanagement.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_certificatemanagement.go index 4f203680a4..839e1aa19a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_certificatemanagement.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_certificatemanagement.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *CertificatemanagementApiService) CreateCertificatemanagementPolicyExecu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.certificatemanagementPolicy @@ -777,52 +777,52 @@ func (a *CertificatemanagementApiService) GetCertificatemanagementPolicyInventor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *CertificatemanagementApiService) GetCertificatemanagementPolicyListExec localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1288,7 +1288,7 @@ func (a *CertificatemanagementApiService) PatchCertificatemanagementPolicyExecut localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.certificatemanagementPolicy @@ -1464,7 +1464,7 @@ func (a *CertificatemanagementApiService) UpdateCertificatemanagementPolicyExecu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.certificatemanagementPolicy diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_chassis.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_chassis.go index b6df4df893..d8f4be7588 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_chassis.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_chassis.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *ChassisApiService) CreateChassisConfigImportExecute(r ApiCreateChassisC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.chassisConfigImport @@ -291,10 +291,10 @@ func (a *ChassisApiService) CreateChassisProfileExecute(r ApiCreateChassisProfil localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.chassisProfile @@ -473,10 +473,10 @@ func (a *ChassisApiService) CreateChassisProfileTemplateExecute(r ApiCreateChass localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.chassisProfileTemplate @@ -1129,52 +1129,52 @@ func (a *ChassisApiService) GetChassisConfigChangeDetailListExecute(r ApiGetChas localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1558,52 +1558,52 @@ func (a *ChassisApiService) GetChassisConfigImportListExecute(r ApiGetChassisCon localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2141,52 +2141,52 @@ func (a *ChassisApiService) GetChassisConfigResultEntryListExecute(r ApiGetChass localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2416,52 +2416,52 @@ func (a *ChassisApiService) GetChassisConfigResultListExecute(r ApiGetChassisCon localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2845,52 +2845,52 @@ func (a *ChassisApiService) GetChassisIomProfileListExecute(r ApiGetChassisIomPr localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3274,52 +3274,52 @@ func (a *ChassisApiService) GetChassisProfileListExecute(r ApiGetChassisProfileL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3703,52 +3703,52 @@ func (a *ChassisApiService) GetChassisProfileTemplateListExecute(r ApiGetChassis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3939,7 +3939,7 @@ func (a *ChassisApiService) PatchChassisProfileExecute(r ApiPatchChassisProfileR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.chassisProfile @@ -4115,7 +4115,7 @@ func (a *ChassisApiService) PatchChassisProfileTemplateExecute(r ApiPatchChassis localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.chassisProfileTemplate @@ -4291,7 +4291,7 @@ func (a *ChassisApiService) UpdateChassisProfileExecute(r ApiUpdateChassisProfil localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.chassisProfile @@ -4467,7 +4467,7 @@ func (a *ChassisApiService) UpdateChassisProfileTemplateExecute(r ApiUpdateChass localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.chassisProfileTemplate diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_cloud.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_cloud.go index 4a51a3b3e5..62af845dff 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_cloud.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_cloud.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *CloudApiService) CreateCloudCollectInventoryExecute(r ApiCreateCloudCol localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.cloudCollectInventory @@ -481,52 +481,52 @@ func (a *CloudApiService) GetCloudAwsBillingUnitListExecute(r ApiGetCloudAwsBill localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -910,52 +910,52 @@ func (a *CloudApiService) GetCloudAwsKeyPairListExecute(r ApiGetCloudAwsKeyPairL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1339,52 +1339,52 @@ func (a *CloudApiService) GetCloudAwsNetworkInterfaceListExecute(r ApiGetCloudAw localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1768,52 +1768,52 @@ func (a *CloudApiService) GetCloudAwsOrganizationalUnitListExecute(r ApiGetCloud localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2197,52 +2197,52 @@ func (a *CloudApiService) GetCloudAwsSecurityGroupListExecute(r ApiGetCloudAwsSe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2626,52 +2626,52 @@ func (a *CloudApiService) GetCloudAwsSubnetListExecute(r ApiGetCloudAwsSubnetLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3055,52 +3055,52 @@ func (a *CloudApiService) GetCloudAwsVirtualMachineListExecute(r ApiGetCloudAwsV localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3484,52 +3484,52 @@ func (a *CloudApiService) GetCloudAwsVolumeListExecute(r ApiGetCloudAwsVolumeLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3913,52 +3913,52 @@ func (a *CloudApiService) GetCloudAwsVpcListExecute(r ApiGetCloudAwsVpcListReque localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4342,52 +4342,52 @@ func (a *CloudApiService) GetCloudRegionsListExecute(r ApiGetCloudRegionsListReq localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4771,52 +4771,52 @@ func (a *CloudApiService) GetCloudSkuContainerTypeListExecute(r ApiGetCloudSkuCo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5200,52 +5200,52 @@ func (a *CloudApiService) GetCloudSkuDatabaseTypeListExecute(r ApiGetCloudSkuDat localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5629,52 +5629,52 @@ func (a *CloudApiService) GetCloudSkuInstanceTypeListExecute(r ApiGetCloudSkuIns localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6058,52 +6058,52 @@ func (a *CloudApiService) GetCloudSkuNetworkTypeListExecute(r ApiGetCloudSkuNetw localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6487,52 +6487,52 @@ func (a *CloudApiService) GetCloudSkuRegionRateCardsListExecute(r ApiGetCloudSku localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6916,52 +6916,52 @@ func (a *CloudApiService) GetCloudSkuVolumeTypeListExecute(r ApiGetCloudSkuVolum localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7345,52 +7345,52 @@ func (a *CloudApiService) GetCloudTfcAgentpoolListExecute(r ApiGetCloudTfcAgentp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7774,52 +7774,52 @@ func (a *CloudApiService) GetCloudTfcOrganizationListExecute(r ApiGetCloudTfcOrg localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8203,52 +8203,52 @@ func (a *CloudApiService) GetCloudTfcWorkspaceListExecute(r ApiGetCloudTfcWorksp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8439,7 +8439,7 @@ func (a *CloudApiService) PatchCloudAwsVirtualMachineExecute(r ApiPatchCloudAwsV localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.cloudAwsVirtualMachine @@ -8615,7 +8615,7 @@ func (a *CloudApiService) PatchCloudRegionsExecute(r ApiPatchCloudRegionsRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.cloudRegions @@ -8791,7 +8791,7 @@ func (a *CloudApiService) UpdateCloudAwsVirtualMachineExecute(r ApiUpdateCloudAw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.cloudAwsVirtualMachine @@ -8967,7 +8967,7 @@ func (a *CloudApiService) UpdateCloudRegionsExecute(r ApiUpdateCloudRegionsReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.cloudRegions diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_comm.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_comm.go index c903c8101f..6dcafa9baf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_comm.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_comm.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *CommApiService) CreateCommHttpProxyPolicyExecute(r ApiCreateCommHttpPro localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.commHttpProxyPolicy @@ -623,52 +623,52 @@ func (a *CommApiService) GetCommHttpProxyPolicyListExecute(r ApiGetCommHttpProxy localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -859,7 +859,7 @@ func (a *CommApiService) PatchCommHttpProxyPolicyExecute(r ApiPatchCommHttpProxy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.commHttpProxyPolicy @@ -1035,7 +1035,7 @@ func (a *CommApiService) UpdateCommHttpProxyPolicyExecute(r ApiUpdateCommHttpPro localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.commHttpProxyPolicy diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_compute.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_compute.go index d7034edf08..b639c7ef21 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_compute.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_compute.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *ComputeApiService) CreateComputeHostUtilityOperationExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.computeHostUtilityOperation @@ -1061,52 +1061,52 @@ func (a *ComputeApiService) GetComputeBladeIdentityListExecute(r ApiGetComputeBl localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1336,52 +1336,52 @@ func (a *ComputeApiService) GetComputeBladeListExecute(r ApiGetComputeBladeListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1765,52 +1765,52 @@ func (a *ComputeApiService) GetComputeBoardListExecute(r ApiGetComputeBoardListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2194,52 +2194,52 @@ func (a *ComputeApiService) GetComputeDownloadStatusListExecute(r ApiGetComputeD localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2623,52 +2623,52 @@ func (a *ComputeApiService) GetComputeHostUtilityOperationListExecute(r ApiGetCo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3052,52 +3052,52 @@ func (a *ComputeApiService) GetComputeMappingListExecute(r ApiGetComputeMappingL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3481,52 +3481,52 @@ func (a *ComputeApiService) GetComputePersonalityListExecute(r ApiGetComputePers localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3910,52 +3910,52 @@ func (a *ComputeApiService) GetComputePhysicalSummaryListExecute(r ApiGetCompute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4493,52 +4493,52 @@ func (a *ComputeApiService) GetComputeRackUnitIdentityListExecute(r ApiGetComput localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4768,52 +4768,52 @@ func (a *ComputeApiService) GetComputeRackUnitListExecute(r ApiGetComputeRackUni localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5197,52 +5197,52 @@ func (a *ComputeApiService) GetComputeServerIdPoolListExecute(r ApiGetComputeSer localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5626,52 +5626,52 @@ func (a *ComputeApiService) GetComputeServerPowerPolicyListExecute(r ApiGetCompu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6055,52 +6055,52 @@ func (a *ComputeApiService) GetComputeServerSettingListExecute(r ApiGetComputeSe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6484,52 +6484,52 @@ func (a *ComputeApiService) GetComputeVmediaListExecute(r ApiGetComputeVmediaLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6720,7 +6720,7 @@ func (a *ComputeApiService) PatchComputeBladeExecute(r ApiPatchComputeBladeReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeBlade @@ -6896,7 +6896,7 @@ func (a *ComputeApiService) PatchComputeBladeIdentityExecute(r ApiPatchComputeBl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeBladeIdentity @@ -7072,7 +7072,7 @@ func (a *ComputeApiService) PatchComputeBoardExecute(r ApiPatchComputeBoardReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeBoard @@ -7248,7 +7248,7 @@ func (a *ComputeApiService) PatchComputeMappingExecute(r ApiPatchComputeMappingR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeMapping @@ -7424,7 +7424,7 @@ func (a *ComputeApiService) PatchComputePersonalityExecute(r ApiPatchComputePers localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computePersonality @@ -7600,7 +7600,7 @@ func (a *ComputeApiService) PatchComputeRackUnitExecute(r ApiPatchComputeRackUni localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeRackUnit @@ -7776,7 +7776,7 @@ func (a *ComputeApiService) PatchComputeRackUnitIdentityExecute(r ApiPatchComput localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeRackUnitIdentity @@ -7952,7 +7952,7 @@ func (a *ComputeApiService) PatchComputeServerPowerPolicyExecute(r ApiPatchCompu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeServerPowerPolicy @@ -8128,7 +8128,7 @@ func (a *ComputeApiService) PatchComputeServerSettingExecute(r ApiPatchComputeSe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeServerSetting @@ -8304,7 +8304,7 @@ func (a *ComputeApiService) UpdateComputeBladeExecute(r ApiUpdateComputeBladeReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeBlade @@ -8480,7 +8480,7 @@ func (a *ComputeApiService) UpdateComputeBladeIdentityExecute(r ApiUpdateCompute localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeBladeIdentity @@ -8656,7 +8656,7 @@ func (a *ComputeApiService) UpdateComputeBoardExecute(r ApiUpdateComputeBoardReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeBoard @@ -8832,7 +8832,7 @@ func (a *ComputeApiService) UpdateComputeMappingExecute(r ApiUpdateComputeMappin localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeMapping @@ -9008,7 +9008,7 @@ func (a *ComputeApiService) UpdateComputePersonalityExecute(r ApiUpdateComputePe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computePersonality @@ -9184,7 +9184,7 @@ func (a *ComputeApiService) UpdateComputeRackUnitExecute(r ApiUpdateComputeRackU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeRackUnit @@ -9360,7 +9360,7 @@ func (a *ComputeApiService) UpdateComputeRackUnitIdentityExecute(r ApiUpdateComp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeRackUnitIdentity @@ -9536,7 +9536,7 @@ func (a *ComputeApiService) UpdateComputeServerPowerPolicyExecute(r ApiUpdateCom localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeServerPowerPolicy @@ -9712,7 +9712,7 @@ func (a *ComputeApiService) UpdateComputeServerSettingExecute(r ApiUpdateCompute localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.computeServerSetting diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_cond.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_cond.go index 172f22466f..ebcf75f367 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_cond.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_cond.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *CondApiService) CreateCondAlarmSuppressionExecute(r ApiCreateCondAlarmS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.condAlarmSuppression @@ -623,52 +623,52 @@ func (a *CondApiService) GetCondAlarmAggregationListExecute(r ApiGetCondAlarmAgg localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1206,52 +1206,52 @@ func (a *CondApiService) GetCondAlarmClassificationListExecute(r ApiGetCondAlarm localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1635,52 +1635,52 @@ func (a *CondApiService) GetCondAlarmDefinitionListExecute(r ApiGetCondAlarmDefi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1910,52 +1910,52 @@ func (a *CondApiService) GetCondAlarmListExecute(r ApiGetCondAlarmListRequest) ( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2339,52 +2339,52 @@ func (a *CondApiService) GetCondAlarmSuppressionListExecute(r ApiGetCondAlarmSup localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2922,52 +2922,52 @@ func (a *CondApiService) GetCondHclStatusDetailListExecute(r ApiGetCondHclStatus localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3351,52 +3351,52 @@ func (a *CondApiService) GetCondHclStatusJobListExecute(r ApiGetCondHclStatusJob localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3626,52 +3626,52 @@ func (a *CondApiService) GetCondHclStatusListExecute(r ApiGetCondHclStatusListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3862,7 +3862,7 @@ func (a *CondApiService) PatchCondAlarmExecute(r ApiPatchCondAlarmRequest) (*Con localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.condAlarm @@ -4038,7 +4038,7 @@ func (a *CondApiService) PatchCondAlarmSuppressionExecute(r ApiPatchCondAlarmSup localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.condAlarmSuppression @@ -4214,7 +4214,7 @@ func (a *CondApiService) UpdateCondAlarmExecute(r ApiUpdateCondAlarmRequest) (*C localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.condAlarm @@ -4390,7 +4390,7 @@ func (a *CondApiService) UpdateCondAlarmSuppressionExecute(r ApiUpdateCondAlarmS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.condAlarmSuppression diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_connectorpack.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_connectorpack.go index a6678ecf0b..2e29797d02 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_connectorpack.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_connectorpack.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *ConnectorpackApiService) CreateConnectorpackConnectorPackUpgradeExecute localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.connectorpackConnectorPackUpgrade @@ -623,52 +623,52 @@ func (a *ConnectorpackApiService) GetConnectorpackConnectorPackUpgradeListExecut localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *ConnectorpackApiService) GetConnectorpackUpgradeImpactListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_console.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_console.go index 7e29211512..93f82f655a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_console.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_console.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *ConsoleApiService) GetConsoleConsoleConfigListExecute(r ApiGetConsoleCo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_convergedinfra.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_convergedinfra.go index d82ffc7d3a..90c0b1223b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_convergedinfra.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_convergedinfra.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *ConvergedinfraApiService) GetConvergedinfraAdapterComplianceDetailsList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -882,52 +882,52 @@ func (a *ConvergedinfraApiService) GetConvergedinfraPodComplianceInfoListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *ConvergedinfraApiService) GetConvergedinfraPodListExecute(r ApiGetConve localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1586,52 +1586,52 @@ func (a *ConvergedinfraApiService) GetConvergedinfraServerComplianceDetailsListE localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2015,52 +2015,52 @@ func (a *ConvergedinfraApiService) GetConvergedinfraStorageComplianceDetailsList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2444,52 +2444,52 @@ func (a *ConvergedinfraApiService) GetConvergedinfraSwitchComplianceDetailsListE localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2680,7 +2680,7 @@ func (a *ConvergedinfraApiService) PatchConvergedinfraPodExecute(r ApiPatchConve localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.convergedinfraPod @@ -2856,7 +2856,7 @@ func (a *ConvergedinfraApiService) UpdateConvergedinfraPodExecute(r ApiUpdateCon localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.convergedinfraPod diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_crd.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_crd.go index 9f032e7596..c7a69ac032 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_crd.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_crd.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *CrdApiService) CreateCrdCustomResourceExecute(r ApiCreateCrdCustomResou localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.crdCustomResource @@ -623,52 +623,52 @@ func (a *CrdApiService) GetCrdCustomResourceListExecute(r ApiGetCrdCustomResourc localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -859,7 +859,7 @@ func (a *CrdApiService) PatchCrdCustomResourceExecute(r ApiPatchCrdCustomResourc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.crdCustomResource @@ -1035,7 +1035,7 @@ func (a *CrdApiService) UpdateCrdCustomResourceExecute(r ApiUpdateCrdCustomResou localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.crdCustomResource diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_deviceconnector.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_deviceconnector.go index ab8cc7ed88..d18cc6d7ed 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_deviceconnector.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_deviceconnector.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *DeviceconnectorApiService) CreateDeviceconnectorPolicyExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.deviceconnectorPolicy @@ -623,52 +623,52 @@ func (a *DeviceconnectorApiService) GetDeviceconnectorPolicyListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -859,7 +859,7 @@ func (a *DeviceconnectorApiService) PatchDeviceconnectorPolicyExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.deviceconnectorPolicy @@ -1035,7 +1035,7 @@ func (a *DeviceconnectorApiService) UpdateDeviceconnectorPolicyExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.deviceconnectorPolicy diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_dnac.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_dnac.go index 517ae2a4ed..f5f2b14d9f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_dnac.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_dnac.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -453,52 +453,52 @@ func (a *DnacApiService) GetDnacDeviceInterfaceListExecute(r ApiGetDnacDeviceInt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *DnacApiService) GetDnacDeviceListExecute(r ApiGetDnacDeviceListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1311,52 +1311,52 @@ func (a *DnacApiService) GetDnacExternalBorderNodeInterfaceListExecute(r ApiGetD localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1586,52 +1586,52 @@ func (a *DnacApiService) GetDnacExternalBorderNodeListExecute(r ApiGetDnacExtern localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2015,52 +2015,52 @@ func (a *DnacApiService) GetDnacFabricSiteListExecute(r ApiGetDnacFabricSiteList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2598,52 +2598,52 @@ func (a *DnacApiService) GetDnacSiteIpPoolListExecute(r ApiGetDnacSiteIpPoolList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2873,52 +2873,52 @@ func (a *DnacApiService) GetDnacSiteListExecute(r ApiGetDnacSiteListRequest) (*D localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3302,52 +3302,52 @@ func (a *DnacApiService) GetDnacTemplateListExecute(r ApiGetDnacTemplateListRequ localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3731,52 +3731,52 @@ func (a *DnacApiService) GetDnacTransitListExecute(r ApiGetDnacTransitListReques localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4160,52 +4160,52 @@ func (a *DnacApiService) GetDnacVirtualNetworkFabricSiteListExecute(r ApiGetDnac localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_equipment.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_equipment.go index c95d112c80..9c840185c1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_equipment.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_equipment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -453,52 +453,52 @@ func (a *EquipmentApiService) GetEquipmentChassisIdPoolListExecute(r ApiGetEquip localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -882,52 +882,52 @@ func (a *EquipmentApiService) GetEquipmentChassisIdentityListExecute(r ApiGetEqu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *EquipmentApiService) GetEquipmentChassisListExecute(r ApiGetEquipmentCh localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1586,52 +1586,52 @@ func (a *EquipmentApiService) GetEquipmentChassisOperationListExecute(r ApiGetEq localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2015,52 +2015,52 @@ func (a *EquipmentApiService) GetEquipmentDeviceSummaryListExecute(r ApiGetEquip localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2444,52 +2444,52 @@ func (a *EquipmentApiService) GetEquipmentEndPointLogListExecute(r ApiGetEquipme localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2873,52 +2873,52 @@ func (a *EquipmentApiService) GetEquipmentExpanderModuleListExecute(r ApiGetEqui localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3456,52 +3456,52 @@ func (a *EquipmentApiService) GetEquipmentFanControlListExecute(r ApiGetEquipmen localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3731,52 +3731,52 @@ func (a *EquipmentApiService) GetEquipmentFanListExecute(r ApiGetEquipmentFanLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4160,52 +4160,52 @@ func (a *EquipmentApiService) GetEquipmentFanModuleListExecute(r ApiGetEquipment localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4743,52 +4743,52 @@ func (a *EquipmentApiService) GetEquipmentFexIdentityListExecute(r ApiGetEquipme localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5018,52 +5018,52 @@ func (a *EquipmentApiService) GetEquipmentFexListExecute(r ApiGetEquipmentFexLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5447,52 +5447,52 @@ func (a *EquipmentApiService) GetEquipmentFexOperationListExecute(r ApiGetEquipm localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5876,52 +5876,52 @@ func (a *EquipmentApiService) GetEquipmentFruListExecute(r ApiGetEquipmentFruLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6305,52 +6305,52 @@ func (a *EquipmentApiService) GetEquipmentHybridDriveSlotListExecute(r ApiGetEqu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6734,52 +6734,52 @@ func (a *EquipmentApiService) GetEquipmentIoCardListExecute(r ApiGetEquipmentIoC localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7163,52 +7163,52 @@ func (a *EquipmentApiService) GetEquipmentIoCardOperationListExecute(r ApiGetEqu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7592,52 +7592,52 @@ func (a *EquipmentApiService) GetEquipmentIoExpanderListExecute(r ApiGetEquipmen localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8021,52 +8021,52 @@ func (a *EquipmentApiService) GetEquipmentLocatorLedListExecute(r ApiGetEquipmen localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8450,52 +8450,52 @@ func (a *EquipmentApiService) GetEquipmentLogDownloadListExecute(r ApiGetEquipme localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9033,52 +9033,52 @@ func (a *EquipmentApiService) GetEquipmentPsuControlListExecute(r ApiGetEquipmen localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9308,52 +9308,52 @@ func (a *EquipmentApiService) GetEquipmentPsuListExecute(r ApiGetEquipmentPsuLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9737,52 +9737,52 @@ func (a *EquipmentApiService) GetEquipmentRackEnclosureListExecute(r ApiGetEquip localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10166,52 +10166,52 @@ func (a *EquipmentApiService) GetEquipmentRackEnclosureSlotListExecute(r ApiGetE localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10595,52 +10595,52 @@ func (a *EquipmentApiService) GetEquipmentSensorListExecute(r ApiGetEquipmentSen localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11024,52 +11024,52 @@ func (a *EquipmentApiService) GetEquipmentSharedIoModuleListExecute(r ApiGetEqui localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11453,52 +11453,52 @@ func (a *EquipmentApiService) GetEquipmentSwitchCardListExecute(r ApiGetEquipmen localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11882,52 +11882,52 @@ func (a *EquipmentApiService) GetEquipmentSwitchOperationListExecute(r ApiGetEqu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12311,52 +12311,52 @@ func (a *EquipmentApiService) GetEquipmentSystemIoControllerListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12740,52 +12740,52 @@ func (a *EquipmentApiService) GetEquipmentTpmListExecute(r ApiGetEquipmentTpmLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13169,52 +13169,52 @@ func (a *EquipmentApiService) GetEquipmentTransceiverListExecute(r ApiGetEquipme localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13405,7 +13405,7 @@ func (a *EquipmentApiService) PatchEquipmentChassisExecute(r ApiPatchEquipmentCh localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentChassis @@ -13581,7 +13581,7 @@ func (a *EquipmentApiService) PatchEquipmentChassisIdentityExecute(r ApiPatchEqu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentChassisIdentity @@ -13757,7 +13757,7 @@ func (a *EquipmentApiService) PatchEquipmentChassisOperationExecute(r ApiPatchEq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentChassisOperation @@ -13933,7 +13933,7 @@ func (a *EquipmentApiService) PatchEquipmentExpanderModuleExecute(r ApiPatchEqui localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentExpanderModule @@ -14109,7 +14109,7 @@ func (a *EquipmentApiService) PatchEquipmentFanExecute(r ApiPatchEquipmentFanReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFan @@ -14285,7 +14285,7 @@ func (a *EquipmentApiService) PatchEquipmentFanControlExecute(r ApiPatchEquipmen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFanControl @@ -14461,7 +14461,7 @@ func (a *EquipmentApiService) PatchEquipmentFanModuleExecute(r ApiPatchEquipment localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFanModule @@ -14637,7 +14637,7 @@ func (a *EquipmentApiService) PatchEquipmentFexExecute(r ApiPatchEquipmentFexReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFex @@ -14813,7 +14813,7 @@ func (a *EquipmentApiService) PatchEquipmentFexIdentityExecute(r ApiPatchEquipme localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFexIdentity @@ -14989,7 +14989,7 @@ func (a *EquipmentApiService) PatchEquipmentFexOperationExecute(r ApiPatchEquipm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFexOperation @@ -15165,7 +15165,7 @@ func (a *EquipmentApiService) PatchEquipmentFruExecute(r ApiPatchEquipmentFruReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFru @@ -15341,7 +15341,7 @@ func (a *EquipmentApiService) PatchEquipmentIoCardExecute(r ApiPatchEquipmentIoC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentIoCard @@ -15517,7 +15517,7 @@ func (a *EquipmentApiService) PatchEquipmentIoCardOperationExecute(r ApiPatchEqu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentIoCardOperation @@ -15693,7 +15693,7 @@ func (a *EquipmentApiService) PatchEquipmentIoExpanderExecute(r ApiPatchEquipmen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentIoExpander @@ -15869,7 +15869,7 @@ func (a *EquipmentApiService) PatchEquipmentLocatorLedExecute(r ApiPatchEquipmen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentLocatorLed @@ -16045,7 +16045,7 @@ func (a *EquipmentApiService) PatchEquipmentPsuExecute(r ApiPatchEquipmentPsuReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentPsu @@ -16221,7 +16221,7 @@ func (a *EquipmentApiService) PatchEquipmentPsuControlExecute(r ApiPatchEquipmen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentPsuControl @@ -16397,7 +16397,7 @@ func (a *EquipmentApiService) PatchEquipmentRackEnclosureExecute(r ApiPatchEquip localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentRackEnclosure @@ -16573,7 +16573,7 @@ func (a *EquipmentApiService) PatchEquipmentRackEnclosureSlotExecute(r ApiPatchE localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentRackEnclosureSlot @@ -16749,7 +16749,7 @@ func (a *EquipmentApiService) PatchEquipmentSharedIoModuleExecute(r ApiPatchEqui localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentSharedIoModule @@ -16925,7 +16925,7 @@ func (a *EquipmentApiService) PatchEquipmentSwitchCardExecute(r ApiPatchEquipmen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentSwitchCard @@ -17101,7 +17101,7 @@ func (a *EquipmentApiService) PatchEquipmentSwitchOperationExecute(r ApiPatchEqu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentSwitchOperation @@ -17277,7 +17277,7 @@ func (a *EquipmentApiService) PatchEquipmentSystemIoControllerExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentSystemIoController @@ -17453,7 +17453,7 @@ func (a *EquipmentApiService) PatchEquipmentTpmExecute(r ApiPatchEquipmentTpmReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentTpm @@ -17629,7 +17629,7 @@ func (a *EquipmentApiService) PatchEquipmentTransceiverExecute(r ApiPatchEquipme localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentTransceiver @@ -17805,7 +17805,7 @@ func (a *EquipmentApiService) UpdateEquipmentChassisExecute(r ApiUpdateEquipment localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentChassis @@ -17981,7 +17981,7 @@ func (a *EquipmentApiService) UpdateEquipmentChassisIdentityExecute(r ApiUpdateE localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentChassisIdentity @@ -18157,7 +18157,7 @@ func (a *EquipmentApiService) UpdateEquipmentChassisOperationExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentChassisOperation @@ -18333,7 +18333,7 @@ func (a *EquipmentApiService) UpdateEquipmentExpanderModuleExecute(r ApiUpdateEq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentExpanderModule @@ -18509,7 +18509,7 @@ func (a *EquipmentApiService) UpdateEquipmentFanExecute(r ApiUpdateEquipmentFanR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFan @@ -18685,7 +18685,7 @@ func (a *EquipmentApiService) UpdateEquipmentFanControlExecute(r ApiUpdateEquipm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFanControl @@ -18861,7 +18861,7 @@ func (a *EquipmentApiService) UpdateEquipmentFanModuleExecute(r ApiUpdateEquipme localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFanModule @@ -19037,7 +19037,7 @@ func (a *EquipmentApiService) UpdateEquipmentFexExecute(r ApiUpdateEquipmentFexR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFex @@ -19213,7 +19213,7 @@ func (a *EquipmentApiService) UpdateEquipmentFexIdentityExecute(r ApiUpdateEquip localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFexIdentity @@ -19389,7 +19389,7 @@ func (a *EquipmentApiService) UpdateEquipmentFexOperationExecute(r ApiUpdateEqui localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFexOperation @@ -19565,7 +19565,7 @@ func (a *EquipmentApiService) UpdateEquipmentFruExecute(r ApiUpdateEquipmentFruR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentFru @@ -19741,7 +19741,7 @@ func (a *EquipmentApiService) UpdateEquipmentIoCardExecute(r ApiUpdateEquipmentI localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentIoCard @@ -19917,7 +19917,7 @@ func (a *EquipmentApiService) UpdateEquipmentIoCardOperationExecute(r ApiUpdateE localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentIoCardOperation @@ -20093,7 +20093,7 @@ func (a *EquipmentApiService) UpdateEquipmentIoExpanderExecute(r ApiUpdateEquipm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentIoExpander @@ -20269,7 +20269,7 @@ func (a *EquipmentApiService) UpdateEquipmentLocatorLedExecute(r ApiUpdateEquipm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentLocatorLed @@ -20445,7 +20445,7 @@ func (a *EquipmentApiService) UpdateEquipmentPsuExecute(r ApiUpdateEquipmentPsuR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentPsu @@ -20621,7 +20621,7 @@ func (a *EquipmentApiService) UpdateEquipmentPsuControlExecute(r ApiUpdateEquipm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentPsuControl @@ -20797,7 +20797,7 @@ func (a *EquipmentApiService) UpdateEquipmentRackEnclosureExecute(r ApiUpdateEqu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentRackEnclosure @@ -20973,7 +20973,7 @@ func (a *EquipmentApiService) UpdateEquipmentRackEnclosureSlotExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentRackEnclosureSlot @@ -21149,7 +21149,7 @@ func (a *EquipmentApiService) UpdateEquipmentSharedIoModuleExecute(r ApiUpdateEq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentSharedIoModule @@ -21325,7 +21325,7 @@ func (a *EquipmentApiService) UpdateEquipmentSwitchCardExecute(r ApiUpdateEquipm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentSwitchCard @@ -21501,7 +21501,7 @@ func (a *EquipmentApiService) UpdateEquipmentSwitchOperationExecute(r ApiUpdateE localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentSwitchOperation @@ -21677,7 +21677,7 @@ func (a *EquipmentApiService) UpdateEquipmentSystemIoControllerExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentSystemIoController @@ -21853,7 +21853,7 @@ func (a *EquipmentApiService) UpdateEquipmentTpmExecute(r ApiUpdateEquipmentTpmR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentTpm @@ -22029,7 +22029,7 @@ func (a *EquipmentApiService) UpdateEquipmentTransceiverExecute(r ApiUpdateEquip localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.equipmentTransceiver diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ether.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ether.go index 857b2c57cd..c61c6d406b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ether.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ether.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *EtherApiService) GetEtherHostPortListExecute(r ApiGetEtherHostPortListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *EtherApiService) GetEtherNetworkPortListExecute(r ApiGetEtherNetworkPor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *EtherApiService) GetEtherPhysicalPortListExecute(r ApiGetEtherPhysicalP localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1586,52 +1586,52 @@ func (a *EtherApiService) GetEtherPortChannelListExecute(r ApiGetEtherPortChanne localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1822,7 +1822,7 @@ func (a *EtherApiService) PatchEtherHostPortExecute(r ApiPatchEtherHostPortReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.etherHostPort @@ -1998,7 +1998,7 @@ func (a *EtherApiService) PatchEtherNetworkPortExecute(r ApiPatchEtherNetworkPor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.etherNetworkPort @@ -2174,7 +2174,7 @@ func (a *EtherApiService) PatchEtherPhysicalPortExecute(r ApiPatchEtherPhysicalP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.etherPhysicalPort @@ -2350,7 +2350,7 @@ func (a *EtherApiService) UpdateEtherHostPortExecute(r ApiUpdateEtherHostPortReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.etherHostPort @@ -2526,7 +2526,7 @@ func (a *EtherApiService) UpdateEtherNetworkPortExecute(r ApiUpdateEtherNetworkP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.etherNetworkPort @@ -2702,7 +2702,7 @@ func (a *EtherApiService) UpdateEtherPhysicalPortExecute(r ApiUpdateEtherPhysica localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.etherPhysicalPort diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_externalsite.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_externalsite.go index 8ae25901dd..c7f9dcd3a1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_externalsite.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_externalsite.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *ExternalsiteApiService) CreateExternalsiteAuthorizationExecute(r ApiCre localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.externalsiteAuthorization @@ -481,52 +481,52 @@ func (a *ExternalsiteApiService) GetExternalsiteAuthorizationListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -717,7 +717,7 @@ func (a *ExternalsiteApiService) PatchExternalsiteAuthorizationExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.externalsiteAuthorization @@ -893,7 +893,7 @@ func (a *ExternalsiteApiService) UpdateExternalsiteAuthorizationExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.externalsiteAuthorization diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_fabric.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_fabric.go index b511598157..126939c6d5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_fabric.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_fabric.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *FabricApiService) CreateFabricAppliancePcRoleExecute(r ApiCreateFabricA localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricAppliancePcRole @@ -291,10 +291,10 @@ func (a *FabricApiService) CreateFabricApplianceRoleExecute(r ApiCreateFabricApp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricApplianceRole @@ -473,10 +473,10 @@ func (a *FabricApiService) CreateFabricEstimateImpactExecute(r ApiCreateFabricEs localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricEstimateImpact @@ -655,10 +655,10 @@ func (a *FabricApiService) CreateFabricEthNetworkControlPolicyExecute(r ApiCreat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricEthNetworkControlPolicy @@ -837,10 +837,10 @@ func (a *FabricApiService) CreateFabricEthNetworkGroupPolicyExecute(r ApiCreateF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricEthNetworkGroupPolicy @@ -1019,10 +1019,10 @@ func (a *FabricApiService) CreateFabricEthNetworkPolicyExecute(r ApiCreateFabric localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricEthNetworkPolicy @@ -1201,10 +1201,10 @@ func (a *FabricApiService) CreateFabricFcNetworkPolicyExecute(r ApiCreateFabricF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricFcNetworkPolicy @@ -1383,10 +1383,10 @@ func (a *FabricApiService) CreateFabricFcStorageRoleExecute(r ApiCreateFabricFcS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricFcStorageRole @@ -1565,10 +1565,10 @@ func (a *FabricApiService) CreateFabricFcUplinkPcRoleExecute(r ApiCreateFabricFc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricFcUplinkPcRole @@ -1747,10 +1747,10 @@ func (a *FabricApiService) CreateFabricFcUplinkRoleExecute(r ApiCreateFabricFcUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricFcUplinkRole @@ -1929,10 +1929,10 @@ func (a *FabricApiService) CreateFabricFcZonePolicyExecute(r ApiCreateFabricFcZo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricFcZonePolicy @@ -2111,10 +2111,10 @@ func (a *FabricApiService) CreateFabricFcoeUplinkPcRoleExecute(r ApiCreateFabric localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricFcoeUplinkPcRole @@ -2293,10 +2293,10 @@ func (a *FabricApiService) CreateFabricFcoeUplinkRoleExecute(r ApiCreateFabricFc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricFcoeUplinkRole @@ -2475,10 +2475,10 @@ func (a *FabricApiService) CreateFabricFlowControlPolicyExecute(r ApiCreateFabri localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricFlowControlPolicy @@ -2657,10 +2657,10 @@ func (a *FabricApiService) CreateFabricLanPinGroupExecute(r ApiCreateFabricLanPi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricLanPinGroup @@ -2839,10 +2839,10 @@ func (a *FabricApiService) CreateFabricLinkAggregationPolicyExecute(r ApiCreateF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricLinkAggregationPolicy @@ -3021,10 +3021,10 @@ func (a *FabricApiService) CreateFabricLinkControlPolicyExecute(r ApiCreateFabri localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricLinkControlPolicy @@ -3203,10 +3203,10 @@ func (a *FabricApiService) CreateFabricMulticastPolicyExecute(r ApiCreateFabricM localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricMulticastPolicy @@ -3385,10 +3385,10 @@ func (a *FabricApiService) CreateFabricPcOperationExecute(r ApiCreateFabricPcOpe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricPcOperation @@ -3567,10 +3567,10 @@ func (a *FabricApiService) CreateFabricPortModeExecute(r ApiCreateFabricPortMode localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricPortMode @@ -3749,10 +3749,10 @@ func (a *FabricApiService) CreateFabricPortOperationExecute(r ApiCreateFabricPor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricPortOperation @@ -3931,10 +3931,10 @@ func (a *FabricApiService) CreateFabricPortPolicyExecute(r ApiCreateFabricPortPo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricPortPolicy @@ -4113,10 +4113,10 @@ func (a *FabricApiService) CreateFabricSanPinGroupExecute(r ApiCreateFabricSanPi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSanPinGroup @@ -4295,10 +4295,10 @@ func (a *FabricApiService) CreateFabricServerRoleExecute(r ApiCreateFabricServer localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricServerRole @@ -4477,10 +4477,10 @@ func (a *FabricApiService) CreateFabricSpanDestEthPortExecute(r ApiCreateFabricS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSpanDestEthPort @@ -4659,10 +4659,10 @@ func (a *FabricApiService) CreateFabricSpanSessionExecute(r ApiCreateFabricSpanS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSpanSession @@ -4841,10 +4841,10 @@ func (a *FabricApiService) CreateFabricSpanSourceEthPortExecute(r ApiCreateFabri localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSpanSourceEthPort @@ -5023,10 +5023,10 @@ func (a *FabricApiService) CreateFabricSpanSourceEthPortChannelExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSpanSourceEthPortChannel @@ -5205,10 +5205,10 @@ func (a *FabricApiService) CreateFabricSpanSourceVlanExecute(r ApiCreateFabricSp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSpanSourceVlan @@ -5387,10 +5387,10 @@ func (a *FabricApiService) CreateFabricSpanSourceVnicEthIfExecute(r ApiCreateFab localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSpanSourceVnicEthIf @@ -5569,10 +5569,10 @@ func (a *FabricApiService) CreateFabricSwitchClusterProfileExecute(r ApiCreateFa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchClusterProfile @@ -5751,10 +5751,10 @@ func (a *FabricApiService) CreateFabricSwitchClusterProfileTemplateExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchClusterProfileTemplate @@ -5933,10 +5933,10 @@ func (a *FabricApiService) CreateFabricSwitchControlPolicyExecute(r ApiCreateFab localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchControlPolicy @@ -6115,10 +6115,10 @@ func (a *FabricApiService) CreateFabricSwitchProfileExecute(r ApiCreateFabricSwi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchProfile @@ -6297,10 +6297,10 @@ func (a *FabricApiService) CreateFabricSwitchProfileTemplateExecute(r ApiCreateF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchProfileTemplate @@ -6479,10 +6479,10 @@ func (a *FabricApiService) CreateFabricSystemQosPolicyExecute(r ApiCreateFabricS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricSystemQosPolicy @@ -6661,10 +6661,10 @@ func (a *FabricApiService) CreateFabricUplinkPcRoleExecute(r ApiCreateFabricUpli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricUplinkPcRole @@ -6843,10 +6843,10 @@ func (a *FabricApiService) CreateFabricUplinkRoleExecute(r ApiCreateFabricUplink localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricUplinkRole @@ -7025,10 +7025,10 @@ func (a *FabricApiService) CreateFabricVlanExecute(r ApiCreateFabricVlanRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricVlan @@ -7207,10 +7207,10 @@ func (a *FabricApiService) CreateFabricVsanExecute(r ApiCreateFabricVsanRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fabricVsan @@ -13117,52 +13117,52 @@ func (a *FabricApiService) GetFabricAppliancePcRoleListExecute(r ApiGetFabricApp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13546,52 +13546,52 @@ func (a *FabricApiService) GetFabricApplianceRoleListExecute(r ApiGetFabricAppli localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13975,52 +13975,52 @@ func (a *FabricApiService) GetFabricConfigChangeDetailListExecute(r ApiGetFabric localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14558,52 +14558,52 @@ func (a *FabricApiService) GetFabricConfigResultEntryListExecute(r ApiGetFabricC localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14833,52 +14833,52 @@ func (a *FabricApiService) GetFabricConfigResultListExecute(r ApiGetFabricConfig localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15262,52 +15262,52 @@ func (a *FabricApiService) GetFabricElementIdentityListExecute(r ApiGetFabricEle localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15845,52 +15845,52 @@ func (a *FabricApiService) GetFabricEthNetworkControlPolicyInventoryListExecute( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16120,52 +16120,52 @@ func (a *FabricApiService) GetFabricEthNetworkControlPolicyListExecute(r ApiGetF localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16703,52 +16703,52 @@ func (a *FabricApiService) GetFabricEthNetworkGroupPolicyInventoryListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16978,52 +16978,52 @@ func (a *FabricApiService) GetFabricEthNetworkGroupPolicyListExecute(r ApiGetFab localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17407,52 +17407,52 @@ func (a *FabricApiService) GetFabricEthNetworkPolicyListExecute(r ApiGetFabricEt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17836,52 +17836,52 @@ func (a *FabricApiService) GetFabricFcNetworkPolicyListExecute(r ApiGetFabricFcN localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18265,52 +18265,52 @@ func (a *FabricApiService) GetFabricFcStorageRoleListExecute(r ApiGetFabricFcSto localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18694,52 +18694,52 @@ func (a *FabricApiService) GetFabricFcUplinkPcRoleListExecute(r ApiGetFabricFcUp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19123,52 +19123,52 @@ func (a *FabricApiService) GetFabricFcUplinkRoleListExecute(r ApiGetFabricFcUpli localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19552,52 +19552,52 @@ func (a *FabricApiService) GetFabricFcZonePolicyListExecute(r ApiGetFabricFcZone localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19981,52 +19981,52 @@ func (a *FabricApiService) GetFabricFcoeUplinkPcRoleListExecute(r ApiGetFabricFc localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20410,52 +20410,52 @@ func (a *FabricApiService) GetFabricFcoeUplinkRoleListExecute(r ApiGetFabricFcoe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20839,52 +20839,52 @@ func (a *FabricApiService) GetFabricFlowControlPolicyListExecute(r ApiGetFabricF localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21268,52 +21268,52 @@ func (a *FabricApiService) GetFabricLanPinGroupListExecute(r ApiGetFabricLanPinG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21697,52 +21697,52 @@ func (a *FabricApiService) GetFabricLinkAggregationPolicyListExecute(r ApiGetFab localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22126,52 +22126,52 @@ func (a *FabricApiService) GetFabricLinkControlPolicyListExecute(r ApiGetFabricL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22555,52 +22555,52 @@ func (a *FabricApiService) GetFabricMulticastPolicyListExecute(r ApiGetFabricMul localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22984,52 +22984,52 @@ func (a *FabricApiService) GetFabricPcMemberListExecute(r ApiGetFabricPcMemberLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23413,52 +23413,52 @@ func (a *FabricApiService) GetFabricPcOperationListExecute(r ApiGetFabricPcOpera localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23842,52 +23842,52 @@ func (a *FabricApiService) GetFabricPortModeListExecute(r ApiGetFabricPortModeLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24271,52 +24271,52 @@ func (a *FabricApiService) GetFabricPortOperationListExecute(r ApiGetFabricPortO localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24700,52 +24700,52 @@ func (a *FabricApiService) GetFabricPortPolicyListExecute(r ApiGetFabricPortPoli localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25129,52 +25129,52 @@ func (a *FabricApiService) GetFabricSanPinGroupListExecute(r ApiGetFabricSanPinG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25558,52 +25558,52 @@ func (a *FabricApiService) GetFabricServerRoleListExecute(r ApiGetFabricServerRo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25987,52 +25987,52 @@ func (a *FabricApiService) GetFabricSpanDestEthPortListExecute(r ApiGetFabricSpa localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26416,52 +26416,52 @@ func (a *FabricApiService) GetFabricSpanSessionListExecute(r ApiGetFabricSpanSes localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26999,52 +26999,52 @@ func (a *FabricApiService) GetFabricSpanSourceEthPortChannelListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27274,52 +27274,52 @@ func (a *FabricApiService) GetFabricSpanSourceEthPortListExecute(r ApiGetFabricS localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27703,52 +27703,52 @@ func (a *FabricApiService) GetFabricSpanSourceVlanListExecute(r ApiGetFabricSpan localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28132,52 +28132,52 @@ func (a *FabricApiService) GetFabricSpanSourceVnicEthIfListExecute(r ApiGetFabri localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28561,52 +28561,52 @@ func (a *FabricApiService) GetFabricSwitchClusterProfileListExecute(r ApiGetFabr localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28990,52 +28990,52 @@ func (a *FabricApiService) GetFabricSwitchClusterProfileTemplateListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29419,52 +29419,52 @@ func (a *FabricApiService) GetFabricSwitchControlPolicyListExecute(r ApiGetFabri localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29848,52 +29848,52 @@ func (a *FabricApiService) GetFabricSwitchProfileListExecute(r ApiGetFabricSwitc localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -30277,52 +30277,52 @@ func (a *FabricApiService) GetFabricSwitchProfileTemplateListExecute(r ApiGetFab localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -30706,52 +30706,52 @@ func (a *FabricApiService) GetFabricSystemQosPolicyListExecute(r ApiGetFabricSys localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -31135,52 +31135,52 @@ func (a *FabricApiService) GetFabricUplinkPcRoleListExecute(r ApiGetFabricUplink localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -31564,52 +31564,52 @@ func (a *FabricApiService) GetFabricUplinkRoleListExecute(r ApiGetFabricUplinkRo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -32147,52 +32147,52 @@ func (a *FabricApiService) GetFabricVlanInventoryListExecute(r ApiGetFabricVlanI localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -32422,52 +32422,52 @@ func (a *FabricApiService) GetFabricVlanListExecute(r ApiGetFabricVlanListReques localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -32851,52 +32851,52 @@ func (a *FabricApiService) GetFabricVlanSetListExecute(r ApiGetFabricVlanSetList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -33434,52 +33434,52 @@ func (a *FabricApiService) GetFabricVsanInventoryListExecute(r ApiGetFabricVsanI localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -33709,52 +33709,52 @@ func (a *FabricApiService) GetFabricVsanListExecute(r ApiGetFabricVsanListReques localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -33945,7 +33945,7 @@ func (a *FabricApiService) PatchFabricAppliancePcRoleExecute(r ApiPatchFabricApp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricAppliancePcRole @@ -34121,7 +34121,7 @@ func (a *FabricApiService) PatchFabricApplianceRoleExecute(r ApiPatchFabricAppli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricApplianceRole @@ -34297,7 +34297,7 @@ func (a *FabricApiService) PatchFabricElementIdentityExecute(r ApiPatchFabricEle localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricElementIdentity @@ -34473,7 +34473,7 @@ func (a *FabricApiService) PatchFabricEthNetworkControlPolicyExecute(r ApiPatchF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricEthNetworkControlPolicy @@ -34649,7 +34649,7 @@ func (a *FabricApiService) PatchFabricEthNetworkGroupPolicyExecute(r ApiPatchFab localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricEthNetworkGroupPolicy @@ -34825,7 +34825,7 @@ func (a *FabricApiService) PatchFabricEthNetworkPolicyExecute(r ApiPatchFabricEt localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricEthNetworkPolicy @@ -35001,7 +35001,7 @@ func (a *FabricApiService) PatchFabricFcNetworkPolicyExecute(r ApiPatchFabricFcN localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcNetworkPolicy @@ -35177,7 +35177,7 @@ func (a *FabricApiService) PatchFabricFcStorageRoleExecute(r ApiPatchFabricFcSto localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcStorageRole @@ -35353,7 +35353,7 @@ func (a *FabricApiService) PatchFabricFcUplinkPcRoleExecute(r ApiPatchFabricFcUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcUplinkPcRole @@ -35529,7 +35529,7 @@ func (a *FabricApiService) PatchFabricFcUplinkRoleExecute(r ApiPatchFabricFcUpli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcUplinkRole @@ -35705,7 +35705,7 @@ func (a *FabricApiService) PatchFabricFcZonePolicyExecute(r ApiPatchFabricFcZone localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcZonePolicy @@ -35881,7 +35881,7 @@ func (a *FabricApiService) PatchFabricFcoeUplinkPcRoleExecute(r ApiPatchFabricFc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcoeUplinkPcRole @@ -36057,7 +36057,7 @@ func (a *FabricApiService) PatchFabricFcoeUplinkRoleExecute(r ApiPatchFabricFcoe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcoeUplinkRole @@ -36233,7 +36233,7 @@ func (a *FabricApiService) PatchFabricFlowControlPolicyExecute(r ApiPatchFabricF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFlowControlPolicy @@ -36409,7 +36409,7 @@ func (a *FabricApiService) PatchFabricLanPinGroupExecute(r ApiPatchFabricLanPinG localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricLanPinGroup @@ -36585,7 +36585,7 @@ func (a *FabricApiService) PatchFabricLinkAggregationPolicyExecute(r ApiPatchFab localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricLinkAggregationPolicy @@ -36761,7 +36761,7 @@ func (a *FabricApiService) PatchFabricLinkControlPolicyExecute(r ApiPatchFabricL localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricLinkControlPolicy @@ -36937,7 +36937,7 @@ func (a *FabricApiService) PatchFabricMulticastPolicyExecute(r ApiPatchFabricMul localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricMulticastPolicy @@ -37113,7 +37113,7 @@ func (a *FabricApiService) PatchFabricPcOperationExecute(r ApiPatchFabricPcOpera localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricPcOperation @@ -37289,7 +37289,7 @@ func (a *FabricApiService) PatchFabricPortModeExecute(r ApiPatchFabricPortModeRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricPortMode @@ -37465,7 +37465,7 @@ func (a *FabricApiService) PatchFabricPortOperationExecute(r ApiPatchFabricPortO localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricPortOperation @@ -37641,7 +37641,7 @@ func (a *FabricApiService) PatchFabricPortPolicyExecute(r ApiPatchFabricPortPoli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricPortPolicy @@ -37817,7 +37817,7 @@ func (a *FabricApiService) PatchFabricSanPinGroupExecute(r ApiPatchFabricSanPinG localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSanPinGroup @@ -37993,7 +37993,7 @@ func (a *FabricApiService) PatchFabricServerRoleExecute(r ApiPatchFabricServerRo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricServerRole @@ -38169,7 +38169,7 @@ func (a *FabricApiService) PatchFabricSpanDestEthPortExecute(r ApiPatchFabricSpa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSpanDestEthPort @@ -38345,7 +38345,7 @@ func (a *FabricApiService) PatchFabricSpanSessionExecute(r ApiPatchFabricSpanSes localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSpanSession @@ -38521,7 +38521,7 @@ func (a *FabricApiService) PatchFabricSwitchClusterProfileExecute(r ApiPatchFabr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchClusterProfile @@ -38697,7 +38697,7 @@ func (a *FabricApiService) PatchFabricSwitchClusterProfileTemplateExecute(r ApiP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchClusterProfileTemplate @@ -38873,7 +38873,7 @@ func (a *FabricApiService) PatchFabricSwitchControlPolicyExecute(r ApiPatchFabri localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchControlPolicy @@ -39049,7 +39049,7 @@ func (a *FabricApiService) PatchFabricSwitchProfileExecute(r ApiPatchFabricSwitc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchProfile @@ -39225,7 +39225,7 @@ func (a *FabricApiService) PatchFabricSwitchProfileTemplateExecute(r ApiPatchFab localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchProfileTemplate @@ -39401,7 +39401,7 @@ func (a *FabricApiService) PatchFabricSystemQosPolicyExecute(r ApiPatchFabricSys localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSystemQosPolicy @@ -39577,7 +39577,7 @@ func (a *FabricApiService) PatchFabricUplinkPcRoleExecute(r ApiPatchFabricUplink localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricUplinkPcRole @@ -39753,7 +39753,7 @@ func (a *FabricApiService) PatchFabricUplinkRoleExecute(r ApiPatchFabricUplinkRo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricUplinkRole @@ -39929,7 +39929,7 @@ func (a *FabricApiService) PatchFabricVlanExecute(r ApiPatchFabricVlanRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricVlan @@ -40105,7 +40105,7 @@ func (a *FabricApiService) PatchFabricVsanExecute(r ApiPatchFabricVsanRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricVsan @@ -40281,7 +40281,7 @@ func (a *FabricApiService) UpdateFabricAppliancePcRoleExecute(r ApiUpdateFabricA localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricAppliancePcRole @@ -40457,7 +40457,7 @@ func (a *FabricApiService) UpdateFabricApplianceRoleExecute(r ApiUpdateFabricApp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricApplianceRole @@ -40633,7 +40633,7 @@ func (a *FabricApiService) UpdateFabricElementIdentityExecute(r ApiUpdateFabricE localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricElementIdentity @@ -40809,7 +40809,7 @@ func (a *FabricApiService) UpdateFabricEthNetworkControlPolicyExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricEthNetworkControlPolicy @@ -40985,7 +40985,7 @@ func (a *FabricApiService) UpdateFabricEthNetworkGroupPolicyExecute(r ApiUpdateF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricEthNetworkGroupPolicy @@ -41161,7 +41161,7 @@ func (a *FabricApiService) UpdateFabricEthNetworkPolicyExecute(r ApiUpdateFabric localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricEthNetworkPolicy @@ -41337,7 +41337,7 @@ func (a *FabricApiService) UpdateFabricFcNetworkPolicyExecute(r ApiUpdateFabricF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcNetworkPolicy @@ -41513,7 +41513,7 @@ func (a *FabricApiService) UpdateFabricFcStorageRoleExecute(r ApiUpdateFabricFcS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcStorageRole @@ -41689,7 +41689,7 @@ func (a *FabricApiService) UpdateFabricFcUplinkPcRoleExecute(r ApiUpdateFabricFc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcUplinkPcRole @@ -41865,7 +41865,7 @@ func (a *FabricApiService) UpdateFabricFcUplinkRoleExecute(r ApiUpdateFabricFcUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcUplinkRole @@ -42041,7 +42041,7 @@ func (a *FabricApiService) UpdateFabricFcZonePolicyExecute(r ApiUpdateFabricFcZo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcZonePolicy @@ -42217,7 +42217,7 @@ func (a *FabricApiService) UpdateFabricFcoeUplinkPcRoleExecute(r ApiUpdateFabric localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcoeUplinkPcRole @@ -42393,7 +42393,7 @@ func (a *FabricApiService) UpdateFabricFcoeUplinkRoleExecute(r ApiUpdateFabricFc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFcoeUplinkRole @@ -42569,7 +42569,7 @@ func (a *FabricApiService) UpdateFabricFlowControlPolicyExecute(r ApiUpdateFabri localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricFlowControlPolicy @@ -42745,7 +42745,7 @@ func (a *FabricApiService) UpdateFabricLanPinGroupExecute(r ApiUpdateFabricLanPi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricLanPinGroup @@ -42921,7 +42921,7 @@ func (a *FabricApiService) UpdateFabricLinkAggregationPolicyExecute(r ApiUpdateF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricLinkAggregationPolicy @@ -43097,7 +43097,7 @@ func (a *FabricApiService) UpdateFabricLinkControlPolicyExecute(r ApiUpdateFabri localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricLinkControlPolicy @@ -43273,7 +43273,7 @@ func (a *FabricApiService) UpdateFabricMulticastPolicyExecute(r ApiUpdateFabricM localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricMulticastPolicy @@ -43449,7 +43449,7 @@ func (a *FabricApiService) UpdateFabricPcOperationExecute(r ApiUpdateFabricPcOpe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricPcOperation @@ -43625,7 +43625,7 @@ func (a *FabricApiService) UpdateFabricPortModeExecute(r ApiUpdateFabricPortMode localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricPortMode @@ -43801,7 +43801,7 @@ func (a *FabricApiService) UpdateFabricPortOperationExecute(r ApiUpdateFabricPor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricPortOperation @@ -43977,7 +43977,7 @@ func (a *FabricApiService) UpdateFabricPortPolicyExecute(r ApiUpdateFabricPortPo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricPortPolicy @@ -44153,7 +44153,7 @@ func (a *FabricApiService) UpdateFabricSanPinGroupExecute(r ApiUpdateFabricSanPi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSanPinGroup @@ -44329,7 +44329,7 @@ func (a *FabricApiService) UpdateFabricServerRoleExecute(r ApiUpdateFabricServer localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricServerRole @@ -44505,7 +44505,7 @@ func (a *FabricApiService) UpdateFabricSpanDestEthPortExecute(r ApiUpdateFabricS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSpanDestEthPort @@ -44681,7 +44681,7 @@ func (a *FabricApiService) UpdateFabricSpanSessionExecute(r ApiUpdateFabricSpanS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSpanSession @@ -44857,7 +44857,7 @@ func (a *FabricApiService) UpdateFabricSwitchClusterProfileExecute(r ApiUpdateFa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchClusterProfile @@ -45033,7 +45033,7 @@ func (a *FabricApiService) UpdateFabricSwitchClusterProfileTemplateExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchClusterProfileTemplate @@ -45209,7 +45209,7 @@ func (a *FabricApiService) UpdateFabricSwitchControlPolicyExecute(r ApiUpdateFab localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchControlPolicy @@ -45385,7 +45385,7 @@ func (a *FabricApiService) UpdateFabricSwitchProfileExecute(r ApiUpdateFabricSwi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchProfile @@ -45561,7 +45561,7 @@ func (a *FabricApiService) UpdateFabricSwitchProfileTemplateExecute(r ApiUpdateF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSwitchProfileTemplate @@ -45737,7 +45737,7 @@ func (a *FabricApiService) UpdateFabricSystemQosPolicyExecute(r ApiUpdateFabricS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricSystemQosPolicy @@ -45913,7 +45913,7 @@ func (a *FabricApiService) UpdateFabricUplinkPcRoleExecute(r ApiUpdateFabricUpli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricUplinkPcRole @@ -46089,7 +46089,7 @@ func (a *FabricApiService) UpdateFabricUplinkRoleExecute(r ApiUpdateFabricUplink localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricUplinkRole @@ -46265,7 +46265,7 @@ func (a *FabricApiService) UpdateFabricVlanExecute(r ApiUpdateFabricVlanRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricVlan @@ -46441,7 +46441,7 @@ func (a *FabricApiService) UpdateFabricVsanExecute(r ApiUpdateFabricVsanRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fabricVsan diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_fault.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_fault.go index 51ef3bbab0..218e640658 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_fault.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_fault.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *FaultApiService) GetFaultInstanceListExecute(r ApiGetFaultInstanceListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -535,7 +535,7 @@ func (a *FaultApiService) PatchFaultInstanceExecute(r ApiPatchFaultInstanceReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.faultInstance @@ -711,7 +711,7 @@ func (a *FaultApiService) UpdateFaultInstanceExecute(r ApiUpdateFaultInstanceReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.faultInstance diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_fc.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_fc.go index e08e511775..f9742fd91c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_fc.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_fc.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *FcApiService) GetFcNeighborListExecute(r ApiGetFcNeighborListRequest) ( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *FcApiService) GetFcPhysicalPortListExecute(r ApiGetFcPhysicalPortListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *FcApiService) GetFcPortChannelListExecute(r ApiGetFcPortChannelListRequ localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1393,7 +1393,7 @@ func (a *FcApiService) PatchFcPhysicalPortExecute(r ApiPatchFcPhysicalPortReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fcPhysicalPort @@ -1569,7 +1569,7 @@ func (a *FcApiService) UpdateFcPhysicalPortExecute(r ApiUpdateFcPhysicalPortRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fcPhysicalPort diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_fcpool.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_fcpool.go index a331b75b97..cff2797321 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_fcpool.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_fcpool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *FcpoolApiService) CreateFcpoolPoolExecute(r ApiCreateFcpoolPoolRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fcpoolPool @@ -291,10 +291,10 @@ func (a *FcpoolApiService) CreateFcpoolReservationExecute(r ApiCreateFcpoolReser localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.fcpoolReservation @@ -1089,52 +1089,52 @@ func (a *FcpoolApiService) GetFcpoolFcBlockListExecute(r ApiGetFcpoolFcBlockList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1518,52 +1518,52 @@ func (a *FcpoolApiService) GetFcpoolLeaseListExecute(r ApiGetFcpoolLeaseListRequ localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1947,52 +1947,52 @@ func (a *FcpoolApiService) GetFcpoolPoolListExecute(r ApiGetFcpoolPoolListReques localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2376,52 +2376,52 @@ func (a *FcpoolApiService) GetFcpoolPoolMemberListExecute(r ApiGetFcpoolPoolMemb localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2805,52 +2805,52 @@ func (a *FcpoolApiService) GetFcpoolReservationListExecute(r ApiGetFcpoolReserva localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3234,52 +3234,52 @@ func (a *FcpoolApiService) GetFcpoolUniverseListExecute(r ApiGetFcpoolUniverseLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3470,7 +3470,7 @@ func (a *FcpoolApiService) PatchFcpoolPoolExecute(r ApiPatchFcpoolPoolRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fcpoolPool @@ -3646,7 +3646,7 @@ func (a *FcpoolApiService) UpdateFcpoolPoolExecute(r ApiUpdateFcpoolPoolRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.fcpoolPool diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_feedback.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_feedback.go index 0520575d51..81be596539 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_feedback.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_feedback.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *FeedbackApiService) CreateFeedbackFeedbackPostExecute(r ApiCreateFeedba localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.feedbackFeedbackPost @@ -288,7 +288,7 @@ func (a *FeedbackApiService) PatchFeedbackFeedbackPostExecute(r ApiPatchFeedback localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.feedbackFeedbackPost @@ -464,7 +464,7 @@ func (a *FeedbackApiService) UpdateFeedbackFeedbackPostExecute(r ApiUpdateFeedba localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.feedbackFeedbackPost diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_firmware.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_firmware.go index 683e50c2f3..9d4c5af5f6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_firmware.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_firmware.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *FirmwareApiService) CreateFirmwareBiosDescriptorExecute(r ApiCreateFirm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareBiosDescriptor @@ -291,10 +291,10 @@ func (a *FirmwareApiService) CreateFirmwareBoardControllerDescriptorExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareBoardControllerDescriptor @@ -473,10 +473,10 @@ func (a *FirmwareApiService) CreateFirmwareChassisUpgradeExecute(r ApiCreateFirm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareChassisUpgrade @@ -655,10 +655,10 @@ func (a *FirmwareApiService) CreateFirmwareCimcDescriptorExecute(r ApiCreateFirm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareCimcDescriptor @@ -837,10 +837,10 @@ func (a *FirmwareApiService) CreateFirmwareDimmDescriptorExecute(r ApiCreateFirm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareDimmDescriptor @@ -1019,10 +1019,10 @@ func (a *FirmwareApiService) CreateFirmwareDistributableExecute(r ApiCreateFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareDistributable @@ -1201,10 +1201,10 @@ func (a *FirmwareApiService) CreateFirmwareDriveDescriptorExecute(r ApiCreateFir localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareDriveDescriptor @@ -1383,10 +1383,10 @@ func (a *FirmwareApiService) CreateFirmwareDriverDistributableExecute(r ApiCreat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareDriverDistributable @@ -1565,10 +1565,10 @@ func (a *FirmwareApiService) CreateFirmwareEulaExecute(r ApiCreateFirmwareEulaRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareEula @@ -1747,10 +1747,10 @@ func (a *FirmwareApiService) CreateFirmwareGpuDescriptorExecute(r ApiCreateFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareGpuDescriptor @@ -1929,10 +1929,10 @@ func (a *FirmwareApiService) CreateFirmwareHbaDescriptorExecute(r ApiCreateFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareHbaDescriptor @@ -2111,10 +2111,10 @@ func (a *FirmwareApiService) CreateFirmwareIomDescriptorExecute(r ApiCreateFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareIomDescriptor @@ -2293,10 +2293,10 @@ func (a *FirmwareApiService) CreateFirmwareMswitchDescriptorExecute(r ApiCreateF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareMswitchDescriptor @@ -2475,10 +2475,10 @@ func (a *FirmwareApiService) CreateFirmwareNxosDescriptorExecute(r ApiCreateFirm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareNxosDescriptor @@ -2657,10 +2657,10 @@ func (a *FirmwareApiService) CreateFirmwarePcieDescriptorExecute(r ApiCreateFirm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwarePcieDescriptor @@ -2839,10 +2839,10 @@ func (a *FirmwareApiService) CreateFirmwarePolicyExecute(r ApiCreateFirmwarePoli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwarePolicy @@ -3021,10 +3021,10 @@ func (a *FirmwareApiService) CreateFirmwarePsuDescriptorExecute(r ApiCreateFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwarePsuDescriptor @@ -3203,10 +3203,10 @@ func (a *FirmwareApiService) CreateFirmwareSasExpanderDescriptorExecute(r ApiCre localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareSasExpanderDescriptor @@ -3385,10 +3385,10 @@ func (a *FirmwareApiService) CreateFirmwareServerConfigurationUtilityDistributab localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareServerConfigurationUtilityDistributable @@ -3567,10 +3567,10 @@ func (a *FirmwareApiService) CreateFirmwareStorageControllerDescriptorExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareStorageControllerDescriptor @@ -3749,10 +3749,10 @@ func (a *FirmwareApiService) CreateFirmwareSwitchUpgradeExecute(r ApiCreateFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareSwitchUpgrade @@ -3931,10 +3931,10 @@ func (a *FirmwareApiService) CreateFirmwareUnsupportedVersionUpgradeExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareUnsupportedVersionUpgrade @@ -4113,10 +4113,10 @@ func (a *FirmwareApiService) CreateFirmwareUpgradeExecute(r ApiCreateFirmwareUpg localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareUpgrade @@ -4295,10 +4295,10 @@ func (a *FirmwareApiService) CreateFirmwareUpgradeImpactExecute(r ApiCreateFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareUpgradeImpact @@ -4477,10 +4477,10 @@ func (a *FirmwareApiService) CreateFirmwareUpgradeValidityExecute(r ApiCreateFir localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.firmwareUpgradeValidity @@ -7973,52 +7973,52 @@ func (a *FirmwareApiService) GetFirmwareBiosDescriptorListExecute(r ApiGetFirmwa localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8402,52 +8402,52 @@ func (a *FirmwareApiService) GetFirmwareBoardControllerDescriptorListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8831,52 +8831,52 @@ func (a *FirmwareApiService) GetFirmwareChassisUpgradeListExecute(r ApiGetFirmwa localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9260,52 +9260,52 @@ func (a *FirmwareApiService) GetFirmwareCimcDescriptorListExecute(r ApiGetFirmwa localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9689,52 +9689,52 @@ func (a *FirmwareApiService) GetFirmwareDimmDescriptorListExecute(r ApiGetFirmwa localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10118,52 +10118,52 @@ func (a *FirmwareApiService) GetFirmwareDistributableListExecute(r ApiGetFirmwar localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10547,52 +10547,52 @@ func (a *FirmwareApiService) GetFirmwareDistributableMetaListExecute(r ApiGetFir localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10976,52 +10976,52 @@ func (a *FirmwareApiService) GetFirmwareDriveDescriptorListExecute(r ApiGetFirmw localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11405,52 +11405,52 @@ func (a *FirmwareApiService) GetFirmwareDriverDistributableListExecute(r ApiGetF localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11834,52 +11834,52 @@ func (a *FirmwareApiService) GetFirmwareEulaListExecute(r ApiGetFirmwareEulaList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12263,52 +12263,52 @@ func (a *FirmwareApiService) GetFirmwareFirmwareSummaryListExecute(r ApiGetFirmw localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12692,52 +12692,52 @@ func (a *FirmwareApiService) GetFirmwareGpuDescriptorListExecute(r ApiGetFirmwar localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13121,52 +13121,52 @@ func (a *FirmwareApiService) GetFirmwareHbaDescriptorListExecute(r ApiGetFirmwar localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13550,52 +13550,52 @@ func (a *FirmwareApiService) GetFirmwareIomDescriptorListExecute(r ApiGetFirmwar localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13979,52 +13979,52 @@ func (a *FirmwareApiService) GetFirmwareMswitchDescriptorListExecute(r ApiGetFir localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14408,52 +14408,52 @@ func (a *FirmwareApiService) GetFirmwareNxosDescriptorListExecute(r ApiGetFirmwa localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14837,52 +14837,52 @@ func (a *FirmwareApiService) GetFirmwarePcieDescriptorListExecute(r ApiGetFirmwa localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15266,52 +15266,52 @@ func (a *FirmwareApiService) GetFirmwarePolicyListExecute(r ApiGetFirmwarePolicy localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15695,52 +15695,52 @@ func (a *FirmwareApiService) GetFirmwarePsuDescriptorListExecute(r ApiGetFirmwar localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16124,52 +16124,52 @@ func (a *FirmwareApiService) GetFirmwareRunningFirmwareListExecute(r ApiGetFirmw localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16553,52 +16553,52 @@ func (a *FirmwareApiService) GetFirmwareSasExpanderDescriptorListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16982,52 +16982,52 @@ func (a *FirmwareApiService) GetFirmwareServerConfigurationUtilityDistributableL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17411,52 +17411,52 @@ func (a *FirmwareApiService) GetFirmwareStorageControllerDescriptorListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17840,52 +17840,52 @@ func (a *FirmwareApiService) GetFirmwareSwitchUpgradeListExecute(r ApiGetFirmwar localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18269,52 +18269,52 @@ func (a *FirmwareApiService) GetFirmwareUnsupportedVersionUpgradeListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18852,52 +18852,52 @@ func (a *FirmwareApiService) GetFirmwareUpgradeImpactStatusListExecute(r ApiGetF localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19127,52 +19127,52 @@ func (a *FirmwareApiService) GetFirmwareUpgradeListExecute(r ApiGetFirmwareUpgra localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19556,52 +19556,52 @@ func (a *FirmwareApiService) GetFirmwareUpgradeStatusListExecute(r ApiGetFirmwar localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19792,7 +19792,7 @@ func (a *FirmwareApiService) PatchFirmwareBiosDescriptorExecute(r ApiPatchFirmwa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareBiosDescriptor @@ -19968,7 +19968,7 @@ func (a *FirmwareApiService) PatchFirmwareBoardControllerDescriptorExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareBoardControllerDescriptor @@ -20144,7 +20144,7 @@ func (a *FirmwareApiService) PatchFirmwareCimcDescriptorExecute(r ApiPatchFirmwa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareCimcDescriptor @@ -20320,7 +20320,7 @@ func (a *FirmwareApiService) PatchFirmwareDimmDescriptorExecute(r ApiPatchFirmwa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareDimmDescriptor @@ -20496,7 +20496,7 @@ func (a *FirmwareApiService) PatchFirmwareDistributableExecute(r ApiPatchFirmwar localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareDistributable @@ -20672,7 +20672,7 @@ func (a *FirmwareApiService) PatchFirmwareDriveDescriptorExecute(r ApiPatchFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareDriveDescriptor @@ -20848,7 +20848,7 @@ func (a *FirmwareApiService) PatchFirmwareDriverDistributableExecute(r ApiPatchF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareDriverDistributable @@ -21024,7 +21024,7 @@ func (a *FirmwareApiService) PatchFirmwareGpuDescriptorExecute(r ApiPatchFirmwar localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareGpuDescriptor @@ -21200,7 +21200,7 @@ func (a *FirmwareApiService) PatchFirmwareHbaDescriptorExecute(r ApiPatchFirmwar localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareHbaDescriptor @@ -21376,7 +21376,7 @@ func (a *FirmwareApiService) PatchFirmwareIomDescriptorExecute(r ApiPatchFirmwar localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareIomDescriptor @@ -21552,7 +21552,7 @@ func (a *FirmwareApiService) PatchFirmwareMswitchDescriptorExecute(r ApiPatchFir localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareMswitchDescriptor @@ -21728,7 +21728,7 @@ func (a *FirmwareApiService) PatchFirmwareNxosDescriptorExecute(r ApiPatchFirmwa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareNxosDescriptor @@ -21904,7 +21904,7 @@ func (a *FirmwareApiService) PatchFirmwarePcieDescriptorExecute(r ApiPatchFirmwa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwarePcieDescriptor @@ -22080,7 +22080,7 @@ func (a *FirmwareApiService) PatchFirmwarePolicyExecute(r ApiPatchFirmwarePolicy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwarePolicy @@ -22256,7 +22256,7 @@ func (a *FirmwareApiService) PatchFirmwarePsuDescriptorExecute(r ApiPatchFirmwar localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwarePsuDescriptor @@ -22432,7 +22432,7 @@ func (a *FirmwareApiService) PatchFirmwareRunningFirmwareExecute(r ApiPatchFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareRunningFirmware @@ -22608,7 +22608,7 @@ func (a *FirmwareApiService) PatchFirmwareSasExpanderDescriptorExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareSasExpanderDescriptor @@ -22784,7 +22784,7 @@ func (a *FirmwareApiService) PatchFirmwareServerConfigurationUtilityDistributabl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareServerConfigurationUtilityDistributable @@ -22960,7 +22960,7 @@ func (a *FirmwareApiService) PatchFirmwareStorageControllerDescriptorExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareStorageControllerDescriptor @@ -23136,7 +23136,7 @@ func (a *FirmwareApiService) PatchFirmwareUnsupportedVersionUpgradeExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareUnsupportedVersionUpgrade @@ -23312,7 +23312,7 @@ func (a *FirmwareApiService) PatchFirmwareUpgradeExecute(r ApiPatchFirmwareUpgra localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareUpgrade @@ -23488,7 +23488,7 @@ func (a *FirmwareApiService) UpdateFirmwareBiosDescriptorExecute(r ApiUpdateFirm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareBiosDescriptor @@ -23664,7 +23664,7 @@ func (a *FirmwareApiService) UpdateFirmwareBoardControllerDescriptorExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareBoardControllerDescriptor @@ -23840,7 +23840,7 @@ func (a *FirmwareApiService) UpdateFirmwareCimcDescriptorExecute(r ApiUpdateFirm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareCimcDescriptor @@ -24016,7 +24016,7 @@ func (a *FirmwareApiService) UpdateFirmwareDimmDescriptorExecute(r ApiUpdateFirm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareDimmDescriptor @@ -24192,7 +24192,7 @@ func (a *FirmwareApiService) UpdateFirmwareDistributableExecute(r ApiUpdateFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareDistributable @@ -24368,7 +24368,7 @@ func (a *FirmwareApiService) UpdateFirmwareDriveDescriptorExecute(r ApiUpdateFir localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareDriveDescriptor @@ -24544,7 +24544,7 @@ func (a *FirmwareApiService) UpdateFirmwareDriverDistributableExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareDriverDistributable @@ -24720,7 +24720,7 @@ func (a *FirmwareApiService) UpdateFirmwareGpuDescriptorExecute(r ApiUpdateFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareGpuDescriptor @@ -24896,7 +24896,7 @@ func (a *FirmwareApiService) UpdateFirmwareHbaDescriptorExecute(r ApiUpdateFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareHbaDescriptor @@ -25072,7 +25072,7 @@ func (a *FirmwareApiService) UpdateFirmwareIomDescriptorExecute(r ApiUpdateFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareIomDescriptor @@ -25248,7 +25248,7 @@ func (a *FirmwareApiService) UpdateFirmwareMswitchDescriptorExecute(r ApiUpdateF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareMswitchDescriptor @@ -25424,7 +25424,7 @@ func (a *FirmwareApiService) UpdateFirmwareNxosDescriptorExecute(r ApiUpdateFirm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareNxosDescriptor @@ -25600,7 +25600,7 @@ func (a *FirmwareApiService) UpdateFirmwarePcieDescriptorExecute(r ApiUpdateFirm localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwarePcieDescriptor @@ -25776,7 +25776,7 @@ func (a *FirmwareApiService) UpdateFirmwarePolicyExecute(r ApiUpdateFirmwarePoli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwarePolicy @@ -25952,7 +25952,7 @@ func (a *FirmwareApiService) UpdateFirmwarePsuDescriptorExecute(r ApiUpdateFirmw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwarePsuDescriptor @@ -26128,7 +26128,7 @@ func (a *FirmwareApiService) UpdateFirmwareRunningFirmwareExecute(r ApiUpdateFir localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareRunningFirmware @@ -26304,7 +26304,7 @@ func (a *FirmwareApiService) UpdateFirmwareSasExpanderDescriptorExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareSasExpanderDescriptor @@ -26480,7 +26480,7 @@ func (a *FirmwareApiService) UpdateFirmwareServerConfigurationUtilityDistributab localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareServerConfigurationUtilityDistributable @@ -26656,7 +26656,7 @@ func (a *FirmwareApiService) UpdateFirmwareStorageControllerDescriptorExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareStorageControllerDescriptor @@ -26832,7 +26832,7 @@ func (a *FirmwareApiService) UpdateFirmwareUnsupportedVersionUpgradeExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareUnsupportedVersionUpgrade @@ -27008,7 +27008,7 @@ func (a *FirmwareApiService) UpdateFirmwareUpgradeExecute(r ApiUpdateFirmwareUpg localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.firmwareUpgrade diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_fmc.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_fmc.go index 6fd6388735..9fad688b35 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_fmc.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_fmc.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -453,52 +453,52 @@ func (a *FmcApiService) GetFmcDeviceHaPairListExecute(r ApiGetFmcDeviceHaPairLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *FmcApiService) GetFmcDeviceListExecute(r ApiGetFmcDeviceListRequest) (* localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *FmcApiService) GetFmcDomainListExecute(r ApiGetFmcDomainListRequest) (* localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1586,52 +1586,52 @@ func (a *FmcApiService) GetFmcPhysicalInterfaceListExecute(r ApiGetFmcPhysicalIn localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_forecast.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_forecast.go index b4e7c65918..2ea45e4c3f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_forecast.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_forecast.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *ForecastApiService) GetForecastCatalogListExecute(r ApiGetForecastCatal localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *ForecastApiService) GetForecastDefinitionListExecute(r ApiGetForecastDe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *ForecastApiService) GetForecastInstanceListExecute(r ApiGetForecastInst localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1393,7 +1393,7 @@ func (a *ForecastApiService) PatchForecastInstanceExecute(r ApiPatchForecastInst localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.forecastInstance @@ -1569,7 +1569,7 @@ func (a *ForecastApiService) UpdateForecastInstanceExecute(r ApiUpdateForecastIn localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.forecastInstance diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_graphics.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_graphics.go index 5ee5ba2e9c..81bb0ca213 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_graphics.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_graphics.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *GraphicsApiService) GetGraphicsCardListExecute(r ApiGetGraphicsCardList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *GraphicsApiService) GetGraphicsControllerListExecute(r ApiGetGraphicsCo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -964,7 +964,7 @@ func (a *GraphicsApiService) PatchGraphicsCardExecute(r ApiPatchGraphicsCardRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.graphicsCard @@ -1140,7 +1140,7 @@ func (a *GraphicsApiService) PatchGraphicsControllerExecute(r ApiPatchGraphicsCo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.graphicsController @@ -1316,7 +1316,7 @@ func (a *GraphicsApiService) UpdateGraphicsCardExecute(r ApiUpdateGraphicsCardRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.graphicsCard @@ -1492,7 +1492,7 @@ func (a *GraphicsApiService) UpdateGraphicsControllerExecute(r ApiUpdateGraphics localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.graphicsController diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_hcl.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_hcl.go index 30e93457cf..ec2fc6f5b9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_hcl.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_hcl.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *HclApiService) CreateHclCompatibilityStatusExecute(r ApiCreateHclCompat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hclCompatibilityStatus @@ -291,10 +291,10 @@ func (a *HclApiService) CreateHclHyperflexSoftwareCompatibilityInfoExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hclHyperflexSoftwareCompatibilityInfo @@ -473,10 +473,10 @@ func (a *HclApiService) CreateHclSupportedDriverNameExecute(r ApiCreateHclSuppor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hclSupportedDriverName @@ -987,52 +987,52 @@ func (a *HclApiService) GetHclDriverImageListExecute(r ApiGetHclDriverImageListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1416,52 +1416,52 @@ func (a *HclApiService) GetHclExemptedCatalogListExecute(r ApiGetHclExemptedCata localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1845,52 +1845,52 @@ func (a *HclApiService) GetHclHwCatalogInfoListExecute(r ApiGetHclHwCatalogInfoL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2274,52 +2274,52 @@ func (a *HclApiService) GetHclHyperflexSoftwareCompatibilityInfoListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2703,52 +2703,52 @@ func (a *HclApiService) GetHclOperatingSystemListExecute(r ApiGetHclOperatingSys localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3132,52 +3132,52 @@ func (a *HclApiService) GetHclOperatingSystemVendorListExecute(r ApiGetHclOperat localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3561,52 +3561,52 @@ func (a *HclApiService) GetHclServerHwCatalogInfoListExecute(r ApiGetHclServerHw localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3797,7 +3797,7 @@ func (a *HclApiService) PatchHclHyperflexSoftwareCompatibilityInfoExecute(r ApiP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hclHyperflexSoftwareCompatibilityInfo @@ -3973,7 +3973,7 @@ func (a *HclApiService) UpdateHclHyperflexSoftwareCompatibilityInfoExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hclHyperflexSoftwareCompatibilityInfo diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_hyperflex.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_hyperflex.go index baed215128..3c49e0054c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_hyperflex.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_hyperflex.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *HyperflexApiService) CreateHyperflexAppCatalogExecute(r ApiCreateHyperf localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexAppCatalog @@ -291,10 +291,10 @@ func (a *HyperflexApiService) CreateHyperflexAutoSupportPolicyExecute(r ApiCreat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexAutoSupportPolicy @@ -473,10 +473,10 @@ func (a *HyperflexApiService) CreateHyperflexCapabilityInfoExecute(r ApiCreateHy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexCapabilityInfo @@ -655,10 +655,10 @@ func (a *HyperflexApiService) CreateHyperflexClusterBackupPolicyExecute(r ApiCre localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterBackupPolicy @@ -837,10 +837,10 @@ func (a *HyperflexApiService) CreateHyperflexClusterBackupPolicyDeploymentExecut localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterBackupPolicyDeployment @@ -1019,10 +1019,10 @@ func (a *HyperflexApiService) CreateHyperflexClusterNetworkPolicyExecute(r ApiCr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterNetworkPolicy @@ -1201,10 +1201,10 @@ func (a *HyperflexApiService) CreateHyperflexClusterProfileExecute(r ApiCreateHy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterProfile @@ -1383,10 +1383,10 @@ func (a *HyperflexApiService) CreateHyperflexClusterReplicationNetworkPolicyExec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterReplicationNetworkPolicy @@ -1565,10 +1565,10 @@ func (a *HyperflexApiService) CreateHyperflexClusterReplicationNetworkPolicyDepl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterReplicationNetworkPolicyDeployment @@ -1747,10 +1747,10 @@ func (a *HyperflexApiService) CreateHyperflexClusterStoragePolicyExecute(r ApiCr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterStoragePolicy @@ -1929,10 +1929,10 @@ func (a *HyperflexApiService) CreateHyperflexExtFcStoragePolicyExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexExtFcStoragePolicy @@ -2111,10 +2111,10 @@ func (a *HyperflexApiService) CreateHyperflexExtIscsiStoragePolicyExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexExtIscsiStoragePolicy @@ -2293,10 +2293,10 @@ func (a *HyperflexApiService) CreateHyperflexFeatureLimitExternalExecute(r ApiCr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexFeatureLimitExternal @@ -2475,10 +2475,10 @@ func (a *HyperflexApiService) CreateHyperflexFeatureLimitInternalExecute(r ApiCr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexFeatureLimitInternal @@ -2657,10 +2657,10 @@ func (a *HyperflexApiService) CreateHyperflexHealthCheckDefinitionExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHealthCheckDefinition @@ -2839,10 +2839,10 @@ func (a *HyperflexApiService) CreateHyperflexHealthCheckPackageChecksumExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHealthCheckPackageChecksum @@ -3021,10 +3021,10 @@ func (a *HyperflexApiService) CreateHyperflexHxdpVersionExecute(r ApiCreateHyper localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHxdpVersion @@ -3203,10 +3203,10 @@ func (a *HyperflexApiService) CreateHyperflexKeyEncryptionKeyExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexKeyEncryptionKey @@ -3385,10 +3385,10 @@ func (a *HyperflexApiService) CreateHyperflexLocalCredentialPolicyExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexLocalCredentialPolicy @@ -3567,10 +3567,10 @@ func (a *HyperflexApiService) CreateHyperflexNodeConfigPolicyExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexNodeConfigPolicy @@ -3749,10 +3749,10 @@ func (a *HyperflexApiService) CreateHyperflexNodeProfileExecute(r ApiCreateHyper localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexNodeProfile @@ -3931,10 +3931,10 @@ func (a *HyperflexApiService) CreateHyperflexProxySettingPolicyExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexProxySettingPolicy @@ -4113,10 +4113,10 @@ func (a *HyperflexApiService) CreateHyperflexReduceReSyncExecute(r ApiCreateHype localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexReduceReSync @@ -4295,10 +4295,10 @@ func (a *HyperflexApiService) CreateHyperflexServerFirmwareVersionExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexServerFirmwareVersion @@ -4477,10 +4477,10 @@ func (a *HyperflexApiService) CreateHyperflexServerFirmwareVersionEntryExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexServerFirmwareVersionEntry @@ -4659,10 +4659,10 @@ func (a *HyperflexApiService) CreateHyperflexServerModelExecute(r ApiCreateHyper localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexServerModel @@ -4841,10 +4841,10 @@ func (a *HyperflexApiService) CreateHyperflexServiceAuthTokenExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexServiceAuthToken @@ -5023,10 +5023,10 @@ func (a *HyperflexApiService) CreateHyperflexSoftwareDistributionComponentExecut localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSoftwareDistributionComponent @@ -5205,10 +5205,10 @@ func (a *HyperflexApiService) CreateHyperflexSoftwareDistributionEntryExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSoftwareDistributionEntry @@ -5387,10 +5387,10 @@ func (a *HyperflexApiService) CreateHyperflexSoftwareDistributionVersionExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSoftwareDistributionVersion @@ -5569,10 +5569,10 @@ func (a *HyperflexApiService) CreateHyperflexSoftwareVersionPolicyExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSoftwareVersionPolicy @@ -5751,10 +5751,10 @@ func (a *HyperflexApiService) CreateHyperflexStartReduceReSyncExecute(r ApiCreat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexStartReduceReSync @@ -5933,10 +5933,10 @@ func (a *HyperflexApiService) CreateHyperflexSysConfigPolicyExecute(r ApiCreateH localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSysConfigPolicy @@ -6115,10 +6115,10 @@ func (a *HyperflexApiService) CreateHyperflexUcsmConfigPolicyExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexUcsmConfigPolicy @@ -6297,10 +6297,10 @@ func (a *HyperflexApiService) CreateHyperflexVcenterConfigPolicyExecute(r ApiCre localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexVcenterConfigPolicy @@ -6479,10 +6479,10 @@ func (a *HyperflexApiService) CreateHyperflexVmImportOperationExecute(r ApiCreat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexVmImportOperation @@ -6661,10 +6661,10 @@ func (a *HyperflexApiService) CreateHyperflexVmRestoreOperationExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.hyperflexVmRestoreOperation @@ -12713,52 +12713,52 @@ func (a *HyperflexApiService) GetHyperflexAlarmListExecute(r ApiGetHyperflexAlar localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13142,52 +13142,52 @@ func (a *HyperflexApiService) GetHyperflexAppCatalogListExecute(r ApiGetHyperfle localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13571,52 +13571,52 @@ func (a *HyperflexApiService) GetHyperflexAutoSupportPolicyListExecute(r ApiGetH localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14000,52 +14000,52 @@ func (a *HyperflexApiService) GetHyperflexBackupClusterListExecute(r ApiGetHyper localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14429,52 +14429,52 @@ func (a *HyperflexApiService) GetHyperflexCapabilityInfoListExecute(r ApiGetHype localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15012,52 +15012,52 @@ func (a *HyperflexApiService) GetHyperflexClusterBackupPolicyDeploymentListExecu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15441,52 +15441,52 @@ func (a *HyperflexApiService) GetHyperflexClusterBackupPolicyInventoryListExecut localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15716,52 +15716,52 @@ func (a *HyperflexApiService) GetHyperflexClusterBackupPolicyListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16299,52 +16299,52 @@ func (a *HyperflexApiService) GetHyperflexClusterHealthCheckExecutionSnapshotLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16574,52 +16574,52 @@ func (a *HyperflexApiService) GetHyperflexClusterListExecute(r ApiGetHyperflexCl localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17003,52 +17003,52 @@ func (a *HyperflexApiService) GetHyperflexClusterNetworkPolicyListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17432,52 +17432,52 @@ func (a *HyperflexApiService) GetHyperflexClusterProfileListExecute(r ApiGetHype localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18015,52 +18015,52 @@ func (a *HyperflexApiService) GetHyperflexClusterReplicationNetworkPolicyDeploym localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18290,52 +18290,52 @@ func (a *HyperflexApiService) GetHyperflexClusterReplicationNetworkPolicyListExe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18719,52 +18719,52 @@ func (a *HyperflexApiService) GetHyperflexClusterStoragePolicyListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19302,52 +19302,52 @@ func (a *HyperflexApiService) GetHyperflexConfigResultEntryListExecute(r ApiGetH localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19577,52 +19577,52 @@ func (a *HyperflexApiService) GetHyperflexConfigResultListExecute(r ApiGetHyperf localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20006,52 +20006,52 @@ func (a *HyperflexApiService) GetHyperflexDataProtectionPeerListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20435,52 +20435,52 @@ func (a *HyperflexApiService) GetHyperflexDatastoreStatisticListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20864,52 +20864,52 @@ func (a *HyperflexApiService) GetHyperflexDevicePackageDownloadStateListExecute( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21293,52 +21293,52 @@ func (a *HyperflexApiService) GetHyperflexDriveListExecute(r ApiGetHyperflexDriv localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21722,52 +21722,52 @@ func (a *HyperflexApiService) GetHyperflexEncryptionListExecute(r ApiGetHyperfle localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22151,52 +22151,52 @@ func (a *HyperflexApiService) GetHyperflexExtFcStoragePolicyListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22580,52 +22580,52 @@ func (a *HyperflexApiService) GetHyperflexExtIscsiStoragePolicyListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23009,52 +23009,52 @@ func (a *HyperflexApiService) GetHyperflexFeatureLimitExternalListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23438,52 +23438,52 @@ func (a *HyperflexApiService) GetHyperflexFeatureLimitInternalListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24021,52 +24021,52 @@ func (a *HyperflexApiService) GetHyperflexHealthCheckDefinitionListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24450,52 +24450,52 @@ func (a *HyperflexApiService) GetHyperflexHealthCheckExecutionListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24879,52 +24879,52 @@ func (a *HyperflexApiService) GetHyperflexHealthCheckExecutionSnapshotListExecut localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25308,52 +25308,52 @@ func (a *HyperflexApiService) GetHyperflexHealthCheckPackageChecksumListExecute( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25737,52 +25737,52 @@ func (a *HyperflexApiService) GetHyperflexHealthCheckSchedulePolicyListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26012,52 +26012,52 @@ func (a *HyperflexApiService) GetHyperflexHealthListExecute(r ApiGetHyperflexHea localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26441,52 +26441,52 @@ func (a *HyperflexApiService) GetHyperflexHwCatalogListExecute(r ApiGetHyperflex localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26870,52 +26870,52 @@ func (a *HyperflexApiService) GetHyperflexHxdpVersionListExecute(r ApiGetHyperfl localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27299,52 +27299,52 @@ func (a *HyperflexApiService) GetHyperflexHypervisorHostListExecute(r ApiGetHype localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27728,52 +27728,52 @@ func (a *HyperflexApiService) GetHyperflexHypervisorVirtualMachineListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28157,52 +28157,52 @@ func (a *HyperflexApiService) GetHyperflexInitiatorGroupListExecute(r ApiGetHype localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28586,52 +28586,52 @@ func (a *HyperflexApiService) GetHyperflexIscsiNetworkListExecute(r ApiGetHyperf localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29015,52 +29015,52 @@ func (a *HyperflexApiService) GetHyperflexKeyEncryptionKeyListExecute(r ApiGetHy localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29444,52 +29444,52 @@ func (a *HyperflexApiService) GetHyperflexLicenseListExecute(r ApiGetHyperflexLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29873,52 +29873,52 @@ func (a *HyperflexApiService) GetHyperflexLocalCredentialPolicyListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -30302,52 +30302,52 @@ func (a *HyperflexApiService) GetHyperflexLunListExecute(r ApiGetHyperflexLunLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -30885,52 +30885,52 @@ func (a *HyperflexApiService) GetHyperflexNodeConfigPolicyListExecute(r ApiGetHy localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -31160,52 +31160,52 @@ func (a *HyperflexApiService) GetHyperflexNodeListExecute(r ApiGetHyperflexNodeL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -31589,52 +31589,52 @@ func (a *HyperflexApiService) GetHyperflexNodeProfileListExecute(r ApiGetHyperfl localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -32018,52 +32018,52 @@ func (a *HyperflexApiService) GetHyperflexProtectedClusterListExecute(r ApiGetHy localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -32447,52 +32447,52 @@ func (a *HyperflexApiService) GetHyperflexProxySettingPolicyListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -32876,52 +32876,52 @@ func (a *HyperflexApiService) GetHyperflexReduceReSyncListExecute(r ApiGetHyperf localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -33459,52 +33459,52 @@ func (a *HyperflexApiService) GetHyperflexServerFirmwareVersionEntryListExecute( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -33734,52 +33734,52 @@ func (a *HyperflexApiService) GetHyperflexServerFirmwareVersionListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -34163,52 +34163,52 @@ func (a *HyperflexApiService) GetHyperflexServerModelListExecute(r ApiGetHyperfl localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -34592,52 +34592,52 @@ func (a *HyperflexApiService) GetHyperflexServiceAuthTokenListExecute(r ApiGetHy localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -35021,52 +35021,52 @@ func (a *HyperflexApiService) GetHyperflexSoftwareDistributionComponentListExecu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -35450,52 +35450,52 @@ func (a *HyperflexApiService) GetHyperflexSoftwareDistributionEntryListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -35879,52 +35879,52 @@ func (a *HyperflexApiService) GetHyperflexSoftwareDistributionVersionListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -36308,52 +36308,52 @@ func (a *HyperflexApiService) GetHyperflexSoftwareVersionPolicyListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -36737,52 +36737,52 @@ func (a *HyperflexApiService) GetHyperflexStartReduceReSyncListExecute(r ApiGetH localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -37166,52 +37166,52 @@ func (a *HyperflexApiService) GetHyperflexStorageContainerListExecute(r ApiGetHy localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -37595,52 +37595,52 @@ func (a *HyperflexApiService) GetHyperflexSysConfigPolicyListExecute(r ApiGetHyp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -38024,52 +38024,52 @@ func (a *HyperflexApiService) GetHyperflexTargetListExecute(r ApiGetHyperflexTar localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -38453,52 +38453,52 @@ func (a *HyperflexApiService) GetHyperflexUcsmConfigPolicyListExecute(r ApiGetHy localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -38882,52 +38882,52 @@ func (a *HyperflexApiService) GetHyperflexVcenterConfigPolicyListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -39311,52 +39311,52 @@ func (a *HyperflexApiService) GetHyperflexVmBackupInfoListExecute(r ApiGetHyperf localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -39740,52 +39740,52 @@ func (a *HyperflexApiService) GetHyperflexVmImportOperationListExecute(r ApiGetH localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -40169,52 +40169,52 @@ func (a *HyperflexApiService) GetHyperflexVmRestoreOperationListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -40598,52 +40598,52 @@ func (a *HyperflexApiService) GetHyperflexVmSnapshotInfoListExecute(r ApiGetHype localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -41027,52 +41027,52 @@ func (a *HyperflexApiService) GetHyperflexVolumeListExecute(r ApiGetHyperflexVol localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -41456,52 +41456,52 @@ func (a *HyperflexApiService) GetHyperflexWitnessConfigurationListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -41692,7 +41692,7 @@ func (a *HyperflexApiService) PatchHyperflexAppCatalogExecute(r ApiPatchHyperfle localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexAppCatalog @@ -41868,7 +41868,7 @@ func (a *HyperflexApiService) PatchHyperflexAutoSupportPolicyExecute(r ApiPatchH localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexAutoSupportPolicy @@ -42044,7 +42044,7 @@ func (a *HyperflexApiService) PatchHyperflexCapabilityInfoExecute(r ApiPatchHype localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexCapabilityInfo @@ -42220,7 +42220,7 @@ func (a *HyperflexApiService) PatchHyperflexClusterExecute(r ApiPatchHyperflexCl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexCluster @@ -42396,7 +42396,7 @@ func (a *HyperflexApiService) PatchHyperflexClusterBackupPolicyExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterBackupPolicy @@ -42572,7 +42572,7 @@ func (a *HyperflexApiService) PatchHyperflexClusterBackupPolicyDeploymentExecute localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterBackupPolicyDeployment @@ -42748,7 +42748,7 @@ func (a *HyperflexApiService) PatchHyperflexClusterNetworkPolicyExecute(r ApiPat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterNetworkPolicy @@ -42924,7 +42924,7 @@ func (a *HyperflexApiService) PatchHyperflexClusterProfileExecute(r ApiPatchHype localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterProfile @@ -43100,7 +43100,7 @@ func (a *HyperflexApiService) PatchHyperflexClusterReplicationNetworkPolicyExecu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterReplicationNetworkPolicy @@ -43276,7 +43276,7 @@ func (a *HyperflexApiService) PatchHyperflexClusterReplicationNetworkPolicyDeplo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterReplicationNetworkPolicyDeployment @@ -43452,7 +43452,7 @@ func (a *HyperflexApiService) PatchHyperflexClusterStoragePolicyExecute(r ApiPat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterStoragePolicy @@ -43628,7 +43628,7 @@ func (a *HyperflexApiService) PatchHyperflexDriveExecute(r ApiPatchHyperflexDriv localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexDrive @@ -43804,7 +43804,7 @@ func (a *HyperflexApiService) PatchHyperflexExtFcStoragePolicyExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexExtFcStoragePolicy @@ -43980,7 +43980,7 @@ func (a *HyperflexApiService) PatchHyperflexExtIscsiStoragePolicyExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexExtIscsiStoragePolicy @@ -44156,7 +44156,7 @@ func (a *HyperflexApiService) PatchHyperflexFeatureLimitExternalExecute(r ApiPat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexFeatureLimitExternal @@ -44332,7 +44332,7 @@ func (a *HyperflexApiService) PatchHyperflexFeatureLimitInternalExecute(r ApiPat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexFeatureLimitInternal @@ -44508,7 +44508,7 @@ func (a *HyperflexApiService) PatchHyperflexHealthCheckDefinitionExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHealthCheckDefinition @@ -44684,7 +44684,7 @@ func (a *HyperflexApiService) PatchHyperflexHealthCheckPackageChecksumExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHealthCheckPackageChecksum @@ -44860,7 +44860,7 @@ func (a *HyperflexApiService) PatchHyperflexHxdpVersionExecute(r ApiPatchHyperfl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHxdpVersion @@ -45036,7 +45036,7 @@ func (a *HyperflexApiService) PatchHyperflexHypervisorHostExecute(r ApiPatchHype localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHypervisorHost @@ -45212,7 +45212,7 @@ func (a *HyperflexApiService) PatchHyperflexHypervisorVirtualMachineExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHypervisorVirtualMachine @@ -45388,7 +45388,7 @@ func (a *HyperflexApiService) PatchHyperflexInitiatorGroupExecute(r ApiPatchHype localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexInitiatorGroup @@ -45564,7 +45564,7 @@ func (a *HyperflexApiService) PatchHyperflexIscsiNetworkExecute(r ApiPatchHyperf localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexIscsiNetwork @@ -45740,7 +45740,7 @@ func (a *HyperflexApiService) PatchHyperflexKeyEncryptionKeyExecute(r ApiPatchHy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexKeyEncryptionKey @@ -45916,7 +45916,7 @@ func (a *HyperflexApiService) PatchHyperflexLocalCredentialPolicyExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexLocalCredentialPolicy @@ -46092,7 +46092,7 @@ func (a *HyperflexApiService) PatchHyperflexLunExecute(r ApiPatchHyperflexLunReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexLun @@ -46268,7 +46268,7 @@ func (a *HyperflexApiService) PatchHyperflexNodeConfigPolicyExecute(r ApiPatchHy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexNodeConfigPolicy @@ -46444,7 +46444,7 @@ func (a *HyperflexApiService) PatchHyperflexNodeProfileExecute(r ApiPatchHyperfl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexNodeProfile @@ -46620,7 +46620,7 @@ func (a *HyperflexApiService) PatchHyperflexProxySettingPolicyExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexProxySettingPolicy @@ -46796,7 +46796,7 @@ func (a *HyperflexApiService) PatchHyperflexReduceReSyncExecute(r ApiPatchHyperf localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexReduceReSync @@ -46972,7 +46972,7 @@ func (a *HyperflexApiService) PatchHyperflexServerFirmwareVersionExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexServerFirmwareVersion @@ -47148,7 +47148,7 @@ func (a *HyperflexApiService) PatchHyperflexServerFirmwareVersionEntryExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexServerFirmwareVersionEntry @@ -47324,7 +47324,7 @@ func (a *HyperflexApiService) PatchHyperflexServerModelExecute(r ApiPatchHyperfl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexServerModel @@ -47500,7 +47500,7 @@ func (a *HyperflexApiService) PatchHyperflexServiceAuthTokenExecute(r ApiPatchHy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexServiceAuthToken @@ -47676,7 +47676,7 @@ func (a *HyperflexApiService) PatchHyperflexSoftwareDistributionComponentExecute localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSoftwareDistributionComponent @@ -47852,7 +47852,7 @@ func (a *HyperflexApiService) PatchHyperflexSoftwareDistributionEntryExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSoftwareDistributionEntry @@ -48028,7 +48028,7 @@ func (a *HyperflexApiService) PatchHyperflexSoftwareDistributionVersionExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSoftwareDistributionVersion @@ -48204,7 +48204,7 @@ func (a *HyperflexApiService) PatchHyperflexSoftwareVersionPolicyExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSoftwareVersionPolicy @@ -48380,7 +48380,7 @@ func (a *HyperflexApiService) PatchHyperflexStorageContainerExecute(r ApiPatchHy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexStorageContainer @@ -48556,7 +48556,7 @@ func (a *HyperflexApiService) PatchHyperflexSysConfigPolicyExecute(r ApiPatchHyp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSysConfigPolicy @@ -48732,7 +48732,7 @@ func (a *HyperflexApiService) PatchHyperflexTargetExecute(r ApiPatchHyperflexTar localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexTarget @@ -48908,7 +48908,7 @@ func (a *HyperflexApiService) PatchHyperflexUcsmConfigPolicyExecute(r ApiPatchHy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexUcsmConfigPolicy @@ -49084,7 +49084,7 @@ func (a *HyperflexApiService) PatchHyperflexVcenterConfigPolicyExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexVcenterConfigPolicy @@ -49260,7 +49260,7 @@ func (a *HyperflexApiService) PatchHyperflexVolumeExecute(r ApiPatchHyperflexVol localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexVolume @@ -49436,7 +49436,7 @@ func (a *HyperflexApiService) UpdateHyperflexAppCatalogExecute(r ApiUpdateHyperf localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexAppCatalog @@ -49612,7 +49612,7 @@ func (a *HyperflexApiService) UpdateHyperflexAutoSupportPolicyExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexAutoSupportPolicy @@ -49788,7 +49788,7 @@ func (a *HyperflexApiService) UpdateHyperflexCapabilityInfoExecute(r ApiUpdateHy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexCapabilityInfo @@ -49964,7 +49964,7 @@ func (a *HyperflexApiService) UpdateHyperflexClusterExecute(r ApiUpdateHyperflex localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexCluster @@ -50140,7 +50140,7 @@ func (a *HyperflexApiService) UpdateHyperflexClusterBackupPolicyExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterBackupPolicy @@ -50316,7 +50316,7 @@ func (a *HyperflexApiService) UpdateHyperflexClusterBackupPolicyDeploymentExecut localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterBackupPolicyDeployment @@ -50492,7 +50492,7 @@ func (a *HyperflexApiService) UpdateHyperflexClusterNetworkPolicyExecute(r ApiUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterNetworkPolicy @@ -50668,7 +50668,7 @@ func (a *HyperflexApiService) UpdateHyperflexClusterProfileExecute(r ApiUpdateHy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterProfile @@ -50844,7 +50844,7 @@ func (a *HyperflexApiService) UpdateHyperflexClusterReplicationNetworkPolicyExec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterReplicationNetworkPolicy @@ -51020,7 +51020,7 @@ func (a *HyperflexApiService) UpdateHyperflexClusterReplicationNetworkPolicyDepl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterReplicationNetworkPolicyDeployment @@ -51196,7 +51196,7 @@ func (a *HyperflexApiService) UpdateHyperflexClusterStoragePolicyExecute(r ApiUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexClusterStoragePolicy @@ -51372,7 +51372,7 @@ func (a *HyperflexApiService) UpdateHyperflexDriveExecute(r ApiUpdateHyperflexDr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexDrive @@ -51548,7 +51548,7 @@ func (a *HyperflexApiService) UpdateHyperflexExtFcStoragePolicyExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexExtFcStoragePolicy @@ -51724,7 +51724,7 @@ func (a *HyperflexApiService) UpdateHyperflexExtIscsiStoragePolicyExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexExtIscsiStoragePolicy @@ -51900,7 +51900,7 @@ func (a *HyperflexApiService) UpdateHyperflexFeatureLimitExternalExecute(r ApiUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexFeatureLimitExternal @@ -52076,7 +52076,7 @@ func (a *HyperflexApiService) UpdateHyperflexFeatureLimitInternalExecute(r ApiUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexFeatureLimitInternal @@ -52252,7 +52252,7 @@ func (a *HyperflexApiService) UpdateHyperflexHealthCheckDefinitionExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHealthCheckDefinition @@ -52428,7 +52428,7 @@ func (a *HyperflexApiService) UpdateHyperflexHealthCheckPackageChecksumExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHealthCheckPackageChecksum @@ -52604,7 +52604,7 @@ func (a *HyperflexApiService) UpdateHyperflexHxdpVersionExecute(r ApiUpdateHyper localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHxdpVersion @@ -52780,7 +52780,7 @@ func (a *HyperflexApiService) UpdateHyperflexHypervisorHostExecute(r ApiUpdateHy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHypervisorHost @@ -52956,7 +52956,7 @@ func (a *HyperflexApiService) UpdateHyperflexHypervisorVirtualMachineExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexHypervisorVirtualMachine @@ -53132,7 +53132,7 @@ func (a *HyperflexApiService) UpdateHyperflexInitiatorGroupExecute(r ApiUpdateHy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexInitiatorGroup @@ -53308,7 +53308,7 @@ func (a *HyperflexApiService) UpdateHyperflexIscsiNetworkExecute(r ApiUpdateHype localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexIscsiNetwork @@ -53484,7 +53484,7 @@ func (a *HyperflexApiService) UpdateHyperflexKeyEncryptionKeyExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexKeyEncryptionKey @@ -53660,7 +53660,7 @@ func (a *HyperflexApiService) UpdateHyperflexLocalCredentialPolicyExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexLocalCredentialPolicy @@ -53836,7 +53836,7 @@ func (a *HyperflexApiService) UpdateHyperflexLunExecute(r ApiUpdateHyperflexLunR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexLun @@ -54012,7 +54012,7 @@ func (a *HyperflexApiService) UpdateHyperflexNodeConfigPolicyExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexNodeConfigPolicy @@ -54188,7 +54188,7 @@ func (a *HyperflexApiService) UpdateHyperflexNodeProfileExecute(r ApiUpdateHyper localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexNodeProfile @@ -54364,7 +54364,7 @@ func (a *HyperflexApiService) UpdateHyperflexProxySettingPolicyExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexProxySettingPolicy @@ -54540,7 +54540,7 @@ func (a *HyperflexApiService) UpdateHyperflexReduceReSyncExecute(r ApiUpdateHype localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexReduceReSync @@ -54716,7 +54716,7 @@ func (a *HyperflexApiService) UpdateHyperflexServerFirmwareVersionExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexServerFirmwareVersion @@ -54892,7 +54892,7 @@ func (a *HyperflexApiService) UpdateHyperflexServerFirmwareVersionEntryExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexServerFirmwareVersionEntry @@ -55068,7 +55068,7 @@ func (a *HyperflexApiService) UpdateHyperflexServerModelExecute(r ApiUpdateHyper localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexServerModel @@ -55244,7 +55244,7 @@ func (a *HyperflexApiService) UpdateHyperflexServiceAuthTokenExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexServiceAuthToken @@ -55420,7 +55420,7 @@ func (a *HyperflexApiService) UpdateHyperflexSoftwareDistributionComponentExecut localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSoftwareDistributionComponent @@ -55596,7 +55596,7 @@ func (a *HyperflexApiService) UpdateHyperflexSoftwareDistributionEntryExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSoftwareDistributionEntry @@ -55772,7 +55772,7 @@ func (a *HyperflexApiService) UpdateHyperflexSoftwareDistributionVersionExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSoftwareDistributionVersion @@ -55948,7 +55948,7 @@ func (a *HyperflexApiService) UpdateHyperflexSoftwareVersionPolicyExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSoftwareVersionPolicy @@ -56124,7 +56124,7 @@ func (a *HyperflexApiService) UpdateHyperflexStorageContainerExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexStorageContainer @@ -56300,7 +56300,7 @@ func (a *HyperflexApiService) UpdateHyperflexSysConfigPolicyExecute(r ApiUpdateH localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexSysConfigPolicy @@ -56476,7 +56476,7 @@ func (a *HyperflexApiService) UpdateHyperflexTargetExecute(r ApiUpdateHyperflexT localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexTarget @@ -56652,7 +56652,7 @@ func (a *HyperflexApiService) UpdateHyperflexUcsmConfigPolicyExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexUcsmConfigPolicy @@ -56828,7 +56828,7 @@ func (a *HyperflexApiService) UpdateHyperflexVcenterConfigPolicyExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexVcenterConfigPolicy @@ -57004,7 +57004,7 @@ func (a *HyperflexApiService) UpdateHyperflexVolumeExecute(r ApiUpdateHyperflexV localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.hyperflexVolume diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_iaas.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_iaas.go index f269ff7249..37a9d066ea 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_iaas.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_iaas.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -441,52 +441,52 @@ func (a *IaasApiService) GetIaasConnectorPackListExecute(r ApiGetIaasConnectorPa localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -870,52 +870,52 @@ func (a *IaasApiService) GetIaasCustomTaskInfoListExecute(r ApiGetIaasCustomTask localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1299,52 +1299,52 @@ func (a *IaasApiService) GetIaasDeviceStatusListExecute(r ApiGetIaasDeviceStatus localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1728,52 +1728,52 @@ func (a *IaasApiService) GetIaasDiagnosticMessagesListExecute(r ApiGetIaasDiagno localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2157,52 +2157,52 @@ func (a *IaasApiService) GetIaasLicenseInfoListExecute(r ApiGetIaasLicenseInfoLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2586,52 +2586,52 @@ func (a *IaasApiService) GetIaasMostRunTasksListExecute(r ApiGetIaasMostRunTasks localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3015,52 +3015,52 @@ func (a *IaasApiService) GetIaasServiceRequestListExecute(r ApiGetIaasServiceReq localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3444,52 +3444,52 @@ func (a *IaasApiService) GetIaasSystemTaskInfoListExecute(r ApiGetIaasSystemTask localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3873,52 +3873,52 @@ func (a *IaasApiService) GetIaasUcsdInfoListExecute(r ApiGetIaasUcsdInfoListRequ localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4302,52 +4302,52 @@ func (a *IaasApiService) GetIaasUcsdManagedInfraListExecute(r ApiGetIaasUcsdMana localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4731,52 +4731,52 @@ func (a *IaasApiService) GetIaasUcsdMessagesListExecute(r ApiGetIaasUcsdMessages localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4967,7 +4967,7 @@ func (a *IaasApiService) PatchIaasUcsdInfoExecute(r ApiPatchIaasUcsdInfoRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iaasUcsdInfo @@ -5143,7 +5143,7 @@ func (a *IaasApiService) UpdateIaasUcsdInfoExecute(r ApiUpdateIaasUcsdInfoReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iaasUcsdInfo diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_iam.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_iam.go index 32b4964855..3882cc7174 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_iam.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_iam.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *IamApiService) CreateIamAccountExecute(r ApiCreateIamAccountRequest) (* localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamAccount @@ -291,10 +291,10 @@ func (a *IamApiService) CreateIamAccountExperienceExecute(r ApiCreateIamAccountE localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamAccountExperience @@ -473,10 +473,10 @@ func (a *IamApiService) CreateIamApiKeyExecute(r ApiCreateIamApiKeyRequest) (*Ia localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamApiKey @@ -655,10 +655,10 @@ func (a *IamApiService) CreateIamAppRegistrationExecute(r ApiCreateIamAppRegistr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamAppRegistration @@ -837,10 +837,10 @@ func (a *IamApiService) CreateIamCertificateExecute(r ApiCreateIamCertificateReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamCertificate @@ -1019,10 +1019,10 @@ func (a *IamApiService) CreateIamCertificateRequestExecute(r ApiCreateIamCertifi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamCertificateRequest @@ -1201,10 +1201,10 @@ func (a *IamApiService) CreateIamDomainNameInfoExecute(r ApiCreateIamDomainNameI localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamDomainNameInfo @@ -1383,10 +1383,10 @@ func (a *IamApiService) CreateIamEndPointUserExecute(r ApiCreateIamEndPointUserR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamEndPointUser @@ -1565,10 +1565,10 @@ func (a *IamApiService) CreateIamEndPointUserPolicyExecute(r ApiCreateIamEndPoin localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamEndPointUserPolicy @@ -1747,10 +1747,10 @@ func (a *IamApiService) CreateIamEndPointUserRoleExecute(r ApiCreateIamEndPointU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamEndPointUserRole @@ -1929,10 +1929,10 @@ func (a *IamApiService) CreateIamIdpExecute(r ApiCreateIamIdpRequest) (*IamIdp, localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamIdp @@ -2111,10 +2111,10 @@ func (a *IamApiService) CreateIamIpAccessManagementExecute(r ApiCreateIamIpAcces localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamIpAccessManagement @@ -2293,10 +2293,10 @@ func (a *IamApiService) CreateIamIpAddressExecute(r ApiCreateIamIpAddressRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamIpAddress @@ -2475,10 +2475,10 @@ func (a *IamApiService) CreateIamLdapGroupExecute(r ApiCreateIamLdapGroupRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamLdapGroup @@ -2657,10 +2657,10 @@ func (a *IamApiService) CreateIamLdapPolicyExecute(r ApiCreateIamLdapPolicyReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamLdapPolicy @@ -2839,10 +2839,10 @@ func (a *IamApiService) CreateIamLdapProviderExecute(r ApiCreateIamLdapProviderR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamLdapProvider @@ -3021,10 +3021,10 @@ func (a *IamApiService) CreateIamLocalUserPasswordExecute(r ApiCreateIamLocalUse localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamLocalUserPassword @@ -3203,10 +3203,10 @@ func (a *IamApiService) CreateIamPermissionExecute(r ApiCreateIamPermissionReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamPermission @@ -3385,10 +3385,10 @@ func (a *IamApiService) CreateIamPrivateKeySpecExecute(r ApiCreateIamPrivateKeyS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamPrivateKeySpec @@ -3567,10 +3567,10 @@ func (a *IamApiService) CreateIamQualifierExecute(r ApiCreateIamQualifierRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamQualifier @@ -3749,10 +3749,10 @@ func (a *IamApiService) CreateIamResourceRolesExecute(r ApiCreateIamResourceRole localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamResourceRoles @@ -3931,10 +3931,10 @@ func (a *IamApiService) CreateIamSessionLimitsExecute(r ApiCreateIamSessionLimit localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamSessionLimits @@ -4113,10 +4113,10 @@ func (a *IamApiService) CreateIamSharingRuleExecute(r ApiCreateIamSharingRuleReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamSharingRule @@ -4295,10 +4295,10 @@ func (a *IamApiService) CreateIamTrustPointExecute(r ApiCreateIamTrustPointReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamTrustPoint @@ -4477,10 +4477,10 @@ func (a *IamApiService) CreateIamUserExecute(r ApiCreateIamUserRequest) (*IamUse localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamUser @@ -4659,10 +4659,10 @@ func (a *IamApiService) CreateIamUserGroupExecute(r ApiCreateIamUserGroupRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamUserGroup @@ -4841,10 +4841,10 @@ func (a *IamApiService) CreateIamUserSettingExecute(r ApiCreateIamUserSettingReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iamUserSetting @@ -8917,52 +8917,52 @@ func (a *IamApiService) GetIamAccountExperienceListExecute(r ApiGetIamAccountExp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9192,52 +9192,52 @@ func (a *IamApiService) GetIamAccountListExecute(r ApiGetIamAccountListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9621,52 +9621,52 @@ func (a *IamApiService) GetIamApiKeyListExecute(r ApiGetIamApiKeyListRequest) (* localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10050,52 +10050,52 @@ func (a *IamApiService) GetIamAppRegistrationListExecute(r ApiGetIamAppRegistrat localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10479,52 +10479,52 @@ func (a *IamApiService) GetIamBannerMessageListExecute(r ApiGetIamBannerMessageL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10908,52 +10908,52 @@ func (a *IamApiService) GetIamCertificateListExecute(r ApiGetIamCertificateListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11337,52 +11337,52 @@ func (a *IamApiService) GetIamCertificateRequestListExecute(r ApiGetIamCertifica localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11766,52 +11766,52 @@ func (a *IamApiService) GetIamDomainGroupListExecute(r ApiGetIamDomainGroupListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12195,52 +12195,52 @@ func (a *IamApiService) GetIamDomainNameInfoListExecute(r ApiGetIamDomainNameInf localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12624,52 +12624,52 @@ func (a *IamApiService) GetIamEndPointPrivilegeListExecute(r ApiGetIamEndPointPr localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13053,52 +13053,52 @@ func (a *IamApiService) GetIamEndPointRoleListExecute(r ApiGetIamEndPointRoleLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13636,52 +13636,52 @@ func (a *IamApiService) GetIamEndPointUserInventoryListExecute(r ApiGetIamEndPoi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13911,52 +13911,52 @@ func (a *IamApiService) GetIamEndPointUserListExecute(r ApiGetIamEndPointUserLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14494,52 +14494,52 @@ func (a *IamApiService) GetIamEndPointUserPolicyInventoryListExecute(r ApiGetIam localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14769,52 +14769,52 @@ func (a *IamApiService) GetIamEndPointUserPolicyListExecute(r ApiGetIamEndPointU localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15352,52 +15352,52 @@ func (a *IamApiService) GetIamEndPointUserRoleInventoryListExecute(r ApiGetIamEn localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15627,52 +15627,52 @@ func (a *IamApiService) GetIamEndPointUserRoleListExecute(r ApiGetIamEndPointUse localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16056,52 +16056,52 @@ func (a *IamApiService) GetIamIdpListExecute(r ApiGetIamIdpListRequest) (*IamIdp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16485,52 +16485,52 @@ func (a *IamApiService) GetIamIdpReferenceListExecute(r ApiGetIamIdpReferenceLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16914,52 +16914,52 @@ func (a *IamApiService) GetIamIpAccessManagementListExecute(r ApiGetIamIpAccessM localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17343,52 +17343,52 @@ func (a *IamApiService) GetIamIpAddressListExecute(r ApiGetIamIpAddressListReque localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17772,52 +17772,52 @@ func (a *IamApiService) GetIamLdapConfigParamsListExecute(r ApiGetIamLdapConfigP localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18201,52 +18201,52 @@ func (a *IamApiService) GetIamLdapGroupListExecute(r ApiGetIamLdapGroupListReque localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18630,52 +18630,52 @@ func (a *IamApiService) GetIamLdapPolicyListExecute(r ApiGetIamLdapPolicyListReq localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19059,52 +19059,52 @@ func (a *IamApiService) GetIamLdapProviderListExecute(r ApiGetIamLdapProviderLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19488,52 +19488,52 @@ func (a *IamApiService) GetIamLocalUserPasswordListExecute(r ApiGetIamLocalUserP localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19917,52 +19917,52 @@ func (a *IamApiService) GetIamLocalUserPasswordPolicyListExecute(r ApiGetIamLoca localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20346,52 +20346,52 @@ func (a *IamApiService) GetIamOAuthTokenListExecute(r ApiGetIamOAuthTokenListReq localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20775,52 +20775,52 @@ func (a *IamApiService) GetIamPermissionListExecute(r ApiGetIamPermissionListReq localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21204,52 +21204,52 @@ func (a *IamApiService) GetIamPrivateKeySpecListExecute(r ApiGetIamPrivateKeySpe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21633,52 +21633,52 @@ func (a *IamApiService) GetIamPrivilegeListExecute(r ApiGetIamPrivilegeListReque localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22062,52 +22062,52 @@ func (a *IamApiService) GetIamPrivilegeSetListExecute(r ApiGetIamPrivilegeSetLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22491,52 +22491,52 @@ func (a *IamApiService) GetIamQualifierListExecute(r ApiGetIamQualifierListReque localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22920,52 +22920,52 @@ func (a *IamApiService) GetIamResourceLimitsListExecute(r ApiGetIamResourceLimit localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23349,52 +23349,52 @@ func (a *IamApiService) GetIamResourcePermissionListExecute(r ApiGetIamResourceP localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23778,52 +23778,52 @@ func (a *IamApiService) GetIamResourceRolesListExecute(r ApiGetIamResourceRolesL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24207,52 +24207,52 @@ func (a *IamApiService) GetIamRoleListExecute(r ApiGetIamRoleListRequest) (*IamR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24636,52 +24636,52 @@ func (a *IamApiService) GetIamSecurityHolderListExecute(r ApiGetIamSecurityHolde localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25065,52 +25065,52 @@ func (a *IamApiService) GetIamServiceProviderListExecute(r ApiGetIamServiceProvi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25648,52 +25648,52 @@ func (a *IamApiService) GetIamSessionLimitsListExecute(r ApiGetIamSessionLimitsL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25923,52 +25923,52 @@ func (a *IamApiService) GetIamSessionListExecute(r ApiGetIamSessionListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26352,52 +26352,52 @@ func (a *IamApiService) GetIamSharingRuleListExecute(r ApiGetIamSharingRuleListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26781,52 +26781,52 @@ func (a *IamApiService) GetIamSystemListExecute(r ApiGetIamSystemListRequest) (* localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27210,52 +27210,52 @@ func (a *IamApiService) GetIamTrustPointListExecute(r ApiGetIamTrustPointListReq localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27793,52 +27793,52 @@ func (a *IamApiService) GetIamUserGroupListExecute(r ApiGetIamUserGroupListReque localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28068,52 +28068,52 @@ func (a *IamApiService) GetIamUserListExecute(r ApiGetIamUserListRequest) (*IamU localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28497,52 +28497,52 @@ func (a *IamApiService) GetIamUserPreferenceListExecute(r ApiGetIamUserPreferenc localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28926,52 +28926,52 @@ func (a *IamApiService) GetIamUserSettingListExecute(r ApiGetIamUserSettingListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29162,7 +29162,7 @@ func (a *IamApiService) PatchIamAccountExecute(r ApiPatchIamAccountRequest) (*Ia localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamAccount @@ -29338,7 +29338,7 @@ func (a *IamApiService) PatchIamAccountExperienceExecute(r ApiPatchIamAccountExp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamAccountExperience @@ -29514,7 +29514,7 @@ func (a *IamApiService) PatchIamApiKeyExecute(r ApiPatchIamApiKeyRequest) (*IamA localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamApiKey @@ -29690,7 +29690,7 @@ func (a *IamApiService) PatchIamAppRegistrationExecute(r ApiPatchIamAppRegistrat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamAppRegistration @@ -29866,7 +29866,7 @@ func (a *IamApiService) PatchIamBannerMessageExecute(r ApiPatchIamBannerMessageR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamBannerMessage @@ -30042,7 +30042,7 @@ func (a *IamApiService) PatchIamCertificateExecute(r ApiPatchIamCertificateReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamCertificate @@ -30218,7 +30218,7 @@ func (a *IamApiService) PatchIamCertificateRequestExecute(r ApiPatchIamCertifica localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamCertificateRequest @@ -30394,7 +30394,7 @@ func (a *IamApiService) PatchIamDomainNameInfoExecute(r ApiPatchIamDomainNameInf localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamDomainNameInfo @@ -30570,7 +30570,7 @@ func (a *IamApiService) PatchIamEndPointUserExecute(r ApiPatchIamEndPointUserReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamEndPointUser @@ -30746,7 +30746,7 @@ func (a *IamApiService) PatchIamEndPointUserPolicyExecute(r ApiPatchIamEndPointU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamEndPointUserPolicy @@ -30922,7 +30922,7 @@ func (a *IamApiService) PatchIamEndPointUserRoleExecute(r ApiPatchIamEndPointUse localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamEndPointUserRole @@ -31098,7 +31098,7 @@ func (a *IamApiService) PatchIamIdpExecute(r ApiPatchIamIdpRequest) (*IamIdp, *h localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamIdp @@ -31274,7 +31274,7 @@ func (a *IamApiService) PatchIamIdpReferenceExecute(r ApiPatchIamIdpReferenceReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamIdpReference @@ -31450,7 +31450,7 @@ func (a *IamApiService) PatchIamIpAccessManagementExecute(r ApiPatchIamIpAccessM localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamIpAccessManagement @@ -31626,7 +31626,7 @@ func (a *IamApiService) PatchIamIpAddressExecute(r ApiPatchIamIpAddressRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamIpAddress @@ -31802,7 +31802,7 @@ func (a *IamApiService) PatchIamLdapGroupExecute(r ApiPatchIamLdapGroupRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamLdapGroup @@ -31978,7 +31978,7 @@ func (a *IamApiService) PatchIamLdapPolicyExecute(r ApiPatchIamLdapPolicyRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamLdapPolicy @@ -32154,7 +32154,7 @@ func (a *IamApiService) PatchIamLdapProviderExecute(r ApiPatchIamLdapProviderReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamLdapProvider @@ -32330,7 +32330,7 @@ func (a *IamApiService) PatchIamLocalUserPasswordExecute(r ApiPatchIamLocalUserP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamLocalUserPassword @@ -32506,7 +32506,7 @@ func (a *IamApiService) PatchIamLocalUserPasswordPolicyExecute(r ApiPatchIamLoca localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamLocalUserPasswordPolicy @@ -32682,7 +32682,7 @@ func (a *IamApiService) PatchIamPermissionExecute(r ApiPatchIamPermissionRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamPermission @@ -32858,7 +32858,7 @@ func (a *IamApiService) PatchIamPrivateKeySpecExecute(r ApiPatchIamPrivateKeySpe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamPrivateKeySpec @@ -33034,7 +33034,7 @@ func (a *IamApiService) PatchIamQualifierExecute(r ApiPatchIamQualifierRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamQualifier @@ -33210,7 +33210,7 @@ func (a *IamApiService) PatchIamResourceLimitsExecute(r ApiPatchIamResourceLimit localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamResourceLimits @@ -33386,7 +33386,7 @@ func (a *IamApiService) PatchIamResourceRolesExecute(r ApiPatchIamResourceRolesR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamResourceRoles @@ -33562,7 +33562,7 @@ func (a *IamApiService) PatchIamSessionLimitsExecute(r ApiPatchIamSessionLimitsR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamSessionLimits @@ -33738,7 +33738,7 @@ func (a *IamApiService) PatchIamUserExecute(r ApiPatchIamUserRequest) (*IamUser, localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamUser @@ -33914,7 +33914,7 @@ func (a *IamApiService) PatchIamUserGroupExecute(r ApiPatchIamUserGroupRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamUserGroup @@ -34090,7 +34090,7 @@ func (a *IamApiService) PatchIamUserPreferenceExecute(r ApiPatchIamUserPreferenc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamUserPreference @@ -34266,7 +34266,7 @@ func (a *IamApiService) PatchIamUserSettingExecute(r ApiPatchIamUserSettingReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamUserSetting @@ -34442,7 +34442,7 @@ func (a *IamApiService) UpdateIamAccountExecute(r ApiUpdateIamAccountRequest) (* localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamAccount @@ -34618,7 +34618,7 @@ func (a *IamApiService) UpdateIamAccountExperienceExecute(r ApiUpdateIamAccountE localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamAccountExperience @@ -34794,7 +34794,7 @@ func (a *IamApiService) UpdateIamApiKeyExecute(r ApiUpdateIamApiKeyRequest) (*Ia localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamApiKey @@ -34970,7 +34970,7 @@ func (a *IamApiService) UpdateIamAppRegistrationExecute(r ApiUpdateIamAppRegistr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamAppRegistration @@ -35146,7 +35146,7 @@ func (a *IamApiService) UpdateIamBannerMessageExecute(r ApiUpdateIamBannerMessag localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamBannerMessage @@ -35322,7 +35322,7 @@ func (a *IamApiService) UpdateIamCertificateExecute(r ApiUpdateIamCertificateReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamCertificate @@ -35498,7 +35498,7 @@ func (a *IamApiService) UpdateIamCertificateRequestExecute(r ApiUpdateIamCertifi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamCertificateRequest @@ -35674,7 +35674,7 @@ func (a *IamApiService) UpdateIamDomainNameInfoExecute(r ApiUpdateIamDomainNameI localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamDomainNameInfo @@ -35850,7 +35850,7 @@ func (a *IamApiService) UpdateIamEndPointUserExecute(r ApiUpdateIamEndPointUserR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamEndPointUser @@ -36026,7 +36026,7 @@ func (a *IamApiService) UpdateIamEndPointUserPolicyExecute(r ApiUpdateIamEndPoin localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamEndPointUserPolicy @@ -36202,7 +36202,7 @@ func (a *IamApiService) UpdateIamEndPointUserRoleExecute(r ApiUpdateIamEndPointU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamEndPointUserRole @@ -36378,7 +36378,7 @@ func (a *IamApiService) UpdateIamIdpExecute(r ApiUpdateIamIdpRequest) (*IamIdp, localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamIdp @@ -36554,7 +36554,7 @@ func (a *IamApiService) UpdateIamIdpReferenceExecute(r ApiUpdateIamIdpReferenceR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamIdpReference @@ -36730,7 +36730,7 @@ func (a *IamApiService) UpdateIamIpAccessManagementExecute(r ApiUpdateIamIpAcces localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamIpAccessManagement @@ -36906,7 +36906,7 @@ func (a *IamApiService) UpdateIamIpAddressExecute(r ApiUpdateIamIpAddressRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamIpAddress @@ -37082,7 +37082,7 @@ func (a *IamApiService) UpdateIamLdapGroupExecute(r ApiUpdateIamLdapGroupRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamLdapGroup @@ -37258,7 +37258,7 @@ func (a *IamApiService) UpdateIamLdapPolicyExecute(r ApiUpdateIamLdapPolicyReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamLdapPolicy @@ -37434,7 +37434,7 @@ func (a *IamApiService) UpdateIamLdapProviderExecute(r ApiUpdateIamLdapProviderR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamLdapProvider @@ -37610,7 +37610,7 @@ func (a *IamApiService) UpdateIamLocalUserPasswordExecute(r ApiUpdateIamLocalUse localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamLocalUserPassword @@ -37786,7 +37786,7 @@ func (a *IamApiService) UpdateIamLocalUserPasswordPolicyExecute(r ApiUpdateIamLo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamLocalUserPasswordPolicy @@ -37962,7 +37962,7 @@ func (a *IamApiService) UpdateIamPermissionExecute(r ApiUpdateIamPermissionReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamPermission @@ -38138,7 +38138,7 @@ func (a *IamApiService) UpdateIamPrivateKeySpecExecute(r ApiUpdateIamPrivateKeyS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamPrivateKeySpec @@ -38314,7 +38314,7 @@ func (a *IamApiService) UpdateIamQualifierExecute(r ApiUpdateIamQualifierRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamQualifier @@ -38490,7 +38490,7 @@ func (a *IamApiService) UpdateIamResourceLimitsExecute(r ApiUpdateIamResourceLim localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamResourceLimits @@ -38666,7 +38666,7 @@ func (a *IamApiService) UpdateIamResourceRolesExecute(r ApiUpdateIamResourceRole localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamResourceRoles @@ -38842,7 +38842,7 @@ func (a *IamApiService) UpdateIamSessionLimitsExecute(r ApiUpdateIamSessionLimit localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamSessionLimits @@ -39018,7 +39018,7 @@ func (a *IamApiService) UpdateIamUserExecute(r ApiUpdateIamUserRequest) (*IamUse localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamUser @@ -39194,7 +39194,7 @@ func (a *IamApiService) UpdateIamUserGroupExecute(r ApiUpdateIamUserGroupRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamUserGroup @@ -39370,7 +39370,7 @@ func (a *IamApiService) UpdateIamUserPreferenceExecute(r ApiUpdateIamUserPrefere localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamUserPreference @@ -39546,7 +39546,7 @@ func (a *IamApiService) UpdateIamUserSettingExecute(r ApiUpdateIamUserSettingReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iamUserSetting diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_inventory.go index be520ba7d6..7ee5ad0971 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *InventoryApiService) CreateInventoryRequestExecute(r ApiCreateInventory localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.inventoryRequest @@ -481,52 +481,52 @@ func (a *InventoryApiService) GetInventoryDeviceInfoListExecute(r ApiGetInventor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -910,52 +910,52 @@ func (a *InventoryApiService) GetInventoryDnMoBindingListExecute(r ApiGetInvento localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1493,52 +1493,52 @@ func (a *InventoryApiService) GetInventoryGenericInventoryHolderListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1768,52 +1768,52 @@ func (a *InventoryApiService) GetInventoryGenericInventoryListExecute(r ApiGetIn localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2004,7 +2004,7 @@ func (a *InventoryApiService) PatchInventoryGenericInventoryExecute(r ApiPatchIn localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.inventoryGenericInventory @@ -2180,7 +2180,7 @@ func (a *InventoryApiService) PatchInventoryGenericInventoryHolderExecute(r ApiP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.inventoryGenericInventoryHolder @@ -2356,7 +2356,7 @@ func (a *InventoryApiService) UpdateInventoryGenericInventoryExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.inventoryGenericInventory @@ -2532,7 +2532,7 @@ func (a *InventoryApiService) UpdateInventoryGenericInventoryHolderExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.inventoryGenericInventoryHolder diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ipmioverlan.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ipmioverlan.go index ed50ba7fb1..4fd0ce860e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ipmioverlan.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ipmioverlan.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *IpmioverlanApiService) CreateIpmioverlanPolicyExecute(r ApiCreateIpmiov localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.ipmioverlanPolicy @@ -777,52 +777,52 @@ func (a *IpmioverlanApiService) GetIpmioverlanPolicyInventoryListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *IpmioverlanApiService) GetIpmioverlanPolicyListExecute(r ApiGetIpmiover localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1288,7 +1288,7 @@ func (a *IpmioverlanApiService) PatchIpmioverlanPolicyExecute(r ApiPatchIpmiover localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.ipmioverlanPolicy @@ -1464,7 +1464,7 @@ func (a *IpmioverlanApiService) UpdateIpmioverlanPolicyExecute(r ApiUpdateIpmiov localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.ipmioverlanPolicy diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ippool.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ippool.go index 53365d011a..f9ff3c0843 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ippool.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ippool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *IppoolApiService) CreateIppoolPoolExecute(r ApiCreateIppoolPoolRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.ippoolPool @@ -291,10 +291,10 @@ func (a *IppoolApiService) CreateIppoolReservationExecute(r ApiCreateIppoolReser localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.ippoolReservation @@ -1089,52 +1089,52 @@ func (a *IppoolApiService) GetIppoolBlockLeaseListExecute(r ApiGetIppoolBlockLea localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1518,52 +1518,52 @@ func (a *IppoolApiService) GetIppoolIpLeaseListExecute(r ApiGetIppoolIpLeaseList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1947,52 +1947,52 @@ func (a *IppoolApiService) GetIppoolPoolListExecute(r ApiGetIppoolPoolListReques localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2376,52 +2376,52 @@ func (a *IppoolApiService) GetIppoolPoolMemberListExecute(r ApiGetIppoolPoolMemb localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2805,52 +2805,52 @@ func (a *IppoolApiService) GetIppoolReservationListExecute(r ApiGetIppoolReserva localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3234,52 +3234,52 @@ func (a *IppoolApiService) GetIppoolShadowBlockListExecute(r ApiGetIppoolShadowB localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3663,52 +3663,52 @@ func (a *IppoolApiService) GetIppoolShadowPoolListExecute(r ApiGetIppoolShadowPo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4092,52 +4092,52 @@ func (a *IppoolApiService) GetIppoolUniverseListExecute(r ApiGetIppoolUniverseLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4328,7 +4328,7 @@ func (a *IppoolApiService) PatchIppoolPoolExecute(r ApiPatchIppoolPoolRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.ippoolPool @@ -4504,7 +4504,7 @@ func (a *IppoolApiService) UpdateIppoolPoolExecute(r ApiUpdateIppoolPoolRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.ippoolPool diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_iqnpool.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_iqnpool.go index 3fb1d7f1fc..f8ca2dc0bc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_iqnpool.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_iqnpool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *IqnpoolApiService) CreateIqnpoolPoolExecute(r ApiCreateIqnpoolPoolReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iqnpoolPool @@ -291,10 +291,10 @@ func (a *IqnpoolApiService) CreateIqnpoolReservationExecute(r ApiCreateIqnpoolRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iqnpoolReservation @@ -1089,52 +1089,52 @@ func (a *IqnpoolApiService) GetIqnpoolBlockListExecute(r ApiGetIqnpoolBlockListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1518,52 +1518,52 @@ func (a *IqnpoolApiService) GetIqnpoolLeaseListExecute(r ApiGetIqnpoolLeaseListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1947,52 +1947,52 @@ func (a *IqnpoolApiService) GetIqnpoolPoolListExecute(r ApiGetIqnpoolPoolListReq localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2376,52 +2376,52 @@ func (a *IqnpoolApiService) GetIqnpoolPoolMemberListExecute(r ApiGetIqnpoolPoolM localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2805,52 +2805,52 @@ func (a *IqnpoolApiService) GetIqnpoolReservationListExecute(r ApiGetIqnpoolRese localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3234,52 +3234,52 @@ func (a *IqnpoolApiService) GetIqnpoolUniverseListExecute(r ApiGetIqnpoolUnivers localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3470,7 +3470,7 @@ func (a *IqnpoolApiService) PatchIqnpoolPoolExecute(r ApiPatchIqnpoolPoolRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iqnpoolPool @@ -3646,7 +3646,7 @@ func (a *IqnpoolApiService) UpdateIqnpoolPoolExecute(r ApiUpdateIqnpoolPoolReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iqnpoolPool diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_iwotenant.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_iwotenant.go index 986489b52c..98add5419b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_iwotenant.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_iwotenant.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *IwotenantApiService) CreateIwotenantMaintenanceNotificationExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iwotenantMaintenanceNotification @@ -291,10 +291,10 @@ func (a *IwotenantApiService) CreateIwotenantMigrateExecute(r ApiCreateIwotenant localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iwotenantMigrate @@ -473,10 +473,10 @@ func (a *IwotenantApiService) CreateIwotenantTenantCustomizationExecute(r ApiCre localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.iwotenantTenantCustomization @@ -1271,52 +1271,52 @@ func (a *IwotenantApiService) GetIwotenantMaintenanceNotificationListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1700,52 +1700,52 @@ func (a *IwotenantApiService) GetIwotenantMigrateListExecute(r ApiGetIwotenantMi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2129,52 +2129,52 @@ func (a *IwotenantApiService) GetIwotenantTenantCustomizationListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2558,52 +2558,52 @@ func (a *IwotenantApiService) GetIwotenantTenantStatusListExecute(r ApiGetIwoten localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2794,7 +2794,7 @@ func (a *IwotenantApiService) PatchIwotenantMigrateExecute(r ApiPatchIwotenantMi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iwotenantMigrate @@ -2970,7 +2970,7 @@ func (a *IwotenantApiService) PatchIwotenantTenantCustomizationExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iwotenantTenantCustomization @@ -3146,7 +3146,7 @@ func (a *IwotenantApiService) UpdateIwotenantMigrateExecute(r ApiUpdateIwotenant localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iwotenantMigrate @@ -3322,7 +3322,7 @@ func (a *IwotenantApiService) UpdateIwotenantTenantCustomizationExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.iwotenantTenantCustomization diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_kubernetes.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_kubernetes.go index 2b97d80e01..3bac17661f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_kubernetes.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_kubernetes.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -113,10 +113,10 @@ func (a *KubernetesApiService) CreateKubernetesAciCniApicExecute(r ApiCreateKube localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAciCniApic @@ -299,10 +299,10 @@ func (a *KubernetesApiService) CreateKubernetesAciCniProfileExecute(r ApiCreateK localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAciCniProfile @@ -485,10 +485,10 @@ func (a *KubernetesApiService) CreateKubernetesAciCniTenantClusterAllocationExec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAciCniTenantClusterAllocation @@ -667,10 +667,10 @@ func (a *KubernetesApiService) CreateKubernetesAddonDefinitionExecute(r ApiCreat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAddonDefinition @@ -849,10 +849,10 @@ func (a *KubernetesApiService) CreateKubernetesAddonPolicyExecute(r ApiCreateKub localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAddonPolicy @@ -1031,10 +1031,10 @@ func (a *KubernetesApiService) CreateKubernetesAddonRepositoryExecute(r ApiCreat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAddonRepository @@ -1217,10 +1217,10 @@ func (a *KubernetesApiService) CreateKubernetesBaremetalNodeProfileExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesBaremetalNodeProfile @@ -1399,10 +1399,10 @@ func (a *KubernetesApiService) CreateKubernetesClusterExecute(r ApiCreateKuberne localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesCluster @@ -1581,10 +1581,10 @@ func (a *KubernetesApiService) CreateKubernetesClusterAddonProfileExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesClusterAddonProfile @@ -1763,10 +1763,10 @@ func (a *KubernetesApiService) CreateKubernetesClusterProfileExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesClusterProfile @@ -1945,10 +1945,10 @@ func (a *KubernetesApiService) CreateKubernetesContainerRuntimePolicyExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesContainerRuntimePolicy @@ -2127,10 +2127,10 @@ func (a *KubernetesApiService) CreateKubernetesHttpProxyPolicyExecute(r ApiCreat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesHttpProxyPolicy @@ -2309,10 +2309,10 @@ func (a *KubernetesApiService) CreateKubernetesNetworkPolicyExecute(r ApiCreateK localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesNetworkPolicy @@ -2491,10 +2491,10 @@ func (a *KubernetesApiService) CreateKubernetesNodeGroupProfileExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesNodeGroupProfile @@ -2673,10 +2673,10 @@ func (a *KubernetesApiService) CreateKubernetesNvidiaGpuProductExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesNvidiaGpuProduct @@ -2855,10 +2855,10 @@ func (a *KubernetesApiService) CreateKubernetesSysConfigPolicyExecute(r ApiCreat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesSysConfigPolicy @@ -3037,10 +3037,10 @@ func (a *KubernetesApiService) CreateKubernetesTrustedRegistriesPolicyExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesTrustedRegistriesPolicy @@ -3219,10 +3219,10 @@ func (a *KubernetesApiService) CreateKubernetesVersionExecute(r ApiCreateKuberne localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVersion @@ -3401,10 +3401,10 @@ func (a *KubernetesApiService) CreateKubernetesVersionPolicyExecute(r ApiCreateK localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVersionPolicy @@ -3583,10 +3583,10 @@ func (a *KubernetesApiService) CreateKubernetesVirtualMachineInfraConfigPolicyEx localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVirtualMachineInfraConfigPolicy @@ -3765,10 +3765,10 @@ func (a *KubernetesApiService) CreateKubernetesVirtualMachineInfrastructureProvi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVirtualMachineInfrastructureProvider @@ -3947,10 +3947,10 @@ func (a *KubernetesApiService) CreateKubernetesVirtualMachineInstanceTypeExecute localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVirtualMachineInstanceType @@ -4129,10 +4129,10 @@ func (a *KubernetesApiService) CreateKubernetesVirtualMachineNodeProfileExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVirtualMachineNodeProfile @@ -8639,52 +8639,52 @@ func (a *KubernetesApiService) GetKubernetesAciCniApicListExecute(r ApiGetKubern localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9076,52 +9076,52 @@ func (a *KubernetesApiService) GetKubernetesAciCniProfileListExecute(r ApiGetKub localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9513,52 +9513,52 @@ func (a *KubernetesApiService) GetKubernetesAciCniTenantClusterAllocationListExe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9942,52 +9942,52 @@ func (a *KubernetesApiService) GetKubernetesAddonDefinitionListExecute(r ApiGetK localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10371,52 +10371,52 @@ func (a *KubernetesApiService) GetKubernetesAddonPolicyListExecute(r ApiGetKuber localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10800,52 +10800,52 @@ func (a *KubernetesApiService) GetKubernetesAddonRepositoryListExecute(r ApiGetK localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11237,52 +11237,52 @@ func (a *KubernetesApiService) GetKubernetesBaremetalNodeProfileListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11666,52 +11666,52 @@ func (a *KubernetesApiService) GetKubernetesCatalogListExecute(r ApiGetKubernete localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12095,52 +12095,52 @@ func (a *KubernetesApiService) GetKubernetesClusterAddonProfileListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12524,52 +12524,52 @@ func (a *KubernetesApiService) GetKubernetesClusterListExecute(r ApiGetKubernete localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12953,52 +12953,52 @@ func (a *KubernetesApiService) GetKubernetesClusterProfileListExecute(r ApiGetKu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13536,52 +13536,52 @@ func (a *KubernetesApiService) GetKubernetesConfigResultEntryListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13811,52 +13811,52 @@ func (a *KubernetesApiService) GetKubernetesConfigResultListExecute(r ApiGetKube localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14240,52 +14240,52 @@ func (a *KubernetesApiService) GetKubernetesContainerRuntimePolicyListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14669,52 +14669,52 @@ func (a *KubernetesApiService) GetKubernetesDaemonSetListExecute(r ApiGetKuberne localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15098,52 +15098,52 @@ func (a *KubernetesApiService) GetKubernetesDeploymentListExecute(r ApiGetKubern localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15527,52 +15527,52 @@ func (a *KubernetesApiService) GetKubernetesHttpProxyPolicyListExecute(r ApiGetK localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15956,52 +15956,52 @@ func (a *KubernetesApiService) GetKubernetesIngressListExecute(r ApiGetKubernete localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16385,52 +16385,52 @@ func (a *KubernetesApiService) GetKubernetesNetworkPolicyListExecute(r ApiGetKub localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16968,52 +16968,52 @@ func (a *KubernetesApiService) GetKubernetesNodeGroupProfileListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17243,52 +17243,52 @@ func (a *KubernetesApiService) GetKubernetesNodeListExecute(r ApiGetKubernetesNo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17672,52 +17672,52 @@ func (a *KubernetesApiService) GetKubernetesNvidiaGpuProductListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18101,52 +18101,52 @@ func (a *KubernetesApiService) GetKubernetesPodListExecute(r ApiGetKubernetesPod localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18530,52 +18530,52 @@ func (a *KubernetesApiService) GetKubernetesServiceListExecute(r ApiGetKubernete localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18959,52 +18959,52 @@ func (a *KubernetesApiService) GetKubernetesStatefulSetListExecute(r ApiGetKuber localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19388,52 +19388,52 @@ func (a *KubernetesApiService) GetKubernetesSysConfigPolicyListExecute(r ApiGetK localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19817,52 +19817,52 @@ func (a *KubernetesApiService) GetKubernetesTrustedRegistriesPolicyListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20246,52 +20246,52 @@ func (a *KubernetesApiService) GetKubernetesVersionListExecute(r ApiGetKubernete localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20675,52 +20675,52 @@ func (a *KubernetesApiService) GetKubernetesVersionPolicyListExecute(r ApiGetKub localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21104,52 +21104,52 @@ func (a *KubernetesApiService) GetKubernetesVirtualMachineInfraConfigPolicyListE localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21533,52 +21533,52 @@ func (a *KubernetesApiService) GetKubernetesVirtualMachineInfrastructureProvider localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21962,52 +21962,52 @@ func (a *KubernetesApiService) GetKubernetesVirtualMachineInstanceTypeListExecut localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22391,52 +22391,52 @@ func (a *KubernetesApiService) GetKubernetesVirtualMachineNodeProfileListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22631,7 +22631,7 @@ func (a *KubernetesApiService) PatchKubernetesAciCniApicExecute(r ApiPatchKubern localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAciCniApic @@ -22811,7 +22811,7 @@ func (a *KubernetesApiService) PatchKubernetesAciCniProfileExecute(r ApiPatchKub localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAciCniProfile @@ -22991,7 +22991,7 @@ func (a *KubernetesApiService) PatchKubernetesAciCniTenantClusterAllocationExecu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAciCniTenantClusterAllocation @@ -23167,7 +23167,7 @@ func (a *KubernetesApiService) PatchKubernetesAddonDefinitionExecute(r ApiPatchK localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAddonDefinition @@ -23343,7 +23343,7 @@ func (a *KubernetesApiService) PatchKubernetesAddonPolicyExecute(r ApiPatchKuber localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAddonPolicy @@ -23519,7 +23519,7 @@ func (a *KubernetesApiService) PatchKubernetesAddonRepositoryExecute(r ApiPatchK localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAddonRepository @@ -23699,7 +23699,7 @@ func (a *KubernetesApiService) PatchKubernetesBaremetalNodeProfileExecute(r ApiP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesBaremetalNodeProfile @@ -23875,7 +23875,7 @@ func (a *KubernetesApiService) PatchKubernetesClusterExecute(r ApiPatchKubernete localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesCluster @@ -24051,7 +24051,7 @@ func (a *KubernetesApiService) PatchKubernetesClusterAddonProfileExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesClusterAddonProfile @@ -24227,7 +24227,7 @@ func (a *KubernetesApiService) PatchKubernetesClusterProfileExecute(r ApiPatchKu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesClusterProfile @@ -24403,7 +24403,7 @@ func (a *KubernetesApiService) PatchKubernetesContainerRuntimePolicyExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesContainerRuntimePolicy @@ -24579,7 +24579,7 @@ func (a *KubernetesApiService) PatchKubernetesHttpProxyPolicyExecute(r ApiPatchK localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesHttpProxyPolicy @@ -24755,7 +24755,7 @@ func (a *KubernetesApiService) PatchKubernetesNetworkPolicyExecute(r ApiPatchKub localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesNetworkPolicy @@ -24931,7 +24931,7 @@ func (a *KubernetesApiService) PatchKubernetesNodeGroupProfileExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesNodeGroupProfile @@ -25107,7 +25107,7 @@ func (a *KubernetesApiService) PatchKubernetesNvidiaGpuProductExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesNvidiaGpuProduct @@ -25283,7 +25283,7 @@ func (a *KubernetesApiService) PatchKubernetesSysConfigPolicyExecute(r ApiPatchK localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesSysConfigPolicy @@ -25459,7 +25459,7 @@ func (a *KubernetesApiService) PatchKubernetesTrustedRegistriesPolicyExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesTrustedRegistriesPolicy @@ -25635,7 +25635,7 @@ func (a *KubernetesApiService) PatchKubernetesVersionExecute(r ApiPatchKubernete localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVersion @@ -25811,7 +25811,7 @@ func (a *KubernetesApiService) PatchKubernetesVersionPolicyExecute(r ApiPatchKub localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVersionPolicy @@ -25987,7 +25987,7 @@ func (a *KubernetesApiService) PatchKubernetesVirtualMachineInfraConfigPolicyExe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVirtualMachineInfraConfigPolicy @@ -26163,7 +26163,7 @@ func (a *KubernetesApiService) PatchKubernetesVirtualMachineInfrastructureProvid localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVirtualMachineInfrastructureProvider @@ -26339,7 +26339,7 @@ func (a *KubernetesApiService) PatchKubernetesVirtualMachineInstanceTypeExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVirtualMachineInstanceType @@ -26515,7 +26515,7 @@ func (a *KubernetesApiService) PatchKubernetesVirtualMachineNodeProfileExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVirtualMachineNodeProfile @@ -26695,7 +26695,7 @@ func (a *KubernetesApiService) UpdateKubernetesAciCniApicExecute(r ApiUpdateKube localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAciCniApic @@ -26875,7 +26875,7 @@ func (a *KubernetesApiService) UpdateKubernetesAciCniProfileExecute(r ApiUpdateK localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAciCniProfile @@ -27055,7 +27055,7 @@ func (a *KubernetesApiService) UpdateKubernetesAciCniTenantClusterAllocationExec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAciCniTenantClusterAllocation @@ -27231,7 +27231,7 @@ func (a *KubernetesApiService) UpdateKubernetesAddonDefinitionExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAddonDefinition @@ -27407,7 +27407,7 @@ func (a *KubernetesApiService) UpdateKubernetesAddonPolicyExecute(r ApiUpdateKub localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAddonPolicy @@ -27583,7 +27583,7 @@ func (a *KubernetesApiService) UpdateKubernetesAddonRepositoryExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesAddonRepository @@ -27763,7 +27763,7 @@ func (a *KubernetesApiService) UpdateKubernetesBaremetalNodeProfileExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesBaremetalNodeProfile @@ -27939,7 +27939,7 @@ func (a *KubernetesApiService) UpdateKubernetesClusterExecute(r ApiUpdateKuberne localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesCluster @@ -28115,7 +28115,7 @@ func (a *KubernetesApiService) UpdateKubernetesClusterAddonProfileExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesClusterAddonProfile @@ -28291,7 +28291,7 @@ func (a *KubernetesApiService) UpdateKubernetesClusterProfileExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesClusterProfile @@ -28467,7 +28467,7 @@ func (a *KubernetesApiService) UpdateKubernetesContainerRuntimePolicyExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesContainerRuntimePolicy @@ -28643,7 +28643,7 @@ func (a *KubernetesApiService) UpdateKubernetesHttpProxyPolicyExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesHttpProxyPolicy @@ -28819,7 +28819,7 @@ func (a *KubernetesApiService) UpdateKubernetesNetworkPolicyExecute(r ApiUpdateK localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesNetworkPolicy @@ -28995,7 +28995,7 @@ func (a *KubernetesApiService) UpdateKubernetesNodeGroupProfileExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesNodeGroupProfile @@ -29171,7 +29171,7 @@ func (a *KubernetesApiService) UpdateKubernetesNvidiaGpuProductExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesNvidiaGpuProduct @@ -29347,7 +29347,7 @@ func (a *KubernetesApiService) UpdateKubernetesSysConfigPolicyExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesSysConfigPolicy @@ -29523,7 +29523,7 @@ func (a *KubernetesApiService) UpdateKubernetesTrustedRegistriesPolicyExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesTrustedRegistriesPolicy @@ -29699,7 +29699,7 @@ func (a *KubernetesApiService) UpdateKubernetesVersionExecute(r ApiUpdateKuberne localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVersion @@ -29875,7 +29875,7 @@ func (a *KubernetesApiService) UpdateKubernetesVersionPolicyExecute(r ApiUpdateK localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVersionPolicy @@ -30051,7 +30051,7 @@ func (a *KubernetesApiService) UpdateKubernetesVirtualMachineInfraConfigPolicyEx localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVirtualMachineInfraConfigPolicy @@ -30227,7 +30227,7 @@ func (a *KubernetesApiService) UpdateKubernetesVirtualMachineInfrastructureProvi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVirtualMachineInfrastructureProvider @@ -30403,7 +30403,7 @@ func (a *KubernetesApiService) UpdateKubernetesVirtualMachineInstanceTypeExecute localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVirtualMachineInstanceType @@ -30579,7 +30579,7 @@ func (a *KubernetesApiService) UpdateKubernetesVirtualMachineNodeProfileExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kubernetesVirtualMachineNodeProfile diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_kvm.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_kvm.go index 24c70c3026..eb34f2c16e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_kvm.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_kvm.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *KvmApiService) CreateKvmPolicyExecute(r ApiCreateKvmPolicyRequest) (*Kv localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kvmPolicy @@ -291,10 +291,10 @@ func (a *KvmApiService) CreateKvmSessionExecute(r ApiCreateKvmSessionRequest) (* localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kvmSession @@ -473,10 +473,10 @@ func (a *KvmApiService) CreateKvmTunnelExecute(r ApiCreateKvmTunnelRequest) (*Kv localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kvmTunnel @@ -655,10 +655,10 @@ func (a *KvmApiService) CreateKvmTunneledKvmPolicyExecute(r ApiCreateKvmTunneled localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.kvmTunneledKvmPolicy @@ -1465,52 +1465,52 @@ func (a *KvmApiService) GetKvmPolicyInventoryListExecute(r ApiGetKvmPolicyInvent localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1740,52 +1740,52 @@ func (a *KvmApiService) GetKvmPolicyListExecute(r ApiGetKvmPolicyListRequest) (* localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2169,52 +2169,52 @@ func (a *KvmApiService) GetKvmSessionListExecute(r ApiGetKvmSessionListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2598,52 +2598,52 @@ func (a *KvmApiService) GetKvmTunnelListExecute(r ApiGetKvmTunnelListRequest) (* localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3027,52 +3027,52 @@ func (a *KvmApiService) GetKvmTunneledKvmPolicyListExecute(r ApiGetKvmTunneledKv localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3263,7 +3263,7 @@ func (a *KvmApiService) PatchKvmPolicyExecute(r ApiPatchKvmPolicyRequest) (*KvmP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kvmPolicy @@ -3439,7 +3439,7 @@ func (a *KvmApiService) PatchKvmSessionExecute(r ApiPatchKvmSessionRequest) (*Kv localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kvmSession @@ -3615,7 +3615,7 @@ func (a *KvmApiService) PatchKvmTunneledKvmPolicyExecute(r ApiPatchKvmTunneledKv localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kvmTunneledKvmPolicy @@ -3791,7 +3791,7 @@ func (a *KvmApiService) UpdateKvmPolicyExecute(r ApiUpdateKvmPolicyRequest) (*Kv localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kvmPolicy @@ -3967,7 +3967,7 @@ func (a *KvmApiService) UpdateKvmSessionExecute(r ApiUpdateKvmSessionRequest) (* localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kvmSession @@ -4143,7 +4143,7 @@ func (a *KvmApiService) UpdateKvmTunneledKvmPolicyExecute(r ApiUpdateKvmTunneled localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.kvmTunneledKvmPolicy diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_license.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_license.go index 703017fd6c..4aa461fb99 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_license.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_license.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *LicenseApiService) CreateLicenseIksLicenseCountExecute(r ApiCreateLicen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.licenseIksLicenseCount @@ -291,10 +291,10 @@ func (a *LicenseApiService) CreateLicenseIncLicenseCountExecute(r ApiCreateLicen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.licenseIncLicenseCount @@ -473,10 +473,10 @@ func (a *LicenseApiService) CreateLicenseIwoLicenseCountExecute(r ApiCreateLicen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.licenseIwoLicenseCount @@ -655,10 +655,10 @@ func (a *LicenseApiService) CreateLicenseLicenseInfoExecute(r ApiCreateLicenseLi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.licenseLicenseInfo @@ -837,10 +837,10 @@ func (a *LicenseApiService) CreateLicenseLicenseReservationOpExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.licenseLicenseReservationOp @@ -1209,52 +1209,52 @@ func (a *LicenseApiService) GetLicenseAccountLicenseDataListExecute(r ApiGetLice localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1638,52 +1638,52 @@ func (a *LicenseApiService) GetLicenseCustomerOpListExecute(r ApiGetLicenseCusto localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2067,52 +2067,52 @@ func (a *LicenseApiService) GetLicenseIksCustomerOpListExecute(r ApiGetLicenseIk localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2496,52 +2496,52 @@ func (a *LicenseApiService) GetLicenseIksLicenseCountListExecute(r ApiGetLicense localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2925,52 +2925,52 @@ func (a *LicenseApiService) GetLicenseIncCustomerOpListExecute(r ApiGetLicenseIn localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3354,52 +3354,52 @@ func (a *LicenseApiService) GetLicenseIncLicenseCountListExecute(r ApiGetLicense localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3783,52 +3783,52 @@ func (a *LicenseApiService) GetLicenseIwoCustomerOpListExecute(r ApiGetLicenseIw localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4212,52 +4212,52 @@ func (a *LicenseApiService) GetLicenseIwoLicenseCountListExecute(r ApiGetLicense localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4641,52 +4641,52 @@ func (a *LicenseApiService) GetLicenseLicenseInfoListExecute(r ApiGetLicenseLice localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5070,52 +5070,52 @@ func (a *LicenseApiService) GetLicenseLicenseInfoViewListExecute(r ApiGetLicense localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5499,52 +5499,52 @@ func (a *LicenseApiService) GetLicenseLicenseRegistrationStatusListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5928,52 +5928,52 @@ func (a *LicenseApiService) GetLicenseLicenseReservationOpListExecute(r ApiGetLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6357,52 +6357,52 @@ func (a *LicenseApiService) GetLicenseSmartlicenseTokenListExecute(r ApiGetLicen localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6593,7 +6593,7 @@ func (a *LicenseApiService) PatchLicenseAccountLicenseDataExecute(r ApiPatchLice localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseAccountLicenseData @@ -6769,7 +6769,7 @@ func (a *LicenseApiService) PatchLicenseCustomerOpExecute(r ApiPatchLicenseCusto localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseCustomerOp @@ -6945,7 +6945,7 @@ func (a *LicenseApiService) PatchLicenseIksCustomerOpExecute(r ApiPatchLicenseIk localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseIksCustomerOp @@ -7121,7 +7121,7 @@ func (a *LicenseApiService) PatchLicenseIksLicenseCountExecute(r ApiPatchLicense localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseIksLicenseCount @@ -7297,7 +7297,7 @@ func (a *LicenseApiService) PatchLicenseIncCustomerOpExecute(r ApiPatchLicenseIn localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseIncCustomerOp @@ -7473,7 +7473,7 @@ func (a *LicenseApiService) PatchLicenseIncLicenseCountExecute(r ApiPatchLicense localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseIncLicenseCount @@ -7649,7 +7649,7 @@ func (a *LicenseApiService) PatchLicenseIwoCustomerOpExecute(r ApiPatchLicenseIw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseIwoCustomerOp @@ -7825,7 +7825,7 @@ func (a *LicenseApiService) PatchLicenseIwoLicenseCountExecute(r ApiPatchLicense localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseIwoLicenseCount @@ -8001,7 +8001,7 @@ func (a *LicenseApiService) PatchLicenseLicenseInfoExecute(r ApiPatchLicenseLice localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseLicenseInfo @@ -8177,7 +8177,7 @@ func (a *LicenseApiService) PatchLicenseLicenseRegistrationStatusExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseLicenseRegistrationStatus @@ -8353,7 +8353,7 @@ func (a *LicenseApiService) PatchLicenseLicenseReservationOpExecute(r ApiPatchLi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseLicenseReservationOp @@ -8529,7 +8529,7 @@ func (a *LicenseApiService) PatchLicenseSmartlicenseTokenExecute(r ApiPatchLicen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseSmartlicenseToken @@ -8705,7 +8705,7 @@ func (a *LicenseApiService) UpdateLicenseAccountLicenseDataExecute(r ApiUpdateLi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseAccountLicenseData @@ -8881,7 +8881,7 @@ func (a *LicenseApiService) UpdateLicenseCustomerOpExecute(r ApiUpdateLicenseCus localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseCustomerOp @@ -9057,7 +9057,7 @@ func (a *LicenseApiService) UpdateLicenseIksCustomerOpExecute(r ApiUpdateLicense localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseIksCustomerOp @@ -9233,7 +9233,7 @@ func (a *LicenseApiService) UpdateLicenseIksLicenseCountExecute(r ApiUpdateLicen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseIksLicenseCount @@ -9409,7 +9409,7 @@ func (a *LicenseApiService) UpdateLicenseIncCustomerOpExecute(r ApiUpdateLicense localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseIncCustomerOp @@ -9585,7 +9585,7 @@ func (a *LicenseApiService) UpdateLicenseIncLicenseCountExecute(r ApiUpdateLicen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseIncLicenseCount @@ -9761,7 +9761,7 @@ func (a *LicenseApiService) UpdateLicenseIwoCustomerOpExecute(r ApiUpdateLicense localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseIwoCustomerOp @@ -9937,7 +9937,7 @@ func (a *LicenseApiService) UpdateLicenseIwoLicenseCountExecute(r ApiUpdateLicen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseIwoLicenseCount @@ -10113,7 +10113,7 @@ func (a *LicenseApiService) UpdateLicenseLicenseInfoExecute(r ApiUpdateLicenseLi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseLicenseInfo @@ -10289,7 +10289,7 @@ func (a *LicenseApiService) UpdateLicenseLicenseRegistrationStatusExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseLicenseRegistrationStatus @@ -10465,7 +10465,7 @@ func (a *LicenseApiService) UpdateLicenseLicenseReservationOpExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseLicenseReservationOp @@ -10641,7 +10641,7 @@ func (a *LicenseApiService) UpdateLicenseSmartlicenseTokenExecute(r ApiUpdateLic localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.licenseSmartlicenseToken diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ls.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ls.go index 40ffec596d..45dc7ce90b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ls.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ls.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *LsApiService) GetLsServiceProfileListExecute(r ApiGetLsServiceProfileLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -535,7 +535,7 @@ func (a *LsApiService) PatchLsServiceProfileExecute(r ApiPatchLsServiceProfileRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.lsServiceProfile @@ -711,7 +711,7 @@ func (a *LsApiService) UpdateLsServiceProfileExecute(r ApiUpdateLsServiceProfile localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.lsServiceProfile diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_macpool.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_macpool.go index 5a2b980fff..3c156d1ca3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_macpool.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_macpool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *MacpoolApiService) CreateMacpoolPoolExecute(r ApiCreateMacpoolPoolReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.macpoolPool @@ -291,10 +291,10 @@ func (a *MacpoolApiService) CreateMacpoolReservationExecute(r ApiCreateMacpoolRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.macpoolReservation @@ -1089,52 +1089,52 @@ func (a *MacpoolApiService) GetMacpoolIdBlockListExecute(r ApiGetMacpoolIdBlockL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1518,52 +1518,52 @@ func (a *MacpoolApiService) GetMacpoolLeaseListExecute(r ApiGetMacpoolLeaseListR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1947,52 +1947,52 @@ func (a *MacpoolApiService) GetMacpoolPoolListExecute(r ApiGetMacpoolPoolListReq localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2376,52 +2376,52 @@ func (a *MacpoolApiService) GetMacpoolPoolMemberListExecute(r ApiGetMacpoolPoolM localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2805,52 +2805,52 @@ func (a *MacpoolApiService) GetMacpoolReservationListExecute(r ApiGetMacpoolRese localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3234,52 +3234,52 @@ func (a *MacpoolApiService) GetMacpoolUniverseListExecute(r ApiGetMacpoolUnivers localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3470,7 +3470,7 @@ func (a *MacpoolApiService) PatchMacpoolPoolExecute(r ApiPatchMacpoolPoolRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.macpoolPool @@ -3646,7 +3646,7 @@ func (a *MacpoolApiService) UpdateMacpoolPoolExecute(r ApiUpdateMacpoolPoolReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.macpoolPool diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_management.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_management.go index 0d68518d92..1b6d14f7ca 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_management.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_management.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *ManagementApiService) GetManagementControllerListExecute(r ApiGetManage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *ManagementApiService) GetManagementEntityListExecute(r ApiGetManagement localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *ManagementApiService) GetManagementInterfaceListExecute(r ApiGetManagem localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1393,7 +1393,7 @@ func (a *ManagementApiService) PatchManagementControllerExecute(r ApiPatchManage localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.managementController @@ -1569,7 +1569,7 @@ func (a *ManagementApiService) PatchManagementEntityExecute(r ApiPatchManagement localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.managementEntity @@ -1745,7 +1745,7 @@ func (a *ManagementApiService) PatchManagementInterfaceExecute(r ApiPatchManagem localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.managementInterface @@ -1921,7 +1921,7 @@ func (a *ManagementApiService) UpdateManagementControllerExecute(r ApiUpdateMana localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.managementController @@ -2097,7 +2097,7 @@ func (a *ManagementApiService) UpdateManagementEntityExecute(r ApiUpdateManageme localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.managementEntity @@ -2273,7 +2273,7 @@ func (a *ManagementApiService) UpdateManagementInterfaceExecute(r ApiUpdateManag localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.managementInterface diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_marketplace.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_marketplace.go index 05dc38947d..25a30bc53e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_marketplace.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_marketplace.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *MarketplaceApiService) CreateMarketplaceUseCaseExecute(r ApiCreateMarke localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.marketplaceUseCase @@ -291,10 +291,10 @@ func (a *MarketplaceApiService) CreateMarketplaceUseCaseVersionExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.marketplaceUseCaseVersion @@ -947,52 +947,52 @@ func (a *MarketplaceApiService) GetMarketplaceUseCaseListExecute(r ApiGetMarketp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1376,52 +1376,52 @@ func (a *MarketplaceApiService) GetMarketplaceUseCaseVersionListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1612,7 +1612,7 @@ func (a *MarketplaceApiService) PatchMarketplaceUseCaseExecute(r ApiPatchMarketp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.marketplaceUseCase @@ -1788,7 +1788,7 @@ func (a *MarketplaceApiService) PatchMarketplaceUseCaseVersionExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.marketplaceUseCaseVersion @@ -1964,7 +1964,7 @@ func (a *MarketplaceApiService) UpdateMarketplaceUseCaseExecute(r ApiUpdateMarke localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.marketplaceUseCase @@ -2140,7 +2140,7 @@ func (a *MarketplaceApiService) UpdateMarketplaceUseCaseVersionExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.marketplaceUseCaseVersion diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_memory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_memory.go index 9b3a8b82eb..6e36fc4e1a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_memory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_memory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *MemoryApiService) CreateMemoryPersistentMemoryPolicyExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryPolicy @@ -623,52 +623,52 @@ func (a *MemoryApiService) GetMemoryArrayListExecute(r ApiGetMemoryArrayListRequ localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *MemoryApiService) GetMemoryPersistentMemoryConfigResultListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1481,52 +1481,52 @@ func (a *MemoryApiService) GetMemoryPersistentMemoryConfigurationListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2064,52 +2064,52 @@ func (a *MemoryApiService) GetMemoryPersistentMemoryNamespaceConfigResultListExe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2339,52 +2339,52 @@ func (a *MemoryApiService) GetMemoryPersistentMemoryNamespaceListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2768,52 +2768,52 @@ func (a *MemoryApiService) GetMemoryPersistentMemoryPolicyListExecute(r ApiGetMe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3197,52 +3197,52 @@ func (a *MemoryApiService) GetMemoryPersistentMemoryRegionListExecute(r ApiGetMe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3626,52 +3626,52 @@ func (a *MemoryApiService) GetMemoryPersistentMemoryUnitListExecute(r ApiGetMemo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4055,52 +4055,52 @@ func (a *MemoryApiService) GetMemoryUnitListExecute(r ApiGetMemoryUnitListReques localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4291,7 +4291,7 @@ func (a *MemoryApiService) PatchMemoryArrayExecute(r ApiPatchMemoryArrayRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryArray @@ -4467,7 +4467,7 @@ func (a *MemoryApiService) PatchMemoryPersistentMemoryConfigResultExecute(r ApiP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryConfigResult @@ -4643,7 +4643,7 @@ func (a *MemoryApiService) PatchMemoryPersistentMemoryConfigurationExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryConfiguration @@ -4819,7 +4819,7 @@ func (a *MemoryApiService) PatchMemoryPersistentMemoryNamespaceExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryNamespace @@ -4995,7 +4995,7 @@ func (a *MemoryApiService) PatchMemoryPersistentMemoryNamespaceConfigResultExecu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryNamespaceConfigResult @@ -5171,7 +5171,7 @@ func (a *MemoryApiService) PatchMemoryPersistentMemoryPolicyExecute(r ApiPatchMe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryPolicy @@ -5347,7 +5347,7 @@ func (a *MemoryApiService) PatchMemoryPersistentMemoryRegionExecute(r ApiPatchMe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryRegion @@ -5523,7 +5523,7 @@ func (a *MemoryApiService) PatchMemoryPersistentMemoryUnitExecute(r ApiPatchMemo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryUnit @@ -5699,7 +5699,7 @@ func (a *MemoryApiService) PatchMemoryUnitExecute(r ApiPatchMemoryUnitRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryUnit @@ -5875,7 +5875,7 @@ func (a *MemoryApiService) UpdateMemoryArrayExecute(r ApiUpdateMemoryArrayReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryArray @@ -6051,7 +6051,7 @@ func (a *MemoryApiService) UpdateMemoryPersistentMemoryConfigResultExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryConfigResult @@ -6227,7 +6227,7 @@ func (a *MemoryApiService) UpdateMemoryPersistentMemoryConfigurationExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryConfiguration @@ -6403,7 +6403,7 @@ func (a *MemoryApiService) UpdateMemoryPersistentMemoryNamespaceExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryNamespace @@ -6579,7 +6579,7 @@ func (a *MemoryApiService) UpdateMemoryPersistentMemoryNamespaceConfigResultExec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryNamespaceConfigResult @@ -6755,7 +6755,7 @@ func (a *MemoryApiService) UpdateMemoryPersistentMemoryPolicyExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryPolicy @@ -6931,7 +6931,7 @@ func (a *MemoryApiService) UpdateMemoryPersistentMemoryRegionExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryRegion @@ -7107,7 +7107,7 @@ func (a *MemoryApiService) UpdateMemoryPersistentMemoryUnitExecute(r ApiUpdateMe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryPersistentMemoryUnit @@ -7283,7 +7283,7 @@ func (a *MemoryApiService) UpdateMemoryUnitExecute(r ApiUpdateMemoryUnitRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.memoryUnit diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_meraki.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_meraki.go index 7682e6a067..e9e221faa1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_meraki.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_meraki.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *MerakiApiService) GetMerakiDeviceListExecute(r ApiGetMerakiDeviceListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *MerakiApiService) GetMerakiNetworkListExecute(r ApiGetMerakiNetworkList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *MerakiApiService) GetMerakiOrganizationListExecute(r ApiGetMerakiOrgani localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1586,52 +1586,52 @@ func (a *MerakiApiService) GetMerakiPortProfileListExecute(r ApiGetMerakiPortPro localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2015,52 +2015,52 @@ func (a *MerakiApiService) GetMerakiTagListExecute(r ApiGetMerakiTagListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_meta.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_meta.go index 05c8d72ee2..153ba9c15f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_meta.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -441,52 +441,52 @@ func (a *MetaApiService) GetMetaDefinitionListExecute(r ApiGetMetaDefinitionList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_metrics.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_metrics.go index 21377f38c2..e97e41ce0b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_metrics.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_metrics.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *MetricsApiService) CreateMetricsMetricsExplorationExecute(r ApiCreateMe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.metricsMetricsExploration @@ -623,52 +623,52 @@ func (a *MetricsApiService) GetMetricsMetricsExplorationListExecute(r ApiGetMetr localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -859,7 +859,7 @@ func (a *MetricsApiService) PatchMetricsMetricsExplorationExecute(r ApiPatchMetr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.metricsMetricsExploration @@ -1035,7 +1035,7 @@ func (a *MetricsApiService) UpdateMetricsMetricsExplorationExecute(r ApiUpdateMe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.metricsMetricsExploration diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_monitoring.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_monitoring.go index 978e1b4b5a..9676f768cc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_monitoring.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_monitoring.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *MonitoringApiService) GetMonitoringHealthStatusListExecute(r ApiGetMoni localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_network.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_network.go index d288ae4a40..60a634729f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_network.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_network.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *NetworkApiService) GetNetworkDiscoveredNeighborListExecute(r ApiGetNetw localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *NetworkApiService) GetNetworkDnsListExecute(r ApiGetNetworkDnsListReque localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *NetworkApiService) GetNetworkElementListExecute(r ApiGetNetworkElementL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1586,52 +1586,52 @@ func (a *NetworkApiService) GetNetworkElementSummaryListExecute(r ApiGetNetworkE localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2015,52 +2015,52 @@ func (a *NetworkApiService) GetNetworkFcZoneInfoListExecute(r ApiGetNetworkFcZon localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2444,52 +2444,52 @@ func (a *NetworkApiService) GetNetworkFeatureControlListExecute(r ApiGetNetworkF localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2873,52 +2873,52 @@ func (a *NetworkApiService) GetNetworkInterfaceListListExecute(r ApiGetNetworkIn localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3302,52 +3302,52 @@ func (a *NetworkApiService) GetNetworkLicenseFileListExecute(r ApiGetNetworkLice localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3731,52 +3731,52 @@ func (a *NetworkApiService) GetNetworkSupervisorCardListExecute(r ApiGetNetworkS localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4160,52 +4160,52 @@ func (a *NetworkApiService) GetNetworkTelemetryCheckListExecute(r ApiGetNetworkT localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4589,52 +4589,52 @@ func (a *NetworkApiService) GetNetworkVethernetListExecute(r ApiGetNetworkVether localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5018,52 +5018,52 @@ func (a *NetworkApiService) GetNetworkVfcListExecute(r ApiGetNetworkVfcListReque localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5447,52 +5447,52 @@ func (a *NetworkApiService) GetNetworkVlanPortInfoListExecute(r ApiGetNetworkVla localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5876,52 +5876,52 @@ func (a *NetworkApiService) GetNetworkVpcDomainListExecute(r ApiGetNetworkVpcDom localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6305,52 +6305,52 @@ func (a *NetworkApiService) GetNetworkVpcMemberListExecute(r ApiGetNetworkVpcMem localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6734,52 +6734,52 @@ func (a *NetworkApiService) GetNetworkVpcPeerListExecute(r ApiGetNetworkVpcPeerL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7163,52 +7163,52 @@ func (a *NetworkApiService) GetNetworkVrfListExecute(r ApiGetNetworkVrfListReque localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7399,7 +7399,7 @@ func (a *NetworkApiService) PatchNetworkElementExecute(r ApiPatchNetworkElementR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.networkElement @@ -7575,7 +7575,7 @@ func (a *NetworkApiService) PatchNetworkFcZoneInfoExecute(r ApiPatchNetworkFcZon localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.networkFcZoneInfo @@ -7751,7 +7751,7 @@ func (a *NetworkApiService) PatchNetworkVethernetExecute(r ApiPatchNetworkVether localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.networkVethernet @@ -7927,7 +7927,7 @@ func (a *NetworkApiService) PatchNetworkVfcExecute(r ApiPatchNetworkVfcRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.networkVfc @@ -8103,7 +8103,7 @@ func (a *NetworkApiService) PatchNetworkVlanPortInfoExecute(r ApiPatchNetworkVla localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.networkVlanPortInfo @@ -8279,7 +8279,7 @@ func (a *NetworkApiService) UpdateNetworkElementExecute(r ApiUpdateNetworkElemen localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.networkElement @@ -8455,7 +8455,7 @@ func (a *NetworkApiService) UpdateNetworkFcZoneInfoExecute(r ApiUpdateNetworkFcZ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.networkFcZoneInfo @@ -8631,7 +8631,7 @@ func (a *NetworkApiService) UpdateNetworkVethernetExecute(r ApiUpdateNetworkVeth localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.networkVethernet @@ -8807,7 +8807,7 @@ func (a *NetworkApiService) UpdateNetworkVfcExecute(r ApiUpdateNetworkVfcRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.networkVfc @@ -8983,7 +8983,7 @@ func (a *NetworkApiService) UpdateNetworkVlanPortInfoExecute(r ApiUpdateNetworkV localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.networkVlanPortInfo diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_networkconfig.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_networkconfig.go index 4770f7e418..b2e56fbc02 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_networkconfig.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_networkconfig.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *NetworkconfigApiService) CreateNetworkconfigPolicyExecute(r ApiCreateNe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.networkconfigPolicy @@ -777,52 +777,52 @@ func (a *NetworkconfigApiService) GetNetworkconfigPolicyInventoryListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *NetworkconfigApiService) GetNetworkconfigPolicyListExecute(r ApiGetNetw localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1288,7 +1288,7 @@ func (a *NetworkconfigApiService) PatchNetworkconfigPolicyExecute(r ApiPatchNetw localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.networkconfigPolicy @@ -1464,7 +1464,7 @@ func (a *NetworkconfigApiService) UpdateNetworkconfigPolicyExecute(r ApiUpdateNe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.networkconfigPolicy diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_niaapi.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_niaapi.go index bc328ac393..9ac708001c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_niaapi.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_niaapi.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *NiaapiApiService) GetNiaapiApicCcoPostListExecute(r ApiGetNiaapiApicCco localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *NiaapiApiService) GetNiaapiApicFieldNoticeListExecute(r ApiGetNiaapiApi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *NiaapiApiService) GetNiaapiApicHweolListExecute(r ApiGetNiaapiApicHweol localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1586,52 +1586,52 @@ func (a *NiaapiApiService) GetNiaapiApicLatestMaintainedReleaseListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2015,52 +2015,52 @@ func (a *NiaapiApiService) GetNiaapiApicReleaseRecommendListExecute(r ApiGetNiaa localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2444,52 +2444,52 @@ func (a *NiaapiApiService) GetNiaapiApicSweolListExecute(r ApiGetNiaapiApicSweol localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2873,52 +2873,52 @@ func (a *NiaapiApiService) GetNiaapiDcnmCcoPostListExecute(r ApiGetNiaapiDcnmCco localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3302,52 +3302,52 @@ func (a *NiaapiApiService) GetNiaapiDcnmFieldNoticeListExecute(r ApiGetNiaapiDcn localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3731,52 +3731,52 @@ func (a *NiaapiApiService) GetNiaapiDcnmHweolListExecute(r ApiGetNiaapiDcnmHweol localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4160,52 +4160,52 @@ func (a *NiaapiApiService) GetNiaapiDcnmLatestMaintainedReleaseListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4589,52 +4589,52 @@ func (a *NiaapiApiService) GetNiaapiDcnmReleaseRecommendListExecute(r ApiGetNiaa localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5018,52 +5018,52 @@ func (a *NiaapiApiService) GetNiaapiDcnmSweolListExecute(r ApiGetNiaapiDcnmSweol localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5447,52 +5447,52 @@ func (a *NiaapiApiService) GetNiaapiFileDownloaderListExecute(r ApiGetNiaapiFile localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5876,52 +5876,52 @@ func (a *NiaapiApiService) GetNiaapiNiaMetadataListExecute(r ApiGetNiaapiNiaMeta localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6305,52 +6305,52 @@ func (a *NiaapiApiService) GetNiaapiNibFileDownloaderListExecute(r ApiGetNiaapiN localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6734,52 +6734,52 @@ func (a *NiaapiApiService) GetNiaapiNibMetadataListExecute(r ApiGetNiaapiNibMeta localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7163,52 +7163,52 @@ func (a *NiaapiApiService) GetNiaapiPuvScriptDownloaderListExecute(r ApiGetNiaap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7592,52 +7592,52 @@ func (a *NiaapiApiService) GetNiaapiSnValidatorMetadataListExecute(r ApiGetNiaap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8021,52 +8021,52 @@ func (a *NiaapiApiService) GetNiaapiUpgradeAssistFileListExecute(r ApiGetNiaapiU localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8450,52 +8450,52 @@ func (a *NiaapiApiService) GetNiaapiVersionRegexListExecute(r ApiGetNiaapiVersio localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_niatelemetry.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_niatelemetry.go index c7dd89d5f5..d9588f2f12 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_niatelemetry.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_niatelemetry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *NiatelemetryApiService) CreateNiatelemetryNexusCloudAccountExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.niatelemetryNexusCloudAccount @@ -291,10 +291,10 @@ func (a *NiatelemetryApiService) CreateNiatelemetryNexusCloudSiteExecute(r ApiCr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.niatelemetryNexusCloudSite @@ -805,52 +805,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryAaaLdapProviderDetailsListExecut localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1234,52 +1234,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryAaaRadiusProviderDetailsListExec localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1663,52 +1663,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryAaaTacacsProviderDetailsListExec localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2092,52 +2092,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicAppPluginDetailsListExecute( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2521,52 +2521,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicCoreFileDetailsListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2950,52 +2950,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicDbgexpRsExportDestListExecut localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3379,52 +3379,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicDbgexpRsTsSchedulerListExecu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3808,52 +3808,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicFanDetailsListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4237,52 +4237,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicFexDetailsListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4666,52 +4666,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicFlashDetailsListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5095,52 +5095,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicNtpAuthListExecute(r ApiGetN localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5524,52 +5524,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicPerformanceDataListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5953,52 +5953,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicPodDataListExecute(r ApiGetN localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6382,52 +6382,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicPsuDetailsListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6811,52 +6811,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicRealmDetailsListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7240,52 +7240,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicSnmpClientGrpDetailsListExec localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7669,52 +7669,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicSnmpCommunityAccessDetailsLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8098,52 +8098,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicSnmpCommunityDetailsListExec localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8527,52 +8527,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicSnmpTrapDetailsListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8956,52 +8956,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicSnmpTrapFwdServerDetailsList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9385,52 +9385,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicSnmpVersionThreeDetailsListE localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9814,52 +9814,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicSysLogGrpListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10243,52 +10243,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicSysLogSrcListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10672,52 +10672,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicTransceiverDetailsListExecut localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11101,52 +11101,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicUiPageCountsListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11530,52 +11530,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryApicVisionListExecute(r ApiGetNi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11959,52 +11959,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryAppDetailsListExecute(r ApiGetNi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12388,52 +12388,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryCloudDetailsListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12817,52 +12817,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryCommonPoliciesListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13246,52 +13246,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryDcnmFanDetailsListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13675,52 +13675,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryDcnmFexDetailsListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14104,52 +14104,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryDcnmModuleDetailsListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14533,52 +14533,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryDcnmPsuDetailsListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14962,52 +14962,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryDcnmTransceiverDetailsListExecut localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15391,52 +15391,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryEpgListExecute(r ApiGetNiateleme localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15820,52 +15820,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryFabricModuleDetailsListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16249,52 +16249,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryFabricNodeControlDetailsListExec localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16678,52 +16678,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryFabricPodProfileListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17107,52 +17107,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryFabricPodSsListExecute(r ApiGetN localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17536,52 +17536,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryFaultListExecute(r ApiGetNiatele localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17965,52 +17965,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryHcloudDetailsListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18394,52 +18394,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryHealthInsightsDataListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18823,52 +18823,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryHttpsAclContractDetailsListExecu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19252,52 +19252,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryHttpsAclContractFilterMapListExe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19681,52 +19681,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryHttpsAclEpgContractMapListExecut localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20110,52 +20110,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryHttpsAclEpgDetailsListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20539,52 +20539,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryHttpsAclFilterDetailsListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20968,52 +20968,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryInsightGroupDetailsListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21397,52 +21397,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryLcListExecute(r ApiGetNiatelemet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21826,52 +21826,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryLeafPolGrpDetailsListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22255,52 +22255,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryMdsNeighborsListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22684,52 +22684,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryMsoContractDetailsListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23113,52 +23113,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryMsoEpgDetailsListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23542,52 +23542,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryMsoSchemaDetailsListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23971,52 +23971,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryMsoSiteDetailsListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24400,52 +24400,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryMsoTenantDetailsListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24829,52 +24829,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryNexusCloudAccountListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25258,52 +25258,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryNexusCloudSiteListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25687,52 +25687,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryNexusDashboardControllerDetailsL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26116,52 +26116,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryNexusDashboardDetailsListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26545,52 +26545,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryNexusDashboardMemoryDetailsListE localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26974,52 +26974,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryNexusDashboardsListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27403,52 +27403,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryNiaFeatureUsageListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27986,52 +27986,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryNiaInventoryDcnmListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28415,52 +28415,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryNiaInventoryFabricListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28690,52 +28690,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryNiaInventoryListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29119,52 +29119,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryNiaLicenseStateListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29548,52 +29548,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryNiccListExecute(r ApiGetNiatelem localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29977,52 +29977,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryPasswordStrengthCheckListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -30406,52 +30406,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryPodCommPoliciesListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -30835,52 +30835,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryPodSnmpPoliciesListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -31264,52 +31264,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryPodTimeServerPoliciesListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -31693,52 +31693,52 @@ func (a *NiatelemetryApiService) GetNiatelemetrySiteInventoryListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -32122,52 +32122,52 @@ func (a *NiatelemetryApiService) GetNiatelemetrySnmpSrcListExecute(r ApiGetNiate localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -32551,52 +32551,52 @@ func (a *NiatelemetryApiService) GetNiatelemetrySpinePolGrpDetailsListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -32980,52 +32980,52 @@ func (a *NiatelemetryApiService) GetNiatelemetrySshVersionTwoListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -33409,52 +33409,52 @@ func (a *NiatelemetryApiService) GetNiatelemetrySupervisorModuleDetailsListExecu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -33838,52 +33838,52 @@ func (a *NiatelemetryApiService) GetNiatelemetrySyslogRemoteDestListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -34421,52 +34421,52 @@ func (a *NiatelemetryApiService) GetNiatelemetrySyslogSysMsgFacFilterListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -34696,52 +34696,52 @@ func (a *NiatelemetryApiService) GetNiatelemetrySyslogSysMsgListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -35125,52 +35125,52 @@ func (a *NiatelemetryApiService) GetNiatelemetrySystemControllerDetailsListExecu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -35554,52 +35554,52 @@ func (a *NiatelemetryApiService) GetNiatelemetryTenantListExecute(r ApiGetNiatel localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -35790,7 +35790,7 @@ func (a *NiatelemetryApiService) PatchNiatelemetryNexusCloudAccountExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.niatelemetryNexusCloudAccount @@ -35966,7 +35966,7 @@ func (a *NiatelemetryApiService) PatchNiatelemetryNexusCloudSiteExecute(r ApiPat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.niatelemetryNexusCloudSite @@ -36142,7 +36142,7 @@ func (a *NiatelemetryApiService) PatchNiatelemetryNiaInventoryExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.niatelemetryNiaInventory @@ -36318,7 +36318,7 @@ func (a *NiatelemetryApiService) UpdateNiatelemetryNexusCloudAccountExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.niatelemetryNexusCloudAccount @@ -36494,7 +36494,7 @@ func (a *NiatelemetryApiService) UpdateNiatelemetryNexusCloudSiteExecute(r ApiUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.niatelemetryNexusCloudSite @@ -36670,7 +36670,7 @@ func (a *NiatelemetryApiService) UpdateNiatelemetryNiaInventoryExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.niatelemetryNiaInventory diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_notification.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_notification.go index e7a5e1b464..6d36e61061 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_notification.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_notification.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *NotificationApiService) CreateNotificationAccountSubscriptionExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.notificationAccountSubscription @@ -623,52 +623,52 @@ func (a *NotificationApiService) GetNotificationAccountSubscriptionListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -859,7 +859,7 @@ func (a *NotificationApiService) PatchNotificationAccountSubscriptionExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.notificationAccountSubscription @@ -1035,7 +1035,7 @@ func (a *NotificationApiService) UpdateNotificationAccountSubscriptionExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.notificationAccountSubscription diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ntp.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ntp.go index be9da09d07..9d8004568f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ntp.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ntp.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *NtpApiService) CreateNtpPolicyExecute(r ApiCreateNtpPolicyRequest) (*Nt localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.ntpPolicy @@ -623,52 +623,52 @@ func (a *NtpApiService) GetNtpNtpServerListExecute(r ApiGetNtpNtpServerListReque localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *NtpApiService) GetNtpPolicyListExecute(r ApiGetNtpPolicyListRequest) (* localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1288,7 +1288,7 @@ func (a *NtpApiService) PatchNtpPolicyExecute(r ApiPatchNtpPolicyRequest) (*NtpP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.ntpPolicy @@ -1464,7 +1464,7 @@ func (a *NtpApiService) UpdateNtpPolicyExecute(r ApiUpdateNtpPolicyRequest) (*Nt localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.ntpPolicy diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_oauth.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_oauth.go index 95b0c0b4fd..4ff626ffc8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_oauth.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_oauth.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *OauthApiService) CreateOauthAuthorizationExecute(r ApiCreateOauthAuthor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.oauthAuthorization @@ -623,52 +623,52 @@ func (a *OauthApiService) GetOauthAccessTokenListExecute(r ApiGetOauthAccessToke localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *OauthApiService) GetOauthAuthorizationListExecute(r ApiGetOauthAuthoriz localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1288,7 +1288,7 @@ func (a *OauthApiService) PatchOauthAuthorizationExecute(r ApiPatchOauthAuthoriz localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.oauthAuthorization @@ -1464,7 +1464,7 @@ func (a *OauthApiService) UpdateOauthAuthorizationExecute(r ApiUpdateOauthAuthor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.oauthAuthorization diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_openapi.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_openapi.go index b6cafe6ee6..811d8e8039 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_openapi.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_openapi.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *OpenapiApiService) CreateOpenapiOpenApiSpecificationExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.openapiOpenApiSpecification @@ -291,10 +291,10 @@ func (a *OpenapiApiService) CreateOpenapiProcessFileExecute(r ApiCreateOpenapiPr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.openapiProcessFile @@ -473,10 +473,10 @@ func (a *OpenapiApiService) CreateOpenapiTaskGenerationRequestExecute(r ApiCreat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.openapiTaskGenerationRequest @@ -1555,52 +1555,52 @@ func (a *OpenapiApiService) GetOpenapiApiMethodMetaListExecute(r ApiGetOpenapiAp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1984,52 +1984,52 @@ func (a *OpenapiApiService) GetOpenapiOpenApiSpecificationListExecute(r ApiGetOp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2413,52 +2413,52 @@ func (a *OpenapiApiService) GetOpenapiProcessFileListExecute(r ApiGetOpenapiProc localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2842,52 +2842,52 @@ func (a *OpenapiApiService) GetOpenapiTaskGenerationRequestListExecute(r ApiGetO localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3271,52 +3271,52 @@ func (a *OpenapiApiService) GetOpenapiTaskGenerationResultListExecute(r ApiGetOp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3507,7 +3507,7 @@ func (a *OpenapiApiService) PatchOpenapiOpenApiSpecificationExecute(r ApiPatchOp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.openapiOpenApiSpecification @@ -3683,7 +3683,7 @@ func (a *OpenapiApiService) PatchOpenapiTaskGenerationRequestExecute(r ApiPatchO localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.openapiTaskGenerationRequest @@ -3859,7 +3859,7 @@ func (a *OpenapiApiService) UpdateOpenapiOpenApiSpecificationExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.openapiOpenApiSpecification @@ -4035,7 +4035,7 @@ func (a *OpenapiApiService) UpdateOpenapiTaskGenerationRequestExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.openapiTaskGenerationRequest diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_oprs.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_oprs.go index 0e3ac6cf11..77fba42bed 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_oprs.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_oprs.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *OprsApiService) CreateOprsDeploymentExecute(r ApiCreateOprsDeploymentRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.oprsDeployment @@ -291,10 +291,10 @@ func (a *OprsApiService) CreateOprsSyncTargetListMessageExecute(r ApiCreateOprsS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.oprsSyncTargetListMessage @@ -947,52 +947,52 @@ func (a *OprsApiService) GetOprsDeploymentListExecute(r ApiGetOprsDeploymentList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1376,52 +1376,52 @@ func (a *OprsApiService) GetOprsSyncTargetListMessageListExecute(r ApiGetOprsSyn localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1612,7 +1612,7 @@ func (a *OprsApiService) PatchOprsDeploymentExecute(r ApiPatchOprsDeploymentRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.oprsDeployment @@ -1788,7 +1788,7 @@ func (a *OprsApiService) PatchOprsSyncTargetListMessageExecute(r ApiPatchOprsSyn localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.oprsSyncTargetListMessage @@ -1964,7 +1964,7 @@ func (a *OprsApiService) UpdateOprsDeploymentExecute(r ApiUpdateOprsDeploymentRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.oprsDeployment @@ -2140,7 +2140,7 @@ func (a *OprsApiService) UpdateOprsSyncTargetListMessageExecute(r ApiUpdateOprsS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.oprsSyncTargetListMessage diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_organization.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_organization.go index 753a11eac8..cd87010782 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_organization.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_organization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *OrganizationApiService) CreateOrganizationOrganizationExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.organizationOrganization @@ -623,52 +623,52 @@ func (a *OrganizationApiService) GetOrganizationOrganizationListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -859,7 +859,7 @@ func (a *OrganizationApiService) PatchOrganizationOrganizationExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.organizationOrganization @@ -1035,7 +1035,7 @@ func (a *OrganizationApiService) UpdateOrganizationOrganizationExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.organizationOrganization diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_os.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_os.go index 4ccdbb19fa..4508a88022 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_os.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_os.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *OsApiService) CreateOsBulkInstallInfoExecute(r ApiCreateOsBulkInstallIn localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.osBulkInstallInfo @@ -291,10 +291,10 @@ func (a *OsApiService) CreateOsConfigurationFileExecute(r ApiCreateOsConfigurati localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.osConfigurationFile @@ -473,10 +473,10 @@ func (a *OsApiService) CreateOsInstallExecute(r ApiCreateOsInstallRequest) (*OsI localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.osInstall @@ -655,10 +655,10 @@ func (a *OsApiService) CreateOsOsSupportExecute(r ApiCreateOsOsSupportRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.osOsSupport @@ -837,10 +837,10 @@ func (a *OsApiService) CreateOsTemplateFileExecute(r ApiCreateOsTemplateFileRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.osTemplateFile @@ -1019,10 +1019,10 @@ func (a *OsApiService) CreateOsValidInstallTargetExecute(r ApiCreateOsValidInsta localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.osValidInstallTarget @@ -1533,52 +1533,52 @@ func (a *OsApiService) GetOsBulkInstallInfoListExecute(r ApiGetOsBulkInstallInfo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1962,52 +1962,52 @@ func (a *OsApiService) GetOsCatalogListExecute(r ApiGetOsCatalogListRequest) (*O localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2391,52 +2391,52 @@ func (a *OsApiService) GetOsConfigurationFileListExecute(r ApiGetOsConfiguration localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2820,52 +2820,52 @@ func (a *OsApiService) GetOsDistributionListExecute(r ApiGetOsDistributionListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3249,52 +3249,52 @@ func (a *OsApiService) GetOsInstallListExecute(r ApiGetOsInstallListRequest) (*O localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3678,52 +3678,52 @@ func (a *OsApiService) GetOsSupportedVersionListExecute(r ApiGetOsSupportedVersi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3914,7 +3914,7 @@ func (a *OsApiService) PatchOsConfigurationFileExecute(r ApiPatchOsConfiguration localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.osConfigurationFile @@ -4090,7 +4090,7 @@ func (a *OsApiService) UpdateOsConfigurationFileExecute(r ApiUpdateOsConfigurati localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.osConfigurationFile diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_partnerintegration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_partnerintegration.go index aaeba88b4c..39d2b057c3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_partnerintegration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_partnerintegration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *PartnerintegrationApiService) CreatePartnerintegrationDeviceConnectorEx localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationDeviceConnector @@ -291,10 +291,10 @@ func (a *PartnerintegrationApiService) CreatePartnerintegrationEtlExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationEtl @@ -473,10 +473,10 @@ func (a *PartnerintegrationApiService) CreatePartnerintegrationFileExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationFile @@ -655,10 +655,10 @@ func (a *PartnerintegrationApiService) CreatePartnerintegrationInventoryExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationInventory @@ -837,10 +837,10 @@ func (a *PartnerintegrationApiService) CreatePartnerintegrationMetricsExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationMetrics @@ -1019,10 +1019,10 @@ func (a *PartnerintegrationApiService) CreatePartnerintegrationModelExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationModel @@ -2243,52 +2243,52 @@ func (a *PartnerintegrationApiService) GetPartnerintegrationDcLogsListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2672,52 +2672,52 @@ func (a *PartnerintegrationApiService) GetPartnerintegrationDeviceConnectorListE localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3101,52 +3101,52 @@ func (a *PartnerintegrationApiService) GetPartnerintegrationDocIssuesListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3530,52 +3530,52 @@ func (a *PartnerintegrationApiService) GetPartnerintegrationEtlListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3959,52 +3959,52 @@ func (a *PartnerintegrationApiService) GetPartnerintegrationFileListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4388,52 +4388,52 @@ func (a *PartnerintegrationApiService) GetPartnerintegrationInventoryListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4817,52 +4817,52 @@ func (a *PartnerintegrationApiService) GetPartnerintegrationLogsListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5246,52 +5246,52 @@ func (a *PartnerintegrationApiService) GetPartnerintegrationMetricsListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5675,52 +5675,52 @@ func (a *PartnerintegrationApiService) GetPartnerintegrationModelListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5911,7 +5911,7 @@ func (a *PartnerintegrationApiService) PatchPartnerintegrationDeviceConnectorExe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationDeviceConnector @@ -6087,7 +6087,7 @@ func (a *PartnerintegrationApiService) PatchPartnerintegrationEtlExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationEtl @@ -6263,7 +6263,7 @@ func (a *PartnerintegrationApiService) PatchPartnerintegrationFileExecute(r ApiP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationFile @@ -6439,7 +6439,7 @@ func (a *PartnerintegrationApiService) PatchPartnerintegrationInventoryExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationInventory @@ -6615,7 +6615,7 @@ func (a *PartnerintegrationApiService) PatchPartnerintegrationMetricsExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationMetrics @@ -6791,7 +6791,7 @@ func (a *PartnerintegrationApiService) PatchPartnerintegrationModelExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationModel @@ -6967,7 +6967,7 @@ func (a *PartnerintegrationApiService) UpdatePartnerintegrationDeviceConnectorEx localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationDeviceConnector @@ -7143,7 +7143,7 @@ func (a *PartnerintegrationApiService) UpdatePartnerintegrationEtlExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationEtl @@ -7319,7 +7319,7 @@ func (a *PartnerintegrationApiService) UpdatePartnerintegrationFileExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationFile @@ -7495,7 +7495,7 @@ func (a *PartnerintegrationApiService) UpdatePartnerintegrationInventoryExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationInventory @@ -7671,7 +7671,7 @@ func (a *PartnerintegrationApiService) UpdatePartnerintegrationMetricsExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationMetrics @@ -7847,7 +7847,7 @@ func (a *PartnerintegrationApiService) UpdatePartnerintegrationModelExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.partnerintegrationModel diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_pci.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_pci.go index 60791602e9..628a9b5eb7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_pci.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_pci.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *PciApiService) GetPciCoprocessorCardListExecute(r ApiGetPciCoprocessorC localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *PciApiService) GetPciDeviceListExecute(r ApiGetPciDeviceListRequest) (* localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *PciApiService) GetPciLinkListExecute(r ApiGetPciLinkListRequest) (*PciL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1586,52 +1586,52 @@ func (a *PciApiService) GetPciNodeListExecute(r ApiGetPciNodeListRequest) (*PciN localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2015,52 +2015,52 @@ func (a *PciApiService) GetPciSwitchListExecute(r ApiGetPciSwitchListRequest) (* localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2251,7 +2251,7 @@ func (a *PciApiService) PatchPciDeviceExecute(r ApiPatchPciDeviceRequest) (*PciD localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.pciDevice @@ -2427,7 +2427,7 @@ func (a *PciApiService) PatchPciLinkExecute(r ApiPatchPciLinkRequest) (*PciLink, localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.pciLink @@ -2603,7 +2603,7 @@ func (a *PciApiService) PatchPciNodeExecute(r ApiPatchPciNodeRequest) (*PciNode, localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.pciNode @@ -2779,7 +2779,7 @@ func (a *PciApiService) PatchPciSwitchExecute(r ApiPatchPciSwitchRequest) (*PciS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.pciSwitch @@ -2955,7 +2955,7 @@ func (a *PciApiService) UpdatePciDeviceExecute(r ApiUpdatePciDeviceRequest) (*Pc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.pciDevice @@ -3131,7 +3131,7 @@ func (a *PciApiService) UpdatePciLinkExecute(r ApiUpdatePciLinkRequest) (*PciLin localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.pciLink @@ -3307,7 +3307,7 @@ func (a *PciApiService) UpdatePciNodeExecute(r ApiUpdatePciNodeRequest) (*PciNod localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.pciNode @@ -3483,7 +3483,7 @@ func (a *PciApiService) UpdatePciSwitchExecute(r ApiUpdatePciSwitchRequest) (*Pc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.pciSwitch diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_port.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_port.go index 73eabf82ee..660730304a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_port.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *PortApiService) GetPortGroupListExecute(r ApiGetPortGroupListRequest) ( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *PortApiService) GetPortMacBindingListExecute(r ApiGetPortMacBindingList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1157,52 +1157,52 @@ func (a *PortApiService) GetPortSubGroupListExecute(r ApiGetPortSubGroupListRequ localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1393,7 +1393,7 @@ func (a *PortApiService) PatchPortGroupExecute(r ApiPatchPortGroupRequest) (*Por localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.portGroup @@ -1569,7 +1569,7 @@ func (a *PortApiService) PatchPortMacBindingExecute(r ApiPatchPortMacBindingRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.portMacBinding @@ -1745,7 +1745,7 @@ func (a *PortApiService) PatchPortSubGroupExecute(r ApiPatchPortSubGroupRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.portSubGroup @@ -1921,7 +1921,7 @@ func (a *PortApiService) UpdatePortGroupExecute(r ApiUpdatePortGroupRequest) (*P localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.portGroup @@ -2097,7 +2097,7 @@ func (a *PortApiService) UpdatePortMacBindingExecute(r ApiUpdatePortMacBindingRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.portMacBinding @@ -2273,7 +2273,7 @@ func (a *PortApiService) UpdatePortSubGroupExecute(r ApiUpdatePortSubGroupReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.portSubGroup diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_power.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_power.go index ef0d1da583..9d8cdf08c2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_power.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_power.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *PowerApiService) CreatePowerPolicyExecute(r ApiCreatePowerPolicyRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.powerPolicy @@ -623,52 +623,52 @@ func (a *PowerApiService) GetPowerControlStateListExecute(r ApiGetPowerControlSt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1206,52 +1206,52 @@ func (a *PowerApiService) GetPowerPolicyInventoryListExecute(r ApiGetPowerPolicy localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1481,52 +1481,52 @@ func (a *PowerApiService) GetPowerPolicyListExecute(r ApiGetPowerPolicyListReque localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1717,7 +1717,7 @@ func (a *PowerApiService) PatchPowerPolicyExecute(r ApiPatchPowerPolicyRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.powerPolicy @@ -1893,7 +1893,7 @@ func (a *PowerApiService) UpdatePowerPolicyExecute(r ApiUpdatePowerPolicyRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.powerPolicy diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_processor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_processor.go index 14168b6f31..966029c5c7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_processor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_processor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *ProcessorApiService) GetProcessorUnitListExecute(r ApiGetProcessorUnitL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -535,7 +535,7 @@ func (a *ProcessorApiService) PatchProcessorUnitExecute(r ApiPatchProcessorUnitR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.processorUnit @@ -711,7 +711,7 @@ func (a *ProcessorApiService) UpdateProcessorUnitExecute(r ApiUpdateProcessorUni localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.processorUnit diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_rack.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_rack.go index 658f5092bb..5a073f31e4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_rack.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_rack.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *RackApiService) GetRackUnitPersonalityListExecute(r ApiGetRackUnitPerso localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -535,7 +535,7 @@ func (a *RackApiService) PatchRackUnitPersonalityExecute(r ApiPatchRackUnitPerso localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.rackUnitPersonality @@ -711,7 +711,7 @@ func (a *RackApiService) UpdateRackUnitPersonalityExecute(r ApiUpdateRackUnitPer localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.rackUnitPersonality diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_recommendation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_recommendation.go index baf18f8480..8abc460022 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_recommendation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_recommendation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *RecommendationApiService) CreateRecommendationHardwareExpansionRequestE localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.recommendationHardwareExpansionRequest @@ -291,10 +291,10 @@ func (a *RecommendationApiService) CreateRecommendationHardwareExpansionRequestI localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.recommendationHardwareExpansionRequestItem @@ -477,10 +477,10 @@ func (a *RecommendationApiService) CreateRecommendationPurchaseOrderEstimateExec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.recommendationPurchaseOrderEstimate @@ -849,52 +849,52 @@ func (a *RecommendationApiService) GetRecommendationCapacityRunwayListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1278,52 +1278,52 @@ func (a *RecommendationApiService) GetRecommendationClusterExpansionListExecute( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1861,52 +1861,52 @@ func (a *RecommendationApiService) GetRecommendationHardwareExpansionRequestItem localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2136,52 +2136,52 @@ func (a *RecommendationApiService) GetRecommendationHardwareExpansionRequestList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2565,52 +2565,52 @@ func (a *RecommendationApiService) GetRecommendationPhysicalItemListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3002,52 +3002,52 @@ func (a *RecommendationApiService) GetRecommendationPurchaseOrderEstimateListExe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3431,52 +3431,52 @@ func (a *RecommendationApiService) GetRecommendationPurchaseOrderListListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3860,52 +3860,52 @@ func (a *RecommendationApiService) GetRecommendationSoftwareItemListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4096,7 +4096,7 @@ func (a *RecommendationApiService) PatchRecommendationHardwareExpansionRequestEx localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recommendationHardwareExpansionRequest @@ -4272,7 +4272,7 @@ func (a *RecommendationApiService) PatchRecommendationHardwareExpansionRequestIt localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recommendationHardwareExpansionRequestItem @@ -4452,7 +4452,7 @@ func (a *RecommendationApiService) PatchRecommendationPurchaseOrderEstimateExecu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recommendationPurchaseOrderEstimate @@ -4628,7 +4628,7 @@ func (a *RecommendationApiService) UpdateRecommendationHardwareExpansionRequestE localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recommendationHardwareExpansionRequest @@ -4804,7 +4804,7 @@ func (a *RecommendationApiService) UpdateRecommendationHardwareExpansionRequestI localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recommendationHardwareExpansionRequestItem @@ -4984,7 +4984,7 @@ func (a *RecommendationApiService) UpdateRecommendationPurchaseOrderEstimateExec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recommendationPurchaseOrderEstimate diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_recovery.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_recovery.go index 8e9974ae1b..faccc83f5b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_recovery.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_recovery.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *RecoveryApiService) CreateRecoveryBackupConfigPolicyExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.recoveryBackupConfigPolicy @@ -291,10 +291,10 @@ func (a *RecoveryApiService) CreateRecoveryBackupProfileExecute(r ApiCreateRecov localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.recoveryBackupProfile @@ -473,10 +473,10 @@ func (a *RecoveryApiService) CreateRecoveryOnDemandBackupExecute(r ApiCreateReco localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.recoveryOnDemandBackup @@ -655,10 +655,10 @@ func (a *RecoveryApiService) CreateRecoveryRestoreExecute(r ApiCreateRecoveryRes localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.recoveryRestore @@ -837,10 +837,10 @@ func (a *RecoveryApiService) CreateRecoveryScheduleConfigPolicyExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.recoveryScheduleConfigPolicy @@ -1919,52 +1919,52 @@ func (a *RecoveryApiService) GetRecoveryBackupConfigPolicyListExecute(r ApiGetRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2348,52 +2348,52 @@ func (a *RecoveryApiService) GetRecoveryBackupProfileListExecute(r ApiGetRecover localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2931,52 +2931,52 @@ func (a *RecoveryApiService) GetRecoveryConfigResultEntryListExecute(r ApiGetRec localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3206,52 +3206,52 @@ func (a *RecoveryApiService) GetRecoveryConfigResultListExecute(r ApiGetRecovery localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3635,52 +3635,52 @@ func (a *RecoveryApiService) GetRecoveryOnDemandBackupListExecute(r ApiGetRecove localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4064,52 +4064,52 @@ func (a *RecoveryApiService) GetRecoveryRestoreListExecute(r ApiGetRecoveryResto localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4493,52 +4493,52 @@ func (a *RecoveryApiService) GetRecoveryScheduleConfigPolicyListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4729,7 +4729,7 @@ func (a *RecoveryApiService) PatchRecoveryBackupConfigPolicyExecute(r ApiPatchRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recoveryBackupConfigPolicy @@ -4905,7 +4905,7 @@ func (a *RecoveryApiService) PatchRecoveryBackupProfileExecute(r ApiPatchRecover localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recoveryBackupProfile @@ -5081,7 +5081,7 @@ func (a *RecoveryApiService) PatchRecoveryOnDemandBackupExecute(r ApiPatchRecove localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recoveryOnDemandBackup @@ -5257,7 +5257,7 @@ func (a *RecoveryApiService) PatchRecoveryScheduleConfigPolicyExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recoveryScheduleConfigPolicy @@ -5433,7 +5433,7 @@ func (a *RecoveryApiService) UpdateRecoveryBackupConfigPolicyExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recoveryBackupConfigPolicy @@ -5609,7 +5609,7 @@ func (a *RecoveryApiService) UpdateRecoveryBackupProfileExecute(r ApiUpdateRecov localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recoveryBackupProfile @@ -5785,7 +5785,7 @@ func (a *RecoveryApiService) UpdateRecoveryOnDemandBackupExecute(r ApiUpdateReco localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recoveryOnDemandBackup @@ -5961,7 +5961,7 @@ func (a *RecoveryApiService) UpdateRecoveryScheduleConfigPolicyExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.recoveryScheduleConfigPolicy diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_resource.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_resource.go index 3975b1ab73..711088d81d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_resource.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_resource.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *ResourceApiService) CreateResourceGroupExecute(r ApiCreateResourceGroup localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.resourceGroup @@ -291,10 +291,10 @@ func (a *ResourceApiService) CreateResourceMembershipExecute(r ApiCreateResource localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.resourceMembership @@ -473,10 +473,10 @@ func (a *ResourceApiService) CreateResourceReservationExecute(r ApiCreateResourc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.resourceReservation @@ -655,10 +655,10 @@ func (a *ResourceApiService) CreateResourceSelectionCriteriaExecute(r ApiCreateR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.resourceSelectionCriteria @@ -1737,52 +1737,52 @@ func (a *ResourceApiService) GetResourceGroupListExecute(r ApiGetResourceGroupLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2166,52 +2166,52 @@ func (a *ResourceApiService) GetResourceGroupMemberListExecute(r ApiGetResourceG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2595,52 +2595,52 @@ func (a *ResourceApiService) GetResourceLicenseResourceCountListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3178,52 +3178,52 @@ func (a *ResourceApiService) GetResourceMembershipHolderListExecute(r ApiGetReso localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3453,52 +3453,52 @@ func (a *ResourceApiService) GetResourceMembershipListExecute(r ApiGetResourceMe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3882,52 +3882,52 @@ func (a *ResourceApiService) GetResourceReservationListExecute(r ApiGetResourceR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4311,52 +4311,52 @@ func (a *ResourceApiService) GetResourceSelectionCriteriaListExecute(r ApiGetRes localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4740,52 +4740,52 @@ func (a *ResourceApiService) GetResourceSharedResourcesInfoHolderListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4976,7 +4976,7 @@ func (a *ResourceApiService) PatchResourceGroupExecute(r ApiPatchResourceGroupRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.resourceGroup @@ -5152,7 +5152,7 @@ func (a *ResourceApiService) PatchResourceMembershipExecute(r ApiPatchResourceMe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.resourceMembership @@ -5328,7 +5328,7 @@ func (a *ResourceApiService) PatchResourceReservationExecute(r ApiPatchResourceR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.resourceReservation @@ -5504,7 +5504,7 @@ func (a *ResourceApiService) PatchResourceSelectionCriteriaExecute(r ApiPatchRes localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.resourceSelectionCriteria @@ -5680,7 +5680,7 @@ func (a *ResourceApiService) UpdateResourceGroupExecute(r ApiUpdateResourceGroup localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.resourceGroup @@ -5856,7 +5856,7 @@ func (a *ResourceApiService) UpdateResourceMembershipExecute(r ApiUpdateResource localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.resourceMembership @@ -6032,7 +6032,7 @@ func (a *ResourceApiService) UpdateResourceReservationExecute(r ApiUpdateResourc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.resourceReservation @@ -6208,7 +6208,7 @@ func (a *ResourceApiService) UpdateResourceSelectionCriteriaExecute(r ApiUpdateR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.resourceSelectionCriteria diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_resourcepool.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_resourcepool.go index 1bd325b12d..378e46f320 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_resourcepool.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_resourcepool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *ResourcepoolApiService) CreateResourcepoolPoolExecute(r ApiCreateResour localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.resourcepoolPool @@ -907,52 +907,52 @@ func (a *ResourcepoolApiService) GetResourcepoolLeaseListExecute(r ApiGetResourc localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1336,52 +1336,52 @@ func (a *ResourcepoolApiService) GetResourcepoolLeaseResourceListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1765,52 +1765,52 @@ func (a *ResourcepoolApiService) GetResourcepoolMembershipReservationListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2194,52 +2194,52 @@ func (a *ResourcepoolApiService) GetResourcepoolPoolListExecute(r ApiGetResource localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2623,52 +2623,52 @@ func (a *ResourcepoolApiService) GetResourcepoolPoolMemberListExecute(r ApiGetRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3052,52 +3052,52 @@ func (a *ResourcepoolApiService) GetResourcepoolUniverseListExecute(r ApiGetReso localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3288,7 +3288,7 @@ func (a *ResourcepoolApiService) PatchResourcepoolMembershipReservationExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.resourcepoolMembershipReservation @@ -3464,7 +3464,7 @@ func (a *ResourcepoolApiService) PatchResourcepoolPoolExecute(r ApiPatchResource localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.resourcepoolPool @@ -3640,7 +3640,7 @@ func (a *ResourcepoolApiService) UpdateResourcepoolMembershipReservationExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.resourcepoolMembershipReservation @@ -3816,7 +3816,7 @@ func (a *ResourcepoolApiService) UpdateResourcepoolPoolExecute(r ApiUpdateResour localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.resourcepoolPool diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_rproxy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_rproxy.go index bcac1b4836..12347b4d42 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_rproxy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_rproxy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -108,10 +108,10 @@ func (a *RproxyApiService) CreateRproxyReverseProxyExecute(r ApiCreateRproxyReve localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.rproxyReverseProxy diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_scheduler.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_scheduler.go index 492028830b..29377e8603 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_scheduler.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_scheduler.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *SchedulerApiService) CreateSchedulerTaskScheduleExecute(r ApiCreateSche localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.schedulerTaskSchedule @@ -765,52 +765,52 @@ func (a *SchedulerApiService) GetSchedulerTaskResultListExecute(r ApiGetSchedule localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1194,52 +1194,52 @@ func (a *SchedulerApiService) GetSchedulerTaskScheduleListExecute(r ApiGetSchedu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1430,7 +1430,7 @@ func (a *SchedulerApiService) PatchSchedulerTaskScheduleExecute(r ApiPatchSchedu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.schedulerTaskSchedule @@ -1606,7 +1606,7 @@ func (a *SchedulerApiService) UpdateSchedulerTaskScheduleExecute(r ApiUpdateSche localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.schedulerTaskSchedule diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_sdaaci.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_sdaaci.go index 681b981467..441b2f61ae 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_sdaaci.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_sdaaci.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *SdaaciApiService) CreateSdaaciConnectionExecute(r ApiCreateSdaaciConnec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.sdaaciConnection @@ -291,10 +291,10 @@ func (a *SdaaciApiService) CreateSdaaciConnectionDetailExecute(r ApiCreateSdaaci localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.sdaaciConnectionDetail @@ -1101,52 +1101,52 @@ func (a *SdaaciApiService) GetSdaaciConnectionDetailListExecute(r ApiGetSdaaciCo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1376,52 +1376,52 @@ func (a *SdaaciApiService) GetSdaaciConnectionListExecute(r ApiGetSdaaciConnecti localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1612,7 +1612,7 @@ func (a *SdaaciApiService) PatchSdaaciConnectionExecute(r ApiPatchSdaaciConnecti localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.sdaaciConnection @@ -1788,7 +1788,7 @@ func (a *SdaaciApiService) PatchSdaaciConnectionDetailExecute(r ApiPatchSdaaciCo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.sdaaciConnectionDetail @@ -1964,7 +1964,7 @@ func (a *SdaaciApiService) UpdateSdaaciConnectionExecute(r ApiUpdateSdaaciConnec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.sdaaciConnection @@ -2140,7 +2140,7 @@ func (a *SdaaciApiService) UpdateSdaaciConnectionDetailExecute(r ApiUpdateSdaaci localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.sdaaciConnectionDetail diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_sdcard.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_sdcard.go index fb419e9a89..a5ca8fa429 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_sdcard.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_sdcard.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *SdcardApiService) CreateSdcardPolicyExecute(r ApiCreateSdcardPolicyRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.sdcardPolicy @@ -777,52 +777,52 @@ func (a *SdcardApiService) GetSdcardPolicyInventoryListExecute(r ApiGetSdcardPol localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *SdcardApiService) GetSdcardPolicyListExecute(r ApiGetSdcardPolicyListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1288,7 +1288,7 @@ func (a *SdcardApiService) PatchSdcardPolicyExecute(r ApiPatchSdcardPolicyReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.sdcardPolicy @@ -1464,7 +1464,7 @@ func (a *SdcardApiService) UpdateSdcardPolicyExecute(r ApiUpdateSdcardPolicyRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.sdcardPolicy diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_search.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_search.go index b3485b4f2c..0d17cd9491 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_search.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_search.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *SearchApiService) CreateSearchSuggestItemExecute(r ApiCreateSearchSugge localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.searchSuggestItem @@ -481,52 +481,52 @@ func (a *SearchApiService) GetSearchSearchItemListExecute(r ApiGetSearchSearchIt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -910,52 +910,52 @@ func (a *SearchApiService) GetSearchTagItemListExecute(r ApiGetSearchTagItemList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_security.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_security.go index c54f4b1c2d..0366b03f37 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_security.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_security.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *SecurityApiService) GetSecurityUnitListExecute(r ApiGetSecurityUnitList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -535,7 +535,7 @@ func (a *SecurityApiService) PatchSecurityUnitExecute(r ApiPatchSecurityUnitRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.securityUnit @@ -711,7 +711,7 @@ func (a *SecurityApiService) UpdateSecurityUnitExecute(r ApiUpdateSecurityUnitRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.securityUnit diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_server.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_server.go index 70d5a03143..a8a6cc7e72 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_server.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *ServerApiService) CreateServerConfigImportExecute(r ApiCreateServerConf localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.serverConfigImport @@ -291,10 +291,10 @@ func (a *ServerApiService) CreateServerProfileExecute(r ApiCreateServerProfileRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.serverProfile @@ -473,10 +473,10 @@ func (a *ServerApiService) CreateServerProfileTemplateExecute(r ApiCreateServerP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.serverProfileTemplate @@ -1129,52 +1129,52 @@ func (a *ServerApiService) GetServerConfigChangeDetailListExecute(r ApiGetServer localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1558,52 +1558,52 @@ func (a *ServerApiService) GetServerConfigImportListExecute(r ApiGetServerConfig localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2141,52 +2141,52 @@ func (a *ServerApiService) GetServerConfigResultEntryListExecute(r ApiGetServerC localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2416,52 +2416,52 @@ func (a *ServerApiService) GetServerConfigResultListExecute(r ApiGetServerConfig localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2845,52 +2845,52 @@ func (a *ServerApiService) GetServerDisruptionListExecute(r ApiGetServerDisrupti localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3274,52 +3274,52 @@ func (a *ServerApiService) GetServerProfileListExecute(r ApiGetServerProfileList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3703,52 +3703,52 @@ func (a *ServerApiService) GetServerProfileTemplateListExecute(r ApiGetServerPro localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3939,7 +3939,7 @@ func (a *ServerApiService) PatchServerProfileExecute(r ApiPatchServerProfileRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.serverProfile @@ -4115,7 +4115,7 @@ func (a *ServerApiService) PatchServerProfileTemplateExecute(r ApiPatchServerPro localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.serverProfileTemplate @@ -4291,7 +4291,7 @@ func (a *ServerApiService) UpdateServerProfileExecute(r ApiUpdateServerProfileRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.serverProfile @@ -4467,7 +4467,7 @@ func (a *ServerApiService) UpdateServerProfileTemplateExecute(r ApiUpdateServerP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.serverProfileTemplate diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_servicenow.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_servicenow.go index 8a27ae3200..c11022c78f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_servicenow.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_servicenow.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *ServicenowApiService) GetServicenowChangeRequestListExecute(r ApiGetSer localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *ServicenowApiService) GetServicenowIncidentListExecute(r ApiGetServicen localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_smtp.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_smtp.go index 32cfcf696c..8bb4b2f464 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_smtp.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_smtp.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *SmtpApiService) CreateSmtpPolicyExecute(r ApiCreateSmtpPolicyRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.smtpPolicy @@ -623,52 +623,52 @@ func (a *SmtpApiService) GetSmtpPolicyListExecute(r ApiGetSmtpPolicyListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -859,7 +859,7 @@ func (a *SmtpApiService) PatchSmtpPolicyExecute(r ApiPatchSmtpPolicyRequest) (*S localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.smtpPolicy @@ -1035,7 +1035,7 @@ func (a *SmtpApiService) UpdateSmtpPolicyExecute(r ApiUpdateSmtpPolicyRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.smtpPolicy diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_snmp.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_snmp.go index eaef8cdf41..a0b6927cfb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_snmp.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_snmp.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *SnmpApiService) CreateSnmpPolicyExecute(r ApiCreateSnmpPolicyRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.snmpPolicy @@ -777,52 +777,52 @@ func (a *SnmpApiService) GetSnmpPolicyInventoryListExecute(r ApiGetSnmpPolicyInv localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *SnmpApiService) GetSnmpPolicyListExecute(r ApiGetSnmpPolicyListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1288,7 +1288,7 @@ func (a *SnmpApiService) PatchSnmpPolicyExecute(r ApiPatchSnmpPolicyRequest) (*S localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.snmpPolicy @@ -1464,7 +1464,7 @@ func (a *SnmpApiService) UpdateSnmpPolicyExecute(r ApiUpdateSnmpPolicyRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.snmpPolicy diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_software.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_software.go index f4bbf8633b..64516cac9c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_software.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_software.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *SoftwareApiService) CreateSoftwareApplianceDistributableExecute(r ApiCr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwareApplianceDistributable @@ -291,10 +291,10 @@ func (a *SoftwareApiService) CreateSoftwareHciBundleDistributableExecute(r ApiCr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwareHciBundleDistributable @@ -473,10 +473,10 @@ func (a *SoftwareApiService) CreateSoftwareHciDistributableExecute(r ApiCreateSo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwareHciDistributable @@ -655,10 +655,10 @@ func (a *SoftwareApiService) CreateSoftwareHclMetaExecute(r ApiCreateSoftwareHcl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwareHclMeta @@ -837,10 +837,10 @@ func (a *SoftwareApiService) CreateSoftwareHyperflexBundleDistributableExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwareHyperflexBundleDistributable @@ -1019,10 +1019,10 @@ func (a *SoftwareApiService) CreateSoftwareHyperflexDistributableExecute(r ApiCr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwareHyperflexDistributable @@ -1201,10 +1201,10 @@ func (a *SoftwareApiService) CreateSoftwareIksBundleDistributableExecute(r ApiCr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwareIksBundleDistributable @@ -1383,10 +1383,10 @@ func (a *SoftwareApiService) CreateSoftwareReleaseMetaExecute(r ApiCreateSoftwar localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwareReleaseMeta @@ -1565,10 +1565,10 @@ func (a *SoftwareApiService) CreateSoftwareSolutionDistributableExecute(r ApiCre localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwareSolutionDistributable @@ -1747,10 +1747,10 @@ func (a *SoftwareApiService) CreateSoftwareUcsdBundleDistributableExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwareUcsdBundleDistributable @@ -1929,10 +1929,10 @@ func (a *SoftwareApiService) CreateSoftwareUcsdDistributableExecute(r ApiCreateS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwareUcsdDistributable @@ -3863,52 +3863,52 @@ func (a *SoftwareApiService) GetSoftwareApplianceDistributableListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4292,52 +4292,52 @@ func (a *SoftwareApiService) GetSoftwareDownloadHistoryListExecute(r ApiGetSoftw localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4721,52 +4721,52 @@ func (a *SoftwareApiService) GetSoftwareHciBundleDistributableListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5150,52 +5150,52 @@ func (a *SoftwareApiService) GetSoftwareHciDistributableListExecute(r ApiGetSoft localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5579,52 +5579,52 @@ func (a *SoftwareApiService) GetSoftwareHclMetaListExecute(r ApiGetSoftwareHclMe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6008,52 +6008,52 @@ func (a *SoftwareApiService) GetSoftwareHyperflexBundleDistributableListExecute( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6437,52 +6437,52 @@ func (a *SoftwareApiService) GetSoftwareHyperflexDistributableListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6866,52 +6866,52 @@ func (a *SoftwareApiService) GetSoftwareIksBundleDistributableListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7295,52 +7295,52 @@ func (a *SoftwareApiService) GetSoftwareReleaseMetaListExecute(r ApiGetSoftwareR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7724,52 +7724,52 @@ func (a *SoftwareApiService) GetSoftwareSolutionDistributableListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8153,52 +8153,52 @@ func (a *SoftwareApiService) GetSoftwareUcsdBundleDistributableListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8582,52 +8582,52 @@ func (a *SoftwareApiService) GetSoftwareUcsdDistributableListExecute(r ApiGetSof localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8818,7 +8818,7 @@ func (a *SoftwareApiService) PatchSoftwareApplianceDistributableExecute(r ApiPat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareApplianceDistributable @@ -8994,7 +8994,7 @@ func (a *SoftwareApiService) PatchSoftwareHciBundleDistributableExecute(r ApiPat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareHciBundleDistributable @@ -9170,7 +9170,7 @@ func (a *SoftwareApiService) PatchSoftwareHciDistributableExecute(r ApiPatchSoft localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareHciDistributable @@ -9346,7 +9346,7 @@ func (a *SoftwareApiService) PatchSoftwareHclMetaExecute(r ApiPatchSoftwareHclMe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareHclMeta @@ -9522,7 +9522,7 @@ func (a *SoftwareApiService) PatchSoftwareHyperflexBundleDistributableExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareHyperflexBundleDistributable @@ -9698,7 +9698,7 @@ func (a *SoftwareApiService) PatchSoftwareHyperflexDistributableExecute(r ApiPat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareHyperflexDistributable @@ -9874,7 +9874,7 @@ func (a *SoftwareApiService) PatchSoftwareIksBundleDistributableExecute(r ApiPat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareIksBundleDistributable @@ -10050,7 +10050,7 @@ func (a *SoftwareApiService) PatchSoftwareReleaseMetaExecute(r ApiPatchSoftwareR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareReleaseMeta @@ -10226,7 +10226,7 @@ func (a *SoftwareApiService) PatchSoftwareSolutionDistributableExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareSolutionDistributable @@ -10402,7 +10402,7 @@ func (a *SoftwareApiService) PatchSoftwareUcsdBundleDistributableExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareUcsdBundleDistributable @@ -10578,7 +10578,7 @@ func (a *SoftwareApiService) PatchSoftwareUcsdDistributableExecute(r ApiPatchSof localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareUcsdDistributable @@ -10754,7 +10754,7 @@ func (a *SoftwareApiService) UpdateSoftwareApplianceDistributableExecute(r ApiUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareApplianceDistributable @@ -10930,7 +10930,7 @@ func (a *SoftwareApiService) UpdateSoftwareHciBundleDistributableExecute(r ApiUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareHciBundleDistributable @@ -11106,7 +11106,7 @@ func (a *SoftwareApiService) UpdateSoftwareHciDistributableExecute(r ApiUpdateSo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareHciDistributable @@ -11282,7 +11282,7 @@ func (a *SoftwareApiService) UpdateSoftwareHclMetaExecute(r ApiUpdateSoftwareHcl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareHclMeta @@ -11458,7 +11458,7 @@ func (a *SoftwareApiService) UpdateSoftwareHyperflexBundleDistributableExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareHyperflexBundleDistributable @@ -11634,7 +11634,7 @@ func (a *SoftwareApiService) UpdateSoftwareHyperflexDistributableExecute(r ApiUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareHyperflexDistributable @@ -11810,7 +11810,7 @@ func (a *SoftwareApiService) UpdateSoftwareIksBundleDistributableExecute(r ApiUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareIksBundleDistributable @@ -11986,7 +11986,7 @@ func (a *SoftwareApiService) UpdateSoftwareReleaseMetaExecute(r ApiUpdateSoftwar localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareReleaseMeta @@ -12162,7 +12162,7 @@ func (a *SoftwareApiService) UpdateSoftwareSolutionDistributableExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareSolutionDistributable @@ -12338,7 +12338,7 @@ func (a *SoftwareApiService) UpdateSoftwareUcsdBundleDistributableExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareUcsdBundleDistributable @@ -12514,7 +12514,7 @@ func (a *SoftwareApiService) UpdateSoftwareUcsdDistributableExecute(r ApiUpdateS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwareUcsdDistributable diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_softwarerepository.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_softwarerepository.go index 9190624292..727f501834 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_softwarerepository.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_softwarerepository.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *SoftwarerepositoryApiService) CreateSoftwarerepositoryAuthorizationExec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryAuthorization @@ -291,10 +291,10 @@ func (a *SoftwarerepositoryApiService) CreateSoftwarerepositoryCategoryMapperExe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryCategoryMapper @@ -473,10 +473,10 @@ func (a *SoftwarerepositoryApiService) CreateSoftwarerepositoryCategoryMapperMod localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryCategoryMapperModel @@ -655,10 +655,10 @@ func (a *SoftwarerepositoryApiService) CreateSoftwarerepositoryCategorySupportCo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryCategorySupportConstraint @@ -837,10 +837,10 @@ func (a *SoftwarerepositoryApiService) CreateSoftwarerepositoryCategoryUnsupport localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryCategoryUnsupportedModels @@ -1019,10 +1019,10 @@ func (a *SoftwarerepositoryApiService) CreateSoftwarerepositoryOperatingSystemFi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryOperatingSystemFile @@ -1201,10 +1201,10 @@ func (a *SoftwarerepositoryApiService) CreateSoftwarerepositoryReleaseExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryRelease @@ -2425,52 +2425,52 @@ func (a *SoftwarerepositoryApiService) GetSoftwarerepositoryAuthorizationListExe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2854,52 +2854,52 @@ func (a *SoftwarerepositoryApiService) GetSoftwarerepositoryCachedImageListExecu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3283,52 +3283,52 @@ func (a *SoftwarerepositoryApiService) GetSoftwarerepositoryCatalogListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3712,52 +3712,52 @@ func (a *SoftwarerepositoryApiService) GetSoftwarerepositoryCategoryMapperListEx localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4141,52 +4141,52 @@ func (a *SoftwarerepositoryApiService) GetSoftwarerepositoryCategoryMapperModelL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4570,52 +4570,52 @@ func (a *SoftwarerepositoryApiService) GetSoftwarerepositoryCategorySupportConst localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4999,52 +4999,52 @@ func (a *SoftwarerepositoryApiService) GetSoftwarerepositoryCategoryUnsupportedM localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5428,52 +5428,52 @@ func (a *SoftwarerepositoryApiService) GetSoftwarerepositoryDownloadSpecListExec localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5857,52 +5857,52 @@ func (a *SoftwarerepositoryApiService) GetSoftwarerepositoryOperatingSystemFileL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6286,52 +6286,52 @@ func (a *SoftwarerepositoryApiService) GetSoftwarerepositoryReleaseListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6522,7 +6522,7 @@ func (a *SoftwarerepositoryApiService) PatchSoftwarerepositoryAuthorizationExecu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryAuthorization @@ -6698,7 +6698,7 @@ func (a *SoftwarerepositoryApiService) PatchSoftwarerepositoryCategoryMapperExec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryCategoryMapper @@ -6874,7 +6874,7 @@ func (a *SoftwarerepositoryApiService) PatchSoftwarerepositoryCategoryMapperMode localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryCategoryMapperModel @@ -7050,7 +7050,7 @@ func (a *SoftwarerepositoryApiService) PatchSoftwarerepositoryCategorySupportCon localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryCategorySupportConstraint @@ -7226,7 +7226,7 @@ func (a *SoftwarerepositoryApiService) PatchSoftwarerepositoryCategoryUnsupporte localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryCategoryUnsupportedModels @@ -7402,7 +7402,7 @@ func (a *SoftwarerepositoryApiService) PatchSoftwarerepositoryOperatingSystemFil localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryOperatingSystemFile @@ -7578,7 +7578,7 @@ func (a *SoftwarerepositoryApiService) PatchSoftwarerepositoryReleaseExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryRelease @@ -7754,7 +7754,7 @@ func (a *SoftwarerepositoryApiService) UpdateSoftwarerepositoryAuthorizationExec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryAuthorization @@ -7930,7 +7930,7 @@ func (a *SoftwarerepositoryApiService) UpdateSoftwarerepositoryCategoryMapperExe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryCategoryMapper @@ -8106,7 +8106,7 @@ func (a *SoftwarerepositoryApiService) UpdateSoftwarerepositoryCategoryMapperMod localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryCategoryMapperModel @@ -8282,7 +8282,7 @@ func (a *SoftwarerepositoryApiService) UpdateSoftwarerepositoryCategorySupportCo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryCategorySupportConstraint @@ -8458,7 +8458,7 @@ func (a *SoftwarerepositoryApiService) UpdateSoftwarerepositoryCategoryUnsupport localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryCategoryUnsupportedModels @@ -8634,7 +8634,7 @@ func (a *SoftwarerepositoryApiService) UpdateSoftwarerepositoryOperatingSystemFi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryOperatingSystemFile @@ -8810,7 +8810,7 @@ func (a *SoftwarerepositoryApiService) UpdateSoftwarerepositoryReleaseExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.softwarerepositoryRelease diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_sol.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_sol.go index 843b3d95c3..98d1648e03 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_sol.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_sol.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *SolApiService) CreateSolPolicyExecute(r ApiCreateSolPolicyRequest) (*So localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.solPolicy @@ -777,52 +777,52 @@ func (a *SolApiService) GetSolPolicyInventoryListExecute(r ApiGetSolPolicyInvent localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *SolApiService) GetSolPolicyListExecute(r ApiGetSolPolicyListRequest) (* localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1288,7 +1288,7 @@ func (a *SolApiService) PatchSolPolicyExecute(r ApiPatchSolPolicyRequest) (*SolP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.solPolicy @@ -1464,7 +1464,7 @@ func (a *SolApiService) UpdateSolPolicyExecute(r ApiUpdateSolPolicyRequest) (*So localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.solPolicy diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ssh.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ssh.go index aad8db7e23..d69568e8a9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ssh.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ssh.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *SshApiService) CreateSshPolicyExecute(r ApiCreateSshPolicyRequest) (*Ss localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.sshPolicy @@ -777,52 +777,52 @@ func (a *SshApiService) GetSshPolicyInventoryListExecute(r ApiGetSshPolicyInvent localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *SshApiService) GetSshPolicyListExecute(r ApiGetSshPolicyListRequest) (* localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1288,7 +1288,7 @@ func (a *SshApiService) PatchSshPolicyExecute(r ApiPatchSshPolicyRequest) (*SshP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.sshPolicy @@ -1464,7 +1464,7 @@ func (a *SshApiService) UpdateSshPolicyExecute(r ApiUpdateSshPolicyRequest) (*Ss localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.sshPolicy diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_storage.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_storage.go index b91c02b438..d2483ceaa7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_storage.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_storage.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *StorageApiService) CreateStorageDriveGroupExecute(r ApiCreateStorageDri localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.storageDriveGroup @@ -291,10 +291,10 @@ func (a *StorageApiService) CreateStorageDriveSecurityPolicyExecute(r ApiCreateS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.storageDriveSecurityPolicy @@ -473,10 +473,10 @@ func (a *StorageApiService) CreateStorageStoragePolicyExecute(r ApiCreateStorage localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.storageStoragePolicy @@ -1271,52 +1271,52 @@ func (a *StorageApiService) GetStorageBatteryBackupUnitListExecute(r ApiGetStora localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1854,52 +1854,52 @@ func (a *StorageApiService) GetStorageControllerDriveListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2129,52 +2129,52 @@ func (a *StorageApiService) GetStorageControllerListExecute(r ApiGetStorageContr localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2558,52 +2558,52 @@ func (a *StorageApiService) GetStorageDiskGroupListExecute(r ApiGetStorageDiskGr localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2987,52 +2987,52 @@ func (a *StorageApiService) GetStorageDiskSlotListExecute(r ApiGetStorageDiskSlo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3416,52 +3416,52 @@ func (a *StorageApiService) GetStorageDriveGroupListExecute(r ApiGetStorageDrive localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3845,52 +3845,52 @@ func (a *StorageApiService) GetStorageDriveSecurityPolicyListExecute(r ApiGetSto localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4428,52 +4428,52 @@ func (a *StorageApiService) GetStorageEnclosureDiskListExecute(r ApiGetStorageEn localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4857,52 +4857,52 @@ func (a *StorageApiService) GetStorageEnclosureDiskSlotEpListExecute(r ApiGetSto localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5132,52 +5132,52 @@ func (a *StorageApiService) GetStorageEnclosureListExecute(r ApiGetStorageEnclos localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5561,52 +5561,52 @@ func (a *StorageApiService) GetStorageFileItemListExecute(r ApiGetStorageFileIte localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5990,52 +5990,52 @@ func (a *StorageApiService) GetStorageFlexFlashControllerListExecute(r ApiGetSto localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6419,52 +6419,52 @@ func (a *StorageApiService) GetStorageFlexFlashControllerPropsListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6848,52 +6848,52 @@ func (a *StorageApiService) GetStorageFlexFlashPhysicalDriveListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7277,52 +7277,52 @@ func (a *StorageApiService) GetStorageFlexFlashVirtualDriveListExecute(r ApiGetS localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7706,52 +7706,52 @@ func (a *StorageApiService) GetStorageFlexUtilControllerListExecute(r ApiGetStor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8135,52 +8135,52 @@ func (a *StorageApiService) GetStorageFlexUtilPhysicalDriveListExecute(r ApiGetS localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8564,52 +8564,52 @@ func (a *StorageApiService) GetStorageFlexUtilVirtualDriveListExecute(r ApiGetSt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8993,52 +8993,52 @@ func (a *StorageApiService) GetStorageHitachiArrayListExecute(r ApiGetStorageHit localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9422,52 +9422,52 @@ func (a *StorageApiService) GetStorageHitachiControllerListExecute(r ApiGetStora localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9851,52 +9851,52 @@ func (a *StorageApiService) GetStorageHitachiDiskListExecute(r ApiGetStorageHita localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10280,52 +10280,52 @@ func (a *StorageApiService) GetStorageHitachiExternalParityGroupListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10709,52 +10709,52 @@ func (a *StorageApiService) GetStorageHitachiExternalPathGroupListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11138,52 +11138,52 @@ func (a *StorageApiService) GetStorageHitachiExternalStorageLunListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11567,52 +11567,52 @@ func (a *StorageApiService) GetStorageHitachiExternalStoragePortListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11996,52 +11996,52 @@ func (a *StorageApiService) GetStorageHitachiHostListExecute(r ApiGetStorageHita localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12425,52 +12425,52 @@ func (a *StorageApiService) GetStorageHitachiHostLunListExecute(r ApiGetStorageH localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12854,52 +12854,52 @@ func (a *StorageApiService) GetStorageHitachiParityGroupListExecute(r ApiGetStor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13283,52 +13283,52 @@ func (a *StorageApiService) GetStorageHitachiPoolListExecute(r ApiGetStorageHita localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13712,52 +13712,52 @@ func (a *StorageApiService) GetStorageHitachiPortListExecute(r ApiGetStorageHita localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14141,52 +14141,52 @@ func (a *StorageApiService) GetStorageHitachiRemoteCopyPairGadListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14570,52 +14570,52 @@ func (a *StorageApiService) GetStorageHitachiRemoteCopyPairTcListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14999,52 +14999,52 @@ func (a *StorageApiService) GetStorageHitachiRemoteCopyPairUrListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15428,52 +15428,52 @@ func (a *StorageApiService) GetStorageHitachiRemoteReplicationListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15857,52 +15857,52 @@ func (a *StorageApiService) GetStorageHitachiSnapshotListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16286,52 +16286,52 @@ func (a *StorageApiService) GetStorageHitachiVolumeListExecute(r ApiGetStorageHi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16715,52 +16715,52 @@ func (a *StorageApiService) GetStorageHitachiVolumeMigrationPairListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17144,52 +17144,52 @@ func (a *StorageApiService) GetStorageHyperFlexStorageContainerListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17573,52 +17573,52 @@ func (a *StorageApiService) GetStorageHyperFlexVolumeListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18002,52 +18002,52 @@ func (a *StorageApiService) GetStorageItemListExecute(r ApiGetStorageItemListReq localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18585,52 +18585,52 @@ func (a *StorageApiService) GetStorageNetAppAggregateEventListExecute(r ApiGetSt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18860,52 +18860,52 @@ func (a *StorageApiService) GetStorageNetAppAggregateListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19289,52 +19289,52 @@ func (a *StorageApiService) GetStorageNetAppBaseDiskListExecute(r ApiGetStorageN localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19718,52 +19718,52 @@ func (a *StorageApiService) GetStorageNetAppCifsServiceListExecute(r ApiGetStora localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20147,52 +20147,52 @@ func (a *StorageApiService) GetStorageNetAppCifsShareListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -20576,52 +20576,52 @@ func (a *StorageApiService) GetStorageNetAppCloudTargetListExecute(r ApiGetStora localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21159,52 +21159,52 @@ func (a *StorageApiService) GetStorageNetAppClusterEventListExecute(r ApiGetStor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21434,52 +21434,52 @@ func (a *StorageApiService) GetStorageNetAppClusterListExecute(r ApiGetStorageNe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -21863,52 +21863,52 @@ func (a *StorageApiService) GetStorageNetAppClusterSnapMirrorPolicyListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22292,52 +22292,52 @@ func (a *StorageApiService) GetStorageNetAppClusterSnapshotPolicyListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -22875,52 +22875,52 @@ func (a *StorageApiService) GetStorageNetAppDataIpInterfaceEventListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23150,52 +23150,52 @@ func (a *StorageApiService) GetStorageNetAppDataIpInterfaceListExecute(r ApiGetS localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -23579,52 +23579,52 @@ func (a *StorageApiService) GetStorageNetAppDiskEventListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24162,52 +24162,52 @@ func (a *StorageApiService) GetStorageNetAppEthernetPortEventListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24437,52 +24437,52 @@ func (a *StorageApiService) GetStorageNetAppEthernetPortListExecute(r ApiGetStor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -24866,52 +24866,52 @@ func (a *StorageApiService) GetStorageNetAppExportPolicyListExecute(r ApiGetStor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25449,52 +25449,52 @@ func (a *StorageApiService) GetStorageNetAppFcInterfaceEventListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -25724,52 +25724,52 @@ func (a *StorageApiService) GetStorageNetAppFcInterfaceListExecute(r ApiGetStora localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26307,52 +26307,52 @@ func (a *StorageApiService) GetStorageNetAppFcPortEventListExecute(r ApiGetStora localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -26582,52 +26582,52 @@ func (a *StorageApiService) GetStorageNetAppFcPortListExecute(r ApiGetStorageNet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27011,52 +27011,52 @@ func (a *StorageApiService) GetStorageNetAppInitiatorGroupListExecute(r ApiGetSt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27598,52 +27598,52 @@ func (a *StorageApiService) GetStorageNetAppIpInterfaceEventListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -27877,52 +27877,52 @@ func (a *StorageApiService) GetStorageNetAppIpInterfaceListExecute(r ApiGetStora localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28306,52 +28306,52 @@ func (a *StorageApiService) GetStorageNetAppIscsiServiceListExecute(r ApiGetStor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -28735,52 +28735,52 @@ func (a *StorageApiService) GetStorageNetAppLicenseListExecute(r ApiGetStorageNe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29318,52 +29318,52 @@ func (a *StorageApiService) GetStorageNetAppLunEventListExecute(r ApiGetStorageN localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -29593,52 +29593,52 @@ func (a *StorageApiService) GetStorageNetAppLunListExecute(r ApiGetStorageNetApp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -30022,52 +30022,52 @@ func (a *StorageApiService) GetStorageNetAppLunMapListExecute(r ApiGetStorageNet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -30451,52 +30451,52 @@ func (a *StorageApiService) GetStorageNetAppNamespaceListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -30880,52 +30880,52 @@ func (a *StorageApiService) GetStorageNetAppNfsClientListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -31309,52 +31309,52 @@ func (a *StorageApiService) GetStorageNetAppNfsServiceListExecute(r ApiGetStorag localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -31892,52 +31892,52 @@ func (a *StorageApiService) GetStorageNetAppNodeCdpNeighborListExecute(r ApiGetS localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -32321,52 +32321,52 @@ func (a *StorageApiService) GetStorageNetAppNodeEventListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -32596,52 +32596,52 @@ func (a *StorageApiService) GetStorageNetAppNodeListExecute(r ApiGetStorageNetAp localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -33179,52 +33179,52 @@ func (a *StorageApiService) GetStorageNetAppNonDataIpInterfaceEventListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -33454,52 +33454,52 @@ func (a *StorageApiService) GetStorageNetAppNonDataIpInterfaceListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -33883,52 +33883,52 @@ func (a *StorageApiService) GetStorageNetAppNtpServerListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -34312,52 +34312,52 @@ func (a *StorageApiService) GetStorageNetAppQtreeListExecute(r ApiGetStorageNetA localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -34741,52 +34741,52 @@ func (a *StorageApiService) GetStorageNetAppScheduleListExecute(r ApiGetStorageN localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -35170,52 +35170,52 @@ func (a *StorageApiService) GetStorageNetAppSensorListExecute(r ApiGetStorageNet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -35599,52 +35599,52 @@ func (a *StorageApiService) GetStorageNetAppSnapMirrorRelationshipListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -36028,52 +36028,52 @@ func (a *StorageApiService) GetStorageNetAppStorageVmListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -36457,52 +36457,52 @@ func (a *StorageApiService) GetStorageNetAppSvmEventListExecute(r ApiGetStorageN localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -36886,52 +36886,52 @@ func (a *StorageApiService) GetStorageNetAppSvmSnapMirrorPolicyListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -37315,52 +37315,52 @@ func (a *StorageApiService) GetStorageNetAppSvmSnapshotPolicyListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -37898,52 +37898,52 @@ func (a *StorageApiService) GetStorageNetAppVolumeEventListExecute(r ApiGetStora localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -38173,52 +38173,52 @@ func (a *StorageApiService) GetStorageNetAppVolumeListExecute(r ApiGetStorageNet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -38602,52 +38602,52 @@ func (a *StorageApiService) GetStorageNetAppVolumeSnapshotListExecute(r ApiGetSt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -39031,52 +39031,52 @@ func (a *StorageApiService) GetStorageNvmeRaidConfigurationListExecute(r ApiGetS localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -39614,52 +39614,52 @@ func (a *StorageApiService) GetStoragePhysicalDiskExtensionListExecute(r ApiGetS localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -39889,52 +39889,52 @@ func (a *StorageApiService) GetStoragePhysicalDiskListExecute(r ApiGetStoragePhy localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -40318,52 +40318,52 @@ func (a *StorageApiService) GetStoragePhysicalDiskUsageListExecute(r ApiGetStora localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -40747,52 +40747,52 @@ func (a *StorageApiService) GetStoragePureArrayAlertsListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -41176,52 +41176,52 @@ func (a *StorageApiService) GetStoragePureArrayListExecute(r ApiGetStoragePureAr localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -41605,52 +41605,52 @@ func (a *StorageApiService) GetStoragePureControllerListExecute(r ApiGetStorageP localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -42034,52 +42034,52 @@ func (a *StorageApiService) GetStoragePureDiskListExecute(r ApiGetStoragePureDis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -42617,52 +42617,52 @@ func (a *StorageApiService) GetStoragePureHostGroupListExecute(r ApiGetStoragePu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -42892,52 +42892,52 @@ func (a *StorageApiService) GetStoragePureHostListExecute(r ApiGetStoragePureHos localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -43321,52 +43321,52 @@ func (a *StorageApiService) GetStoragePureHostLunListExecute(r ApiGetStoragePure localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -43750,52 +43750,52 @@ func (a *StorageApiService) GetStoragePurePortListExecute(r ApiGetStoragePurePor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -44179,52 +44179,52 @@ func (a *StorageApiService) GetStoragePureProtectionGroupListExecute(r ApiGetSto localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -44608,52 +44608,52 @@ func (a *StorageApiService) GetStoragePureProtectionGroupSnapshotListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -45037,52 +45037,52 @@ func (a *StorageApiService) GetStoragePureReplicationScheduleListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -45466,52 +45466,52 @@ func (a *StorageApiService) GetStoragePureSnapshotScheduleListExecute(r ApiGetSt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -45895,52 +45895,52 @@ func (a *StorageApiService) GetStoragePureTargetArrayListExecute(r ApiGetStorage localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -46324,52 +46324,52 @@ func (a *StorageApiService) GetStoragePureVolumeListExecute(r ApiGetStoragePureV localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -46753,52 +46753,52 @@ func (a *StorageApiService) GetStoragePureVolumeSnapshotListExecute(r ApiGetStor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -47182,52 +47182,52 @@ func (a *StorageApiService) GetStorageSasExpanderListExecute(r ApiGetStorageSasE localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -47611,52 +47611,52 @@ func (a *StorageApiService) GetStorageSasPortListExecute(r ApiGetStorageSasPortL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -48040,52 +48040,52 @@ func (a *StorageApiService) GetStorageSpanListExecute(r ApiGetStorageSpanListReq localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -48469,52 +48469,52 @@ func (a *StorageApiService) GetStorageStoragePolicyListExecute(r ApiGetStorageSt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -48898,52 +48898,52 @@ func (a *StorageApiService) GetStorageVdMemberEpListExecute(r ApiGetStorageVdMem localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -49481,52 +49481,52 @@ func (a *StorageApiService) GetStorageVirtualDriveContainerListExecute(r ApiGetS localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -49910,52 +49910,52 @@ func (a *StorageApiService) GetStorageVirtualDriveExtensionListExecute(r ApiGetS localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -50339,52 +50339,52 @@ func (a *StorageApiService) GetStorageVirtualDriveIdentityListExecute(r ApiGetSt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -50614,52 +50614,52 @@ func (a *StorageApiService) GetStorageVirtualDriveListExecute(r ApiGetStorageVir localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -50850,7 +50850,7 @@ func (a *StorageApiService) PatchStorageBatteryBackupUnitExecute(r ApiPatchStora localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageBatteryBackupUnit @@ -51026,7 +51026,7 @@ func (a *StorageApiService) PatchStorageControllerExecute(r ApiPatchStorageContr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageController @@ -51202,7 +51202,7 @@ func (a *StorageApiService) PatchStorageDiskGroupExecute(r ApiPatchStorageDiskGr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageDiskGroup @@ -51378,7 +51378,7 @@ func (a *StorageApiService) PatchStorageDriveGroupExecute(r ApiPatchStorageDrive localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageDriveGroup @@ -51554,7 +51554,7 @@ func (a *StorageApiService) PatchStorageDriveSecurityPolicyExecute(r ApiPatchSto localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageDriveSecurityPolicy @@ -51730,7 +51730,7 @@ func (a *StorageApiService) PatchStorageEnclosureExecute(r ApiPatchStorageEnclos localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageEnclosure @@ -51906,7 +51906,7 @@ func (a *StorageApiService) PatchStorageEnclosureDiskExecute(r ApiPatchStorageEn localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageEnclosureDisk @@ -52082,7 +52082,7 @@ func (a *StorageApiService) PatchStorageEnclosureDiskSlotEpExecute(r ApiPatchSto localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageEnclosureDiskSlotEp @@ -52258,7 +52258,7 @@ func (a *StorageApiService) PatchStorageFlexFlashControllerExecute(r ApiPatchSto localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexFlashController @@ -52434,7 +52434,7 @@ func (a *StorageApiService) PatchStorageFlexFlashControllerPropsExecute(r ApiPat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexFlashControllerProps @@ -52610,7 +52610,7 @@ func (a *StorageApiService) PatchStorageFlexFlashPhysicalDriveExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexFlashPhysicalDrive @@ -52786,7 +52786,7 @@ func (a *StorageApiService) PatchStorageFlexFlashVirtualDriveExecute(r ApiPatchS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexFlashVirtualDrive @@ -52962,7 +52962,7 @@ func (a *StorageApiService) PatchStorageFlexUtilControllerExecute(r ApiPatchStor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexUtilController @@ -53138,7 +53138,7 @@ func (a *StorageApiService) PatchStorageFlexUtilPhysicalDriveExecute(r ApiPatchS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexUtilPhysicalDrive @@ -53314,7 +53314,7 @@ func (a *StorageApiService) PatchStorageFlexUtilVirtualDriveExecute(r ApiPatchSt localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexUtilVirtualDrive @@ -53490,7 +53490,7 @@ func (a *StorageApiService) PatchStorageHitachiArrayExecute(r ApiPatchStorageHit localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageHitachiArray @@ -53666,7 +53666,7 @@ func (a *StorageApiService) PatchStorageNetAppClusterExecute(r ApiPatchStorageNe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageNetAppCluster @@ -53842,7 +53842,7 @@ func (a *StorageApiService) PatchStoragePhysicalDiskExecute(r ApiPatchStoragePhy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storagePhysicalDisk @@ -54018,7 +54018,7 @@ func (a *StorageApiService) PatchStoragePhysicalDiskExtensionExecute(r ApiPatchS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storagePhysicalDiskExtension @@ -54194,7 +54194,7 @@ func (a *StorageApiService) PatchStoragePhysicalDiskUsageExecute(r ApiPatchStora localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storagePhysicalDiskUsage @@ -54370,7 +54370,7 @@ func (a *StorageApiService) PatchStoragePureArrayExecute(r ApiPatchStoragePureAr localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storagePureArray @@ -54546,7 +54546,7 @@ func (a *StorageApiService) PatchStorageSasExpanderExecute(r ApiPatchStorageSasE localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageSasExpander @@ -54722,7 +54722,7 @@ func (a *StorageApiService) PatchStorageSasPortExecute(r ApiPatchStorageSasPortR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageSasPort @@ -54898,7 +54898,7 @@ func (a *StorageApiService) PatchStorageSpanExecute(r ApiPatchStorageSpanRequest localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageSpan @@ -55074,7 +55074,7 @@ func (a *StorageApiService) PatchStorageStoragePolicyExecute(r ApiPatchStorageSt localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageStoragePolicy @@ -55250,7 +55250,7 @@ func (a *StorageApiService) PatchStorageVdMemberEpExecute(r ApiPatchStorageVdMem localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageVdMemberEp @@ -55426,7 +55426,7 @@ func (a *StorageApiService) PatchStorageVirtualDriveExecute(r ApiPatchStorageVir localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageVirtualDrive @@ -55602,7 +55602,7 @@ func (a *StorageApiService) PatchStorageVirtualDriveContainerExecute(r ApiPatchS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageVirtualDriveContainer @@ -55778,7 +55778,7 @@ func (a *StorageApiService) PatchStorageVirtualDriveExtensionExecute(r ApiPatchS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageVirtualDriveExtension @@ -55954,7 +55954,7 @@ func (a *StorageApiService) UpdateStorageBatteryBackupUnitExecute(r ApiUpdateSto localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageBatteryBackupUnit @@ -56130,7 +56130,7 @@ func (a *StorageApiService) UpdateStorageControllerExecute(r ApiUpdateStorageCon localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageController @@ -56306,7 +56306,7 @@ func (a *StorageApiService) UpdateStorageDiskGroupExecute(r ApiUpdateStorageDisk localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageDiskGroup @@ -56482,7 +56482,7 @@ func (a *StorageApiService) UpdateStorageDriveGroupExecute(r ApiUpdateStorageDri localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageDriveGroup @@ -56658,7 +56658,7 @@ func (a *StorageApiService) UpdateStorageDriveSecurityPolicyExecute(r ApiUpdateS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageDriveSecurityPolicy @@ -56834,7 +56834,7 @@ func (a *StorageApiService) UpdateStorageEnclosureExecute(r ApiUpdateStorageEncl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageEnclosure @@ -57010,7 +57010,7 @@ func (a *StorageApiService) UpdateStorageEnclosureDiskExecute(r ApiUpdateStorage localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageEnclosureDisk @@ -57186,7 +57186,7 @@ func (a *StorageApiService) UpdateStorageEnclosureDiskSlotEpExecute(r ApiUpdateS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageEnclosureDiskSlotEp @@ -57362,7 +57362,7 @@ func (a *StorageApiService) UpdateStorageFlexFlashControllerExecute(r ApiUpdateS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexFlashController @@ -57538,7 +57538,7 @@ func (a *StorageApiService) UpdateStorageFlexFlashControllerPropsExecute(r ApiUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexFlashControllerProps @@ -57714,7 +57714,7 @@ func (a *StorageApiService) UpdateStorageFlexFlashPhysicalDriveExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexFlashPhysicalDrive @@ -57890,7 +57890,7 @@ func (a *StorageApiService) UpdateStorageFlexFlashVirtualDriveExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexFlashVirtualDrive @@ -58066,7 +58066,7 @@ func (a *StorageApiService) UpdateStorageFlexUtilControllerExecute(r ApiUpdateSt localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexUtilController @@ -58242,7 +58242,7 @@ func (a *StorageApiService) UpdateStorageFlexUtilPhysicalDriveExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexUtilPhysicalDrive @@ -58418,7 +58418,7 @@ func (a *StorageApiService) UpdateStorageFlexUtilVirtualDriveExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageFlexUtilVirtualDrive @@ -58594,7 +58594,7 @@ func (a *StorageApiService) UpdateStorageHitachiArrayExecute(r ApiUpdateStorageH localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageHitachiArray @@ -58770,7 +58770,7 @@ func (a *StorageApiService) UpdateStorageNetAppClusterExecute(r ApiUpdateStorage localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageNetAppCluster @@ -58946,7 +58946,7 @@ func (a *StorageApiService) UpdateStoragePhysicalDiskExecute(r ApiUpdateStorageP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storagePhysicalDisk @@ -59122,7 +59122,7 @@ func (a *StorageApiService) UpdateStoragePhysicalDiskExtensionExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storagePhysicalDiskExtension @@ -59298,7 +59298,7 @@ func (a *StorageApiService) UpdateStoragePhysicalDiskUsageExecute(r ApiUpdateSto localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storagePhysicalDiskUsage @@ -59474,7 +59474,7 @@ func (a *StorageApiService) UpdateStoragePureArrayExecute(r ApiUpdateStoragePure localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storagePureArray @@ -59650,7 +59650,7 @@ func (a *StorageApiService) UpdateStorageSasExpanderExecute(r ApiUpdateStorageSa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageSasExpander @@ -59826,7 +59826,7 @@ func (a *StorageApiService) UpdateStorageSasPortExecute(r ApiUpdateStorageSasPor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageSasPort @@ -60002,7 +60002,7 @@ func (a *StorageApiService) UpdateStorageSpanExecute(r ApiUpdateStorageSpanReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageSpan @@ -60178,7 +60178,7 @@ func (a *StorageApiService) UpdateStorageStoragePolicyExecute(r ApiUpdateStorage localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageStoragePolicy @@ -60354,7 +60354,7 @@ func (a *StorageApiService) UpdateStorageVdMemberEpExecute(r ApiUpdateStorageVdM localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageVdMemberEp @@ -60530,7 +60530,7 @@ func (a *StorageApiService) UpdateStorageVirtualDriveExecute(r ApiUpdateStorageV localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageVirtualDrive @@ -60706,7 +60706,7 @@ func (a *StorageApiService) UpdateStorageVirtualDriveContainerExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageVirtualDriveContainer @@ -60882,7 +60882,7 @@ func (a *StorageApiService) UpdateStorageVirtualDriveExtensionExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.storageVirtualDriveExtension diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_syslog.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_syslog.go index 9a77492ac8..3fcc9bf803 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_syslog.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_syslog.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *SyslogApiService) CreateSyslogPolicyExecute(r ApiCreateSyslogPolicyRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.syslogPolicy @@ -777,52 +777,52 @@ func (a *SyslogApiService) GetSyslogPolicyInventoryListExecute(r ApiGetSyslogPol localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *SyslogApiService) GetSyslogPolicyListExecute(r ApiGetSyslogPolicyListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1288,7 +1288,7 @@ func (a *SyslogApiService) PatchSyslogPolicyExecute(r ApiPatchSyslogPolicyReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.syslogPolicy @@ -1464,7 +1464,7 @@ func (a *SyslogApiService) UpdateSyslogPolicyExecute(r ApiUpdateSyslogPolicyRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.syslogPolicy diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_tam.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_tam.go index 5c09187193..1ac271b9fe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_tam.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_tam.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *TamApiService) CreateTamAdvisoryCountExecute(r ApiCreateTamAdvisoryCoun localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.tamAdvisoryCount @@ -291,10 +291,10 @@ func (a *TamApiService) CreateTamAdvisoryDefinitionExecute(r ApiCreateTamAdvisor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.tamAdvisoryDefinition @@ -473,10 +473,10 @@ func (a *TamApiService) CreateTamAdvisoryInfoExecute(r ApiCreateTamAdvisoryInfoR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.tamAdvisoryInfo @@ -655,10 +655,10 @@ func (a *TamApiService) CreateTamAdvisoryInstanceExecute(r ApiCreateTamAdvisoryI localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.tamAdvisoryInstance @@ -837,10 +837,10 @@ func (a *TamApiService) CreateTamSecurityAdvisoryExecute(r ApiCreateTamSecurityA localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.tamSecurityAdvisory @@ -1919,52 +1919,52 @@ func (a *TamApiService) GetTamAdvisoryCountListExecute(r ApiGetTamAdvisoryCountL localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2348,52 +2348,52 @@ func (a *TamApiService) GetTamAdvisoryDefinitionListExecute(r ApiGetTamAdvisoryD localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2777,52 +2777,52 @@ func (a *TamApiService) GetTamAdvisoryInfoListExecute(r ApiGetTamAdvisoryInfoLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3206,52 +3206,52 @@ func (a *TamApiService) GetTamAdvisoryInstanceListExecute(r ApiGetTamAdvisoryIns localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3635,52 +3635,52 @@ func (a *TamApiService) GetTamSecurityAdvisoryListExecute(r ApiGetTamSecurityAdv localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3871,7 +3871,7 @@ func (a *TamApiService) PatchTamAdvisoryCountExecute(r ApiPatchTamAdvisoryCountR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.tamAdvisoryCount @@ -4047,7 +4047,7 @@ func (a *TamApiService) PatchTamAdvisoryDefinitionExecute(r ApiPatchTamAdvisoryD localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.tamAdvisoryDefinition @@ -4223,7 +4223,7 @@ func (a *TamApiService) PatchTamAdvisoryInfoExecute(r ApiPatchTamAdvisoryInfoReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.tamAdvisoryInfo @@ -4399,7 +4399,7 @@ func (a *TamApiService) PatchTamAdvisoryInstanceExecute(r ApiPatchTamAdvisoryIns localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.tamAdvisoryInstance @@ -4575,7 +4575,7 @@ func (a *TamApiService) PatchTamSecurityAdvisoryExecute(r ApiPatchTamSecurityAdv localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.tamSecurityAdvisory @@ -4751,7 +4751,7 @@ func (a *TamApiService) UpdateTamAdvisoryCountExecute(r ApiUpdateTamAdvisoryCoun localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.tamAdvisoryCount @@ -4927,7 +4927,7 @@ func (a *TamApiService) UpdateTamAdvisoryDefinitionExecute(r ApiUpdateTamAdvisor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.tamAdvisoryDefinition @@ -5103,7 +5103,7 @@ func (a *TamApiService) UpdateTamAdvisoryInfoExecute(r ApiUpdateTamAdvisoryInfoR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.tamAdvisoryInfo @@ -5279,7 +5279,7 @@ func (a *TamApiService) UpdateTamAdvisoryInstanceExecute(r ApiUpdateTamAdvisoryI localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.tamAdvisoryInstance @@ -5455,7 +5455,7 @@ func (a *TamApiService) UpdateTamSecurityAdvisoryExecute(r ApiUpdateTamSecurityA localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.tamSecurityAdvisory diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_task.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_task.go index 438df61b7e..b86ce073a0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_task.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -108,10 +108,10 @@ func (a *TaskApiService) CreateTaskFabricMosScopedInventoryExecute(r ApiCreateTa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskFabricMosScopedInventory @@ -290,10 +290,10 @@ func (a *TaskApiService) CreateTaskHitachiScopedInventoryExecute(r ApiCreateTask localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskHitachiScopedInventory @@ -472,10 +472,10 @@ func (a *TaskApiService) CreateTaskHyperFlexManagementScopedInventoryExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskHyperFlexManagementScopedInventory @@ -654,10 +654,10 @@ func (a *TaskApiService) CreateTaskHyperflexScopedInventoryExecute(r ApiCreateTa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskHyperflexScopedInventory @@ -836,10 +836,10 @@ func (a *TaskApiService) CreateTaskMdsScopedInventoryExecute(r ApiCreateTaskMdsS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskMdsScopedInventory @@ -1018,10 +1018,10 @@ func (a *TaskApiService) CreateTaskMdsSystemScopedInventoryExecute(r ApiCreateTa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskMdsSystemScopedInventory @@ -1200,10 +1200,10 @@ func (a *TaskApiService) CreateTaskMerakiScopedInventoryExecute(r ApiCreateTaskM localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskMerakiScopedInventory @@ -1382,10 +1382,10 @@ func (a *TaskApiService) CreateTaskNetAppScopedInventoryExecute(r ApiCreateTaskN localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskNetAppScopedInventory @@ -1564,10 +1564,10 @@ func (a *TaskApiService) CreateTaskNexusScopedInventoryExecute(r ApiCreateTaskNe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskNexusScopedInventory @@ -1746,10 +1746,10 @@ func (a *TaskApiService) CreateTaskNexusSystemScopedInventoryExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskNexusSystemScopedInventory @@ -1928,10 +1928,10 @@ func (a *TaskApiService) CreateTaskNexusVlanScopedInventoryExecute(r ApiCreateTa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskNexusVlanScopedInventory @@ -2110,10 +2110,10 @@ func (a *TaskApiService) CreateTaskPublicCloudScopedInventoryExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskPublicCloudScopedInventory @@ -2292,10 +2292,10 @@ func (a *TaskApiService) CreateTaskPureScopedInventoryExecute(r ApiCreateTaskPur localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskPureScopedInventory @@ -2474,10 +2474,10 @@ func (a *TaskApiService) CreateTaskServerScopedInventoryExecute(r ApiCreateTaskS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.taskServerScopedInventory diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_techsupportmanagement.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_techsupportmanagement.go index 87de51855e..a3b6ab4d68 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_techsupportmanagement.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_techsupportmanagement.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *TechsupportmanagementApiService) CreateTechsupportmanagementCollectionC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.techsupportmanagementCollectionControlPolicy @@ -291,10 +291,10 @@ func (a *TechsupportmanagementApiService) CreateTechsupportmanagementTechSupport localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.techsupportmanagementTechSupportBundle @@ -947,52 +947,52 @@ func (a *TechsupportmanagementApiService) GetTechsupportmanagementCollectionCont localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1376,52 +1376,52 @@ func (a *TechsupportmanagementApiService) GetTechsupportmanagementDownloadListEx localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1805,52 +1805,52 @@ func (a *TechsupportmanagementApiService) GetTechsupportmanagementEndPointListEx localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2234,52 +2234,52 @@ func (a *TechsupportmanagementApiService) GetTechsupportmanagementTechSupportBun localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2663,52 +2663,52 @@ func (a *TechsupportmanagementApiService) GetTechsupportmanagementTechSupportSta localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2899,7 +2899,7 @@ func (a *TechsupportmanagementApiService) PatchTechsupportmanagementCollectionCo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.techsupportmanagementCollectionControlPolicy @@ -3075,7 +3075,7 @@ func (a *TechsupportmanagementApiService) UpdateTechsupportmanagementCollectionC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.techsupportmanagementCollectionControlPolicy diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_telemetry.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_telemetry.go index e6310b879f..20d0d19dd9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_telemetry.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_telemetry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_terminal.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_terminal.go index 8ddc8f4893..4dfc5b76f6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_terminal.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_terminal.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *TerminalApiService) GetTerminalAuditLogListExecute(r ApiGetTerminalAudi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_terraform.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_terraform.go index 3e3f36c97f..ff83e7e2aa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_terraform.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_terraform.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *TerraformApiService) CreateTerraformExecutorExecute(r ApiCreateTerrafor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.terraformExecutor @@ -623,52 +623,52 @@ func (a *TerraformApiService) GetTerraformExecutorListExecute(r ApiGetTerraformE localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -859,7 +859,7 @@ func (a *TerraformApiService) PatchTerraformExecutorExecute(r ApiPatchTerraformE localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.terraformExecutor @@ -1035,7 +1035,7 @@ func (a *TerraformApiService) UpdateTerraformExecutorExecute(r ApiUpdateTerrafor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.terraformExecutor diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_thermal.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_thermal.go index 5c5b2324b9..9dc69a0c36 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_thermal.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_thermal.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *ThermalApiService) CreateThermalPolicyExecute(r ApiCreateThermalPolicyR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.thermalPolicy @@ -777,52 +777,52 @@ func (a *ThermalApiService) GetThermalPolicyInventoryListExecute(r ApiGetThermal localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *ThermalApiService) GetThermalPolicyListExecute(r ApiGetThermalPolicyLis localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1288,7 +1288,7 @@ func (a *ThermalApiService) PatchThermalPolicyExecute(r ApiPatchThermalPolicyReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.thermalPolicy @@ -1464,7 +1464,7 @@ func (a *ThermalApiService) UpdateThermalPolicyExecute(r ApiUpdateThermalPolicyR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.thermalPolicy diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_top.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_top.go index 3120861854..332cd552fa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_top.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_top.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *TopApiService) GetTopSystemListExecute(r ApiGetTopSystemListRequest) (* localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -535,7 +535,7 @@ func (a *TopApiService) PatchTopSystemExecute(r ApiPatchTopSystemRequest) (*TopS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.topSystem @@ -711,7 +711,7 @@ func (a *TopApiService) UpdateTopSystemExecute(r ApiUpdateTopSystemRequest) (*To localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.topSystem diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ucsd.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ucsd.go index 0f59f4ca8d..77f1a95c72 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ucsd.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_ucsd.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -441,52 +441,52 @@ func (a *UcsdApiService) GetUcsdBackupInfoListExecute(r ApiGetUcsdBackupInfoList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_uuidpool.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_uuidpool.go index 265b619e08..b0b3993663 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_uuidpool.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_uuidpool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *UuidpoolApiService) CreateUuidpoolPoolExecute(r ApiCreateUuidpoolPoolRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.uuidpoolPool @@ -291,10 +291,10 @@ func (a *UuidpoolApiService) CreateUuidpoolReservationExecute(r ApiCreateUuidpoo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.uuidpoolReservation @@ -1089,52 +1089,52 @@ func (a *UuidpoolApiService) GetUuidpoolBlockListExecute(r ApiGetUuidpoolBlockLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1518,52 +1518,52 @@ func (a *UuidpoolApiService) GetUuidpoolPoolListExecute(r ApiGetUuidpoolPoolList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1947,52 +1947,52 @@ func (a *UuidpoolApiService) GetUuidpoolPoolMemberListExecute(r ApiGetUuidpoolPo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2376,52 +2376,52 @@ func (a *UuidpoolApiService) GetUuidpoolReservationListExecute(r ApiGetUuidpoolR localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2805,52 +2805,52 @@ func (a *UuidpoolApiService) GetUuidpoolUniverseListExecute(r ApiGetUuidpoolUniv localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3234,52 +3234,52 @@ func (a *UuidpoolApiService) GetUuidpoolUuidLeaseListExecute(r ApiGetUuidpoolUui localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3470,7 +3470,7 @@ func (a *UuidpoolApiService) PatchUuidpoolPoolExecute(r ApiPatchUuidpoolPoolRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.uuidpoolPool @@ -3646,7 +3646,7 @@ func (a *UuidpoolApiService) UpdateUuidpoolPoolExecute(r ApiUpdateUuidpoolPoolRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.uuidpoolPool diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_view.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_view.go index ab2371d571..7a6d996a28 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_view.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_view.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -299,52 +299,52 @@ func (a *ViewApiService) GetViewHealthStatusListExecute(r ApiGetViewHealthStatus localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -728,52 +728,52 @@ func (a *ViewApiService) GetViewServerListExecute(r ApiGetViewServerListRequest) localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_virtualization.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_virtualization.go index fc66674332..71b8e5d5b2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_virtualization.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_virtualization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *VirtualizationApiService) CreateVirtualizationEsxiConsoleExecute(r ApiC localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.virtualizationEsxiConsole @@ -291,10 +291,10 @@ func (a *VirtualizationApiService) CreateVirtualizationVirtualMachineExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVirtualMachine @@ -805,52 +805,52 @@ func (a *VirtualizationApiService) GetVirtualizationEsxiConsoleListExecute(r Api localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1234,52 +1234,52 @@ func (a *VirtualizationApiService) GetVirtualizationHostListExecute(r ApiGetVirt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1663,52 +1663,52 @@ func (a *VirtualizationApiService) GetVirtualizationVirtualMachineListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2092,52 +2092,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareClusterListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -2521,52 +2521,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareDatacenterListExecute( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3104,52 +3104,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareDatastoreClusterListEx localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3379,52 +3379,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareDatastoreListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -3808,52 +3808,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareDistributedNetworkList localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4237,52 +4237,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareDistributedSwitchListE localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -4666,52 +4666,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareFolderListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5249,52 +5249,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareHostGpuListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5524,52 +5524,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareHostListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5953,52 +5953,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareKernelNetworkListExecu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6382,52 +6382,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareNetworkListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6811,52 +6811,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwarePhysicalNetworkInterfa localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7240,52 +7240,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareProactiveHaListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7669,52 +7669,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareUplinkPortListExecute( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8098,52 +8098,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareVcenterListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8527,52 +8527,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareVirtualDiskListExecute localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9110,52 +9110,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareVirtualMachineGpuListE localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9385,52 +9385,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareVirtualMachineListExec localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9814,52 +9814,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareVirtualMachineSnapshot localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10243,52 +10243,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareVirtualNetworkInterfac localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10672,52 +10672,52 @@ func (a *VirtualizationApiService) GetVirtualizationVmwareVirtualSwitchListExecu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10908,7 +10908,7 @@ func (a *VirtualizationApiService) PatchVirtualizationEsxiConsoleExecute(r ApiPa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationEsxiConsole @@ -11084,7 +11084,7 @@ func (a *VirtualizationApiService) PatchVirtualizationHostExecute(r ApiPatchVirt localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationHost @@ -11260,7 +11260,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVirtualMachineExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVirtualMachine @@ -11436,7 +11436,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareClusterExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareCluster @@ -11612,7 +11612,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareDatacenterExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareDatacenter @@ -11788,7 +11788,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareDatastoreExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareDatastore @@ -11964,7 +11964,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareDatastoreClusterExec localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareDatastoreCluster @@ -12140,7 +12140,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareDistributedNetworkEx localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareDistributedNetwork @@ -12316,7 +12316,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareDistributedSwitchExe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareDistributedSwitch @@ -12492,7 +12492,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareFolderExecute(r ApiP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareFolder @@ -12668,7 +12668,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareHostExecute(r ApiPat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareHost @@ -12844,7 +12844,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareKernelNetworkExecute localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareKernelNetwork @@ -13020,7 +13020,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareNetworkExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareNetwork @@ -13196,7 +13196,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwarePhysicalNetworkInter localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwarePhysicalNetworkInterface @@ -13372,7 +13372,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareUplinkPortExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareUplinkPort @@ -13548,7 +13548,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareVirtualDiskExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareVirtualDisk @@ -13724,7 +13724,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareVirtualMachineExecut localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareVirtualMachine @@ -13900,7 +13900,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareVirtualMachineSnapsh localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareVirtualMachineSnapshot @@ -14076,7 +14076,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareVirtualNetworkInterf localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareVirtualNetworkInterface @@ -14252,7 +14252,7 @@ func (a *VirtualizationApiService) PatchVirtualizationVmwareVirtualSwitchExecute localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareVirtualSwitch @@ -14428,7 +14428,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationEsxiConsoleExecute(r ApiU localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationEsxiConsole @@ -14604,7 +14604,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationHostExecute(r ApiUpdateVi localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationHost @@ -14780,7 +14780,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVirtualMachineExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVirtualMachine @@ -14956,7 +14956,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareClusterExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareCluster @@ -15132,7 +15132,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareDatacenterExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareDatacenter @@ -15308,7 +15308,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareDatastoreExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareDatastore @@ -15484,7 +15484,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareDatastoreClusterExe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareDatastoreCluster @@ -15660,7 +15660,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareDistributedNetworkE localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareDistributedNetwork @@ -15836,7 +15836,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareDistributedSwitchEx localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareDistributedSwitch @@ -16012,7 +16012,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareFolderExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareFolder @@ -16188,7 +16188,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareHostExecute(r ApiUp localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareHost @@ -16364,7 +16364,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareKernelNetworkExecut localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareKernelNetwork @@ -16540,7 +16540,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareNetworkExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareNetwork @@ -16716,7 +16716,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwarePhysicalNetworkInte localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwarePhysicalNetworkInterface @@ -16892,7 +16892,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareUplinkPortExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareUplinkPort @@ -17068,7 +17068,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareVirtualDiskExecute( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareVirtualDisk @@ -17244,7 +17244,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareVirtualMachineExecu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareVirtualMachine @@ -17420,7 +17420,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareVirtualMachineSnaps localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareVirtualMachineSnapshot @@ -17596,7 +17596,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareVirtualNetworkInter localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareVirtualNetworkInterface @@ -17772,7 +17772,7 @@ func (a *VirtualizationApiService) UpdateVirtualizationVmwareVirtualSwitchExecut localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.virtualizationVmwareVirtualSwitch diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_vmedia.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_vmedia.go index ca3d1135ae..8fad50994f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_vmedia.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_vmedia.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *VmediaApiService) CreateVmediaPolicyExecute(r ApiCreateVmediaPolicyRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vmediaPolicy @@ -777,52 +777,52 @@ func (a *VmediaApiService) GetVmediaPolicyInventoryListExecute(r ApiGetVmediaPol localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1052,52 +1052,52 @@ func (a *VmediaApiService) GetVmediaPolicyListExecute(r ApiGetVmediaPolicyListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1288,7 +1288,7 @@ func (a *VmediaApiService) PatchVmediaPolicyExecute(r ApiPatchVmediaPolicyReques localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vmediaPolicy @@ -1464,7 +1464,7 @@ func (a *VmediaApiService) UpdateVmediaPolicyExecute(r ApiUpdateVmediaPolicyRequ localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vmediaPolicy diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_vmrc.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_vmrc.go index fd5312e70f..3127fa67ab 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_vmrc.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_vmrc.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *VmrcApiService) CreateVmrcConsoleExecute(r ApiCreateVmrcConsoleRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vmrcConsole @@ -481,52 +481,52 @@ func (a *VmrcApiService) GetVmrcConsoleListExecute(r ApiGetVmrcConsoleListReques localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -717,7 +717,7 @@ func (a *VmrcApiService) PatchVmrcConsoleExecute(r ApiPatchVmrcConsoleRequest) ( localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vmrcConsole @@ -893,7 +893,7 @@ func (a *VmrcApiService) UpdateVmrcConsoleExecute(r ApiUpdateVmrcConsoleRequest) localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vmrcConsole diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_vnic.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_vnic.go index dfa079f2d2..b9e30ece6f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_vnic.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_vnic.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *VnicApiService) CreateVnicEthAdapterPolicyExecute(r ApiCreateVnicEthAda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicEthAdapterPolicy @@ -291,10 +291,10 @@ func (a *VnicApiService) CreateVnicEthIfExecute(r ApiCreateVnicEthIfRequest) (*V localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicEthIf @@ -473,10 +473,10 @@ func (a *VnicApiService) CreateVnicEthNetworkPolicyExecute(r ApiCreateVnicEthNet localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicEthNetworkPolicy @@ -655,10 +655,10 @@ func (a *VnicApiService) CreateVnicEthQosPolicyExecute(r ApiCreateVnicEthQosPoli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicEthQosPolicy @@ -837,10 +837,10 @@ func (a *VnicApiService) CreateVnicFcAdapterPolicyExecute(r ApiCreateVnicFcAdapt localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicFcAdapterPolicy @@ -1019,10 +1019,10 @@ func (a *VnicApiService) CreateVnicFcIfExecute(r ApiCreateVnicFcIfRequest) (*Vni localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicFcIf @@ -1201,10 +1201,10 @@ func (a *VnicApiService) CreateVnicFcNetworkPolicyExecute(r ApiCreateVnicFcNetwo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicFcNetworkPolicy @@ -1383,10 +1383,10 @@ func (a *VnicApiService) CreateVnicFcQosPolicyExecute(r ApiCreateVnicFcQosPolicy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicFcQosPolicy @@ -1565,10 +1565,10 @@ func (a *VnicApiService) CreateVnicIscsiAdapterPolicyExecute(r ApiCreateVnicIscs localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicIscsiAdapterPolicy @@ -1747,10 +1747,10 @@ func (a *VnicApiService) CreateVnicIscsiBootPolicyExecute(r ApiCreateVnicIscsiBo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicIscsiBootPolicy @@ -1929,10 +1929,10 @@ func (a *VnicApiService) CreateVnicIscsiStaticTargetPolicyExecute(r ApiCreateVni localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicIscsiStaticTargetPolicy @@ -2111,10 +2111,10 @@ func (a *VnicApiService) CreateVnicLanConnectivityPolicyExecute(r ApiCreateVnicL localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicLanConnectivityPolicy @@ -2293,10 +2293,10 @@ func (a *VnicApiService) CreateVnicSanConnectivityPolicyExecute(r ApiCreateVnicS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicSanConnectivityPolicy @@ -2475,10 +2475,10 @@ func (a *VnicApiService) CreateVnicVhbaTemplateExecute(r ApiCreateVnicVhbaTempla localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicVhbaTemplate @@ -2657,10 +2657,10 @@ func (a *VnicApiService) CreateVnicVnicTemplateExecute(r ApiCreateVnicVnicTempla localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vnicVnicTemplate @@ -5313,52 +5313,52 @@ func (a *VnicApiService) GetVnicEthAdapterPolicyInventoryListExecute(r ApiGetVni localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -5588,52 +5588,52 @@ func (a *VnicApiService) GetVnicEthAdapterPolicyListExecute(r ApiGetVnicEthAdapt localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6171,52 +6171,52 @@ func (a *VnicApiService) GetVnicEthIfInventoryListExecute(r ApiGetVnicEthIfInven localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -6446,52 +6446,52 @@ func (a *VnicApiService) GetVnicEthIfListExecute(r ApiGetVnicEthIfListRequest) ( localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7029,52 +7029,52 @@ func (a *VnicApiService) GetVnicEthNetworkPolicyInventoryListExecute(r ApiGetVni localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7304,52 +7304,52 @@ func (a *VnicApiService) GetVnicEthNetworkPolicyListExecute(r ApiGetVnicEthNetwo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7887,52 +7887,52 @@ func (a *VnicApiService) GetVnicEthQosPolicyInventoryListExecute(r ApiGetVnicEth localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8162,52 +8162,52 @@ func (a *VnicApiService) GetVnicEthQosPolicyListExecute(r ApiGetVnicEthQosPolicy localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8591,52 +8591,52 @@ func (a *VnicApiService) GetVnicEthVethInventoryListExecute(r ApiGetVnicEthVethI localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9020,52 +9020,52 @@ func (a *VnicApiService) GetVnicEthVnicInventoryListExecute(r ApiGetVnicEthVnicI localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9603,52 +9603,52 @@ func (a *VnicApiService) GetVnicFcAdapterPolicyInventoryListExecute(r ApiGetVnic localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9878,52 +9878,52 @@ func (a *VnicApiService) GetVnicFcAdapterPolicyListExecute(r ApiGetVnicFcAdapter localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10461,52 +10461,52 @@ func (a *VnicApiService) GetVnicFcIfInventoryListExecute(r ApiGetVnicFcIfInvento localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10736,52 +10736,52 @@ func (a *VnicApiService) GetVnicFcIfListExecute(r ApiGetVnicFcIfListRequest) (*V localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11319,52 +11319,52 @@ func (a *VnicApiService) GetVnicFcNetworkPolicyInventoryListExecute(r ApiGetVnic localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11594,52 +11594,52 @@ func (a *VnicApiService) GetVnicFcNetworkPolicyListExecute(r ApiGetVnicFcNetwork localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12177,52 +12177,52 @@ func (a *VnicApiService) GetVnicFcQosPolicyInventoryListExecute(r ApiGetVnicFcQo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12452,52 +12452,52 @@ func (a *VnicApiService) GetVnicFcQosPolicyListExecute(r ApiGetVnicFcQosPolicyLi localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12881,52 +12881,52 @@ func (a *VnicApiService) GetVnicFcVethInventoryListExecute(r ApiGetVnicFcVethInv localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13310,52 +13310,52 @@ func (a *VnicApiService) GetVnicFcVhbaPolicyInventoryListExecute(r ApiGetVnicFcV localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13893,52 +13893,52 @@ func (a *VnicApiService) GetVnicIscsiAdapterPolicyInventoryListExecute(r ApiGetV localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14168,52 +14168,52 @@ func (a *VnicApiService) GetVnicIscsiAdapterPolicyListExecute(r ApiGetVnicIscsiA localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14751,52 +14751,52 @@ func (a *VnicApiService) GetVnicIscsiBootPolicyInventoryListExecute(r ApiGetVnic localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15026,52 +15026,52 @@ func (a *VnicApiService) GetVnicIscsiBootPolicyListExecute(r ApiGetVnicIscsiBoot localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15609,52 +15609,52 @@ func (a *VnicApiService) GetVnicIscsiStaticTargetPolicyInventoryListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15884,52 +15884,52 @@ func (a *VnicApiService) GetVnicIscsiStaticTargetPolicyListExecute(r ApiGetVnicI localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16467,52 +16467,52 @@ func (a *VnicApiService) GetVnicLanConnectivityPolicyInventoryListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16742,52 +16742,52 @@ func (a *VnicApiService) GetVnicLanConnectivityPolicyListExecute(r ApiGetVnicLan localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17171,52 +17171,52 @@ func (a *VnicApiService) GetVnicLcpStatusListExecute(r ApiGetVnicLcpStatusListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17754,52 +17754,52 @@ func (a *VnicApiService) GetVnicSanConnectivityPolicyInventoryListExecute(r ApiG localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18029,52 +18029,52 @@ func (a *VnicApiService) GetVnicSanConnectivityPolicyListExecute(r ApiGetVnicSan localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18458,52 +18458,52 @@ func (a *VnicApiService) GetVnicScpStatusListExecute(r ApiGetVnicScpStatusListRe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18887,52 +18887,52 @@ func (a *VnicApiService) GetVnicVhbaTemplateListExecute(r ApiGetVnicVhbaTemplate localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19316,52 +19316,52 @@ func (a *VnicApiService) GetVnicVnicTemplateListExecute(r ApiGetVnicVnicTemplate localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -19552,7 +19552,7 @@ func (a *VnicApiService) PatchVnicEthAdapterPolicyExecute(r ApiPatchVnicEthAdapt localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicEthAdapterPolicy @@ -19728,7 +19728,7 @@ func (a *VnicApiService) PatchVnicEthIfExecute(r ApiPatchVnicEthIfRequest) (*Vni localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicEthIf @@ -19904,7 +19904,7 @@ func (a *VnicApiService) PatchVnicEthNetworkPolicyExecute(r ApiPatchVnicEthNetwo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicEthNetworkPolicy @@ -20080,7 +20080,7 @@ func (a *VnicApiService) PatchVnicEthQosPolicyExecute(r ApiPatchVnicEthQosPolicy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicEthQosPolicy @@ -20256,7 +20256,7 @@ func (a *VnicApiService) PatchVnicFcAdapterPolicyExecute(r ApiPatchVnicFcAdapter localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicFcAdapterPolicy @@ -20432,7 +20432,7 @@ func (a *VnicApiService) PatchVnicFcIfExecute(r ApiPatchVnicFcIfRequest) (*VnicF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicFcIf @@ -20608,7 +20608,7 @@ func (a *VnicApiService) PatchVnicFcNetworkPolicyExecute(r ApiPatchVnicFcNetwork localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicFcNetworkPolicy @@ -20784,7 +20784,7 @@ func (a *VnicApiService) PatchVnicFcQosPolicyExecute(r ApiPatchVnicFcQosPolicyRe localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicFcQosPolicy @@ -20960,7 +20960,7 @@ func (a *VnicApiService) PatchVnicIscsiAdapterPolicyExecute(r ApiPatchVnicIscsiA localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicIscsiAdapterPolicy @@ -21136,7 +21136,7 @@ func (a *VnicApiService) PatchVnicIscsiBootPolicyExecute(r ApiPatchVnicIscsiBoot localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicIscsiBootPolicy @@ -21312,7 +21312,7 @@ func (a *VnicApiService) PatchVnicIscsiStaticTargetPolicyExecute(r ApiPatchVnicI localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicIscsiStaticTargetPolicy @@ -21488,7 +21488,7 @@ func (a *VnicApiService) PatchVnicLanConnectivityPolicyExecute(r ApiPatchVnicLan localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicLanConnectivityPolicy @@ -21664,7 +21664,7 @@ func (a *VnicApiService) PatchVnicSanConnectivityPolicyExecute(r ApiPatchVnicSan localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicSanConnectivityPolicy @@ -21840,7 +21840,7 @@ func (a *VnicApiService) PatchVnicVhbaTemplateExecute(r ApiPatchVnicVhbaTemplate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicVhbaTemplate @@ -22016,7 +22016,7 @@ func (a *VnicApiService) PatchVnicVnicTemplateExecute(r ApiPatchVnicVnicTemplate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicVnicTemplate @@ -22192,7 +22192,7 @@ func (a *VnicApiService) UpdateVnicEthAdapterPolicyExecute(r ApiUpdateVnicEthAda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicEthAdapterPolicy @@ -22368,7 +22368,7 @@ func (a *VnicApiService) UpdateVnicEthIfExecute(r ApiUpdateVnicEthIfRequest) (*V localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicEthIf @@ -22544,7 +22544,7 @@ func (a *VnicApiService) UpdateVnicEthNetworkPolicyExecute(r ApiUpdateVnicEthNet localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicEthNetworkPolicy @@ -22720,7 +22720,7 @@ func (a *VnicApiService) UpdateVnicEthQosPolicyExecute(r ApiUpdateVnicEthQosPoli localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicEthQosPolicy @@ -22896,7 +22896,7 @@ func (a *VnicApiService) UpdateVnicFcAdapterPolicyExecute(r ApiUpdateVnicFcAdapt localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicFcAdapterPolicy @@ -23072,7 +23072,7 @@ func (a *VnicApiService) UpdateVnicFcIfExecute(r ApiUpdateVnicFcIfRequest) (*Vni localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicFcIf @@ -23248,7 +23248,7 @@ func (a *VnicApiService) UpdateVnicFcNetworkPolicyExecute(r ApiUpdateVnicFcNetwo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicFcNetworkPolicy @@ -23424,7 +23424,7 @@ func (a *VnicApiService) UpdateVnicFcQosPolicyExecute(r ApiUpdateVnicFcQosPolicy localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicFcQosPolicy @@ -23600,7 +23600,7 @@ func (a *VnicApiService) UpdateVnicIscsiAdapterPolicyExecute(r ApiUpdateVnicIscs localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicIscsiAdapterPolicy @@ -23776,7 +23776,7 @@ func (a *VnicApiService) UpdateVnicIscsiBootPolicyExecute(r ApiUpdateVnicIscsiBo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicIscsiBootPolicy @@ -23952,7 +23952,7 @@ func (a *VnicApiService) UpdateVnicIscsiStaticTargetPolicyExecute(r ApiUpdateVni localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicIscsiStaticTargetPolicy @@ -24128,7 +24128,7 @@ func (a *VnicApiService) UpdateVnicLanConnectivityPolicyExecute(r ApiUpdateVnicL localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicLanConnectivityPolicy @@ -24304,7 +24304,7 @@ func (a *VnicApiService) UpdateVnicSanConnectivityPolicyExecute(r ApiUpdateVnicS localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicSanConnectivityPolicy @@ -24480,7 +24480,7 @@ func (a *VnicApiService) UpdateVnicVhbaTemplateExecute(r ApiUpdateVnicVhbaTempla localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicVhbaTemplate @@ -24656,7 +24656,7 @@ func (a *VnicApiService) UpdateVnicVnicTemplateExecute(r ApiUpdateVnicVnicTempla localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vnicVnicTemplate diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_vrf.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_vrf.go index e2b803bad0..dafaef1195 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_vrf.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_vrf.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *VrfApiService) CreateVrfVrfExecute(r ApiCreateVrfVrfRequest) (*VrfVrf, localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.vrfVrf @@ -623,52 +623,52 @@ func (a *VrfApiService) GetVrfVrfListExecute(r ApiGetVrfVrfListRequest) (*VrfVrf localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -859,7 +859,7 @@ func (a *VrfApiService) PatchVrfVrfExecute(r ApiPatchVrfVrfRequest) (*VrfVrf, *h localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vrfVrf @@ -1035,7 +1035,7 @@ func (a *VrfApiService) UpdateVrfVrfExecute(r ApiUpdateVrfVrfRequest) (*VrfVrf, localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.vrfVrf diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_workflow.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_workflow.go index 6b2c12ac24..f4f9358949 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_workflow.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_workflow.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *WorkflowApiService) CreateWorkflowAnsibleBatchExecutorExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowAnsibleBatchExecutor @@ -291,10 +291,10 @@ func (a *WorkflowApiService) CreateWorkflowBatchApiExecutorExecute(r ApiCreateWo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowBatchApiExecutor @@ -473,10 +473,10 @@ func (a *WorkflowApiService) CreateWorkflowCatalogItemDefinitionExecute(r ApiCre localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowCatalogItemDefinition @@ -655,10 +655,10 @@ func (a *WorkflowApiService) CreateWorkflowCatalogServiceRequestExecute(r ApiCre localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowCatalogServiceRequest @@ -837,10 +837,10 @@ func (a *WorkflowApiService) CreateWorkflowCustomDataTypeDefinitionExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowCustomDataTypeDefinition @@ -1019,10 +1019,10 @@ func (a *WorkflowApiService) CreateWorkflowErrorResponseHandlerExecute(r ApiCrea localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowErrorResponseHandler @@ -1201,10 +1201,10 @@ func (a *WorkflowApiService) CreateWorkflowPowerShellBatchApiExecutorExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowPowerShellBatchApiExecutor @@ -1383,10 +1383,10 @@ func (a *WorkflowApiService) CreateWorkflowRollbackWorkflowExecute(r ApiCreateWo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowRollbackWorkflow @@ -1565,10 +1565,10 @@ func (a *WorkflowApiService) CreateWorkflowServiceItemActionDefinitionExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemActionDefinition @@ -1747,10 +1747,10 @@ func (a *WorkflowApiService) CreateWorkflowServiceItemActionInstanceExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemActionInstance @@ -1929,10 +1929,10 @@ func (a *WorkflowApiService) CreateWorkflowServiceItemDefinitionExecute(r ApiCre localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemDefinition @@ -2111,10 +2111,10 @@ func (a *WorkflowApiService) CreateWorkflowServiceItemHealthCheckDefinitionExecu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemHealthCheckDefinition @@ -2293,10 +2293,10 @@ func (a *WorkflowApiService) CreateWorkflowServiceItemInstanceExecute(r ApiCreat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemInstance @@ -2475,10 +2475,10 @@ func (a *WorkflowApiService) CreateWorkflowServiceItemOutputExecute(r ApiCreateW localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemOutput @@ -2657,10 +2657,10 @@ func (a *WorkflowApiService) CreateWorkflowSshBatchExecutorExecute(r ApiCreateWo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowSshBatchExecutor @@ -2839,10 +2839,10 @@ func (a *WorkflowApiService) CreateWorkflowTaskDefinitionExecute(r ApiCreateWork localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowTaskDefinition @@ -3021,10 +3021,10 @@ func (a *WorkflowApiService) CreateWorkflowTemplateEvaluationExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowTemplateEvaluation @@ -3203,10 +3203,10 @@ func (a *WorkflowApiService) CreateWorkflowTemplateParserExecute(r ApiCreateWork localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowTemplateParser @@ -3385,10 +3385,10 @@ func (a *WorkflowApiService) CreateWorkflowUiDisplayMetadataExecute(r ApiCreateW localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowUiDisplayMetadata @@ -3567,10 +3567,10 @@ func (a *WorkflowApiService) CreateWorkflowWorkflowDefinitionExecute(r ApiCreate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowWorkflowDefinition @@ -3749,10 +3749,10 @@ func (a *WorkflowApiService) CreateWorkflowWorkflowInfoExecute(r ApiCreateWorkfl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workflowWorkflowInfo @@ -6819,52 +6819,52 @@ func (a *WorkflowApiService) GetWorkflowAnsibleBatchExecutorListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7248,52 +7248,52 @@ func (a *WorkflowApiService) GetWorkflowBatchApiExecutorListExecute(r ApiGetWork localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -7831,52 +7831,52 @@ func (a *WorkflowApiService) GetWorkflowCatalogItemDefinitionListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8106,52 +8106,52 @@ func (a *WorkflowApiService) GetWorkflowCatalogListExecute(r ApiGetWorkflowCatal localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8535,52 +8535,52 @@ func (a *WorkflowApiService) GetWorkflowCatalogServiceRequestListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -8964,52 +8964,52 @@ func (a *WorkflowApiService) GetWorkflowCustomDataTypeDefinitionListExecute(r Ap localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9393,52 +9393,52 @@ func (a *WorkflowApiService) GetWorkflowErrorResponseHandlerListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -9822,52 +9822,52 @@ func (a *WorkflowApiService) GetWorkflowPowerShellBatchApiExecutorListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10251,52 +10251,52 @@ func (a *WorkflowApiService) GetWorkflowRollbackWorkflowListExecute(r ApiGetWork localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -10680,52 +10680,52 @@ func (a *WorkflowApiService) GetWorkflowServiceItemActionDefinitionListExecute(r localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11109,52 +11109,52 @@ func (a *WorkflowApiService) GetWorkflowServiceItemActionInstanceListExecute(r A localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11538,52 +11538,52 @@ func (a *WorkflowApiService) GetWorkflowServiceItemAttributeListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -11967,52 +11967,52 @@ func (a *WorkflowApiService) GetWorkflowServiceItemDefinitionListExecute(r ApiGe localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12396,52 +12396,52 @@ func (a *WorkflowApiService) GetWorkflowServiceItemHealthCheckDefinitionListExec localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -12825,52 +12825,52 @@ func (a *WorkflowApiService) GetWorkflowServiceItemHealthCheckExecutionListExecu localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13254,52 +13254,52 @@ func (a *WorkflowApiService) GetWorkflowServiceItemInstanceListExecute(r ApiGetW localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -13683,52 +13683,52 @@ func (a *WorkflowApiService) GetWorkflowServiceItemOutputListExecute(r ApiGetWor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14112,52 +14112,52 @@ func (a *WorkflowApiService) GetWorkflowSshBatchExecutorListExecute(r ApiGetWork localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14541,52 +14541,52 @@ func (a *WorkflowApiService) GetWorkflowTaskDebugLogListExecute(r ApiGetWorkflow localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -14970,52 +14970,52 @@ func (a *WorkflowApiService) GetWorkflowTaskDefinitionListExecute(r ApiGetWorkfl localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15399,52 +15399,52 @@ func (a *WorkflowApiService) GetWorkflowTaskInfoListExecute(r ApiGetWorkflowTask localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -15828,52 +15828,52 @@ func (a *WorkflowApiService) GetWorkflowTaskMetadataListExecute(r ApiGetWorkflow localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16257,52 +16257,52 @@ func (a *WorkflowApiService) GetWorkflowTemplateFunctionMetaListExecute(r ApiGet localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -16686,52 +16686,52 @@ func (a *WorkflowApiService) GetWorkflowUiDisplayMetadataListExecute(r ApiGetWor localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17115,52 +17115,52 @@ func (a *WorkflowApiService) GetWorkflowWorkflowDefinitionListExecute(r ApiGetWo localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17544,52 +17544,52 @@ func (a *WorkflowApiService) GetWorkflowWorkflowInfoListExecute(r ApiGetWorkflow localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -17973,52 +17973,52 @@ func (a *WorkflowApiService) GetWorkflowWorkflowMetadataListExecute(r ApiGetWork localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -18209,7 +18209,7 @@ func (a *WorkflowApiService) PatchWorkflowAnsibleBatchExecutorExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowAnsibleBatchExecutor @@ -18385,7 +18385,7 @@ func (a *WorkflowApiService) PatchWorkflowBatchApiExecutorExecute(r ApiPatchWork localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowBatchApiExecutor @@ -18561,7 +18561,7 @@ func (a *WorkflowApiService) PatchWorkflowCatalogItemDefinitionExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowCatalogItemDefinition @@ -18737,7 +18737,7 @@ func (a *WorkflowApiService) PatchWorkflowCatalogServiceRequestExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowCatalogServiceRequest @@ -18913,7 +18913,7 @@ func (a *WorkflowApiService) PatchWorkflowCustomDataTypeDefinitionExecute(r ApiP localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowCustomDataTypeDefinition @@ -19089,7 +19089,7 @@ func (a *WorkflowApiService) PatchWorkflowErrorResponseHandlerExecute(r ApiPatch localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowErrorResponseHandler @@ -19265,7 +19265,7 @@ func (a *WorkflowApiService) PatchWorkflowPowerShellBatchApiExecutorExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowPowerShellBatchApiExecutor @@ -19441,7 +19441,7 @@ func (a *WorkflowApiService) PatchWorkflowRollbackWorkflowExecute(r ApiPatchWork localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowRollbackWorkflow @@ -19617,7 +19617,7 @@ func (a *WorkflowApiService) PatchWorkflowServiceItemActionDefinitionExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemActionDefinition @@ -19793,7 +19793,7 @@ func (a *WorkflowApiService) PatchWorkflowServiceItemActionInstanceExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemActionInstance @@ -19969,7 +19969,7 @@ func (a *WorkflowApiService) PatchWorkflowServiceItemDefinitionExecute(r ApiPatc localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemDefinition @@ -20145,7 +20145,7 @@ func (a *WorkflowApiService) PatchWorkflowServiceItemHealthCheckDefinitionExecut localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemHealthCheckDefinition @@ -20321,7 +20321,7 @@ func (a *WorkflowApiService) PatchWorkflowServiceItemInstanceExecute(r ApiPatchW localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemInstance @@ -20497,7 +20497,7 @@ func (a *WorkflowApiService) PatchWorkflowServiceItemOutputExecute(r ApiPatchWor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemOutput @@ -20673,7 +20673,7 @@ func (a *WorkflowApiService) PatchWorkflowSshBatchExecutorExecute(r ApiPatchWork localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowSshBatchExecutor @@ -20849,7 +20849,7 @@ func (a *WorkflowApiService) PatchWorkflowTaskDefinitionExecute(r ApiPatchWorkfl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowTaskDefinition @@ -21025,7 +21025,7 @@ func (a *WorkflowApiService) PatchWorkflowTaskInfoExecute(r ApiPatchWorkflowTask localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowTaskInfo @@ -21201,7 +21201,7 @@ func (a *WorkflowApiService) PatchWorkflowUiDisplayMetadataExecute(r ApiPatchWor localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowUiDisplayMetadata @@ -21377,7 +21377,7 @@ func (a *WorkflowApiService) PatchWorkflowWorkflowDefinitionExecute(r ApiPatchWo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowWorkflowDefinition @@ -21553,7 +21553,7 @@ func (a *WorkflowApiService) PatchWorkflowWorkflowInfoExecute(r ApiPatchWorkflow localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowWorkflowInfo @@ -21729,7 +21729,7 @@ func (a *WorkflowApiService) UpdateWorkflowAnsibleBatchExecutorExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowAnsibleBatchExecutor @@ -21905,7 +21905,7 @@ func (a *WorkflowApiService) UpdateWorkflowBatchApiExecutorExecute(r ApiUpdateWo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowBatchApiExecutor @@ -22081,7 +22081,7 @@ func (a *WorkflowApiService) UpdateWorkflowCatalogItemDefinitionExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowCatalogItemDefinition @@ -22257,7 +22257,7 @@ func (a *WorkflowApiService) UpdateWorkflowCatalogServiceRequestExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowCatalogServiceRequest @@ -22433,7 +22433,7 @@ func (a *WorkflowApiService) UpdateWorkflowCustomDataTypeDefinitionExecute(r Api localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowCustomDataTypeDefinition @@ -22609,7 +22609,7 @@ func (a *WorkflowApiService) UpdateWorkflowErrorResponseHandlerExecute(r ApiUpda localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowErrorResponseHandler @@ -22785,7 +22785,7 @@ func (a *WorkflowApiService) UpdateWorkflowPowerShellBatchApiExecutorExecute(r A localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowPowerShellBatchApiExecutor @@ -22961,7 +22961,7 @@ func (a *WorkflowApiService) UpdateWorkflowRollbackWorkflowExecute(r ApiUpdateWo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowRollbackWorkflow @@ -23137,7 +23137,7 @@ func (a *WorkflowApiService) UpdateWorkflowServiceItemActionDefinitionExecute(r localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemActionDefinition @@ -23313,7 +23313,7 @@ func (a *WorkflowApiService) UpdateWorkflowServiceItemActionInstanceExecute(r Ap localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemActionInstance @@ -23489,7 +23489,7 @@ func (a *WorkflowApiService) UpdateWorkflowServiceItemDefinitionExecute(r ApiUpd localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemDefinition @@ -23665,7 +23665,7 @@ func (a *WorkflowApiService) UpdateWorkflowServiceItemHealthCheckDefinitionExecu localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemHealthCheckDefinition @@ -23841,7 +23841,7 @@ func (a *WorkflowApiService) UpdateWorkflowServiceItemInstanceExecute(r ApiUpdat localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemInstance @@ -24017,7 +24017,7 @@ func (a *WorkflowApiService) UpdateWorkflowServiceItemOutputExecute(r ApiUpdateW localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowServiceItemOutput @@ -24193,7 +24193,7 @@ func (a *WorkflowApiService) UpdateWorkflowSshBatchExecutorExecute(r ApiUpdateWo localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowSshBatchExecutor @@ -24369,7 +24369,7 @@ func (a *WorkflowApiService) UpdateWorkflowTaskDefinitionExecute(r ApiUpdateWork localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowTaskDefinition @@ -24545,7 +24545,7 @@ func (a *WorkflowApiService) UpdateWorkflowTaskInfoExecute(r ApiUpdateWorkflowTa localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowTaskInfo @@ -24721,7 +24721,7 @@ func (a *WorkflowApiService) UpdateWorkflowUiDisplayMetadataExecute(r ApiUpdateW localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowUiDisplayMetadata @@ -24897,7 +24897,7 @@ func (a *WorkflowApiService) UpdateWorkflowWorkflowDefinitionExecute(r ApiUpdate localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowWorkflowDefinition @@ -25073,7 +25073,7 @@ func (a *WorkflowApiService) UpdateWorkflowWorkflowInfoExecute(r ApiUpdateWorkfl localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workflowWorkflowInfo diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_workspace.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_workspace.go index cc3be24b58..d62c9acbb7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_workspace.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_workspace.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -109,10 +109,10 @@ func (a *WorkspaceApiService) CreateWorkspaceFolderExecute(r ApiCreateWorkspaceF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } if r.ifNoneMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") } // body params localVarPostBody = r.workspaceFolder @@ -623,52 +623,52 @@ func (a *WorkspaceApiService) GetWorkspaceFolderListExecute(r ApiGetWorkspaceFol localVarFormParams := url.Values{} if r.filter != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "") } else { var defaultValue string = "" r.filter = &defaultValue } if r.orderby != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$orderby", r.orderby, "form", "") } if r.top != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$top", r.top, "form", "") } else { var defaultValue int32 = 100 r.top = &defaultValue } if r.skip != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$skip", r.skip, "form", "") } else { var defaultValue int32 = 0 r.skip = &defaultValue } if r.select_ != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$select", r.select_, "form", "") } else { var defaultValue string = "" r.select_ = &defaultValue } if r.expand != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "") } if r.apply != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$apply", r.apply, "form", "") } if r.count != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$count", r.count, "form", "") } if r.inlinecount != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "$inlinecount", r.inlinecount, "form", "") } else { var defaultValue string = "allpages" r.inlinecount = &defaultValue } if r.at != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "at", r.at, "form", "") } if r.tags != nil { - parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "") + parameterAddToHeaderOrQuery(localVarQueryParams, "tags", r.tags, "form", "") } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -859,7 +859,7 @@ func (a *WorkspaceApiService) PatchWorkspaceFolderExecute(r ApiPatchWorkspaceFol localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workspaceFolder @@ -1035,7 +1035,7 @@ func (a *WorkspaceApiService) UpdateWorkspaceFolderExecute(r ApiUpdateWorkspaceF localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } if r.ifMatch != nil { - parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "") + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") } // body params localVarPostBody = r.workspaceFolder diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/client.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/client.go index fb7813eb31..c2893c140a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/client.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/client.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -43,7 +43,7 @@ var ( queryDescape = strings.NewReplacer("%5B", "[", "%5D", "]") ) -// APIClient manages communication with the Cisco Intersight API v1.0.11-17956 +// APIClient manages communication with the Cisco Intersight API v1.0.11-18012 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration @@ -474,7 +474,7 @@ func parameterValueToString(obj interface{}, key string) string { // parameterAddToHeaderOrQuery adds the provided object to the request header or url query // supporting deep object syntax -func parameterAddToHeaderOrQuery(headerOrQueryParams interface{}, keyPrefix string, obj interface{}, collectionType string) { +func parameterAddToHeaderOrQuery(headerOrQueryParams interface{}, keyPrefix string, obj interface{}, style string, collectionType string) { var v = reflect.ValueOf(obj) var value = "" if v == reflect.ValueOf(nil) { @@ -490,11 +490,11 @@ func parameterAddToHeaderOrQuery(headerOrQueryParams interface{}, keyPrefix stri if err != nil { return } - parameterAddToHeaderOrQuery(headerOrQueryParams, keyPrefix, dataMap, collectionType) + parameterAddToHeaderOrQuery(headerOrQueryParams, keyPrefix, dataMap, style, collectionType) return } if t, ok := obj.(time.Time); ok { - parameterAddToHeaderOrQuery(headerOrQueryParams, keyPrefix, t.Format(time.RFC3339Nano), collectionType) + parameterAddToHeaderOrQuery(headerOrQueryParams, keyPrefix, t.Format(time.RFC3339Nano), style, collectionType) return } value = v.Type().String() + " value" @@ -506,7 +506,11 @@ func parameterAddToHeaderOrQuery(headerOrQueryParams interface{}, keyPrefix stri var lenIndValue = indValue.Len() for i := 0; i < lenIndValue; i++ { var arrayValue = indValue.Index(i) - parameterAddToHeaderOrQuery(headerOrQueryParams, keyPrefix, arrayValue.Interface(), collectionType) + var keyPrefixForCollectionType = keyPrefix + if style == "deepObject" { + keyPrefixForCollectionType = keyPrefix + "[" + strconv.Itoa(i) + "]" + } + parameterAddToHeaderOrQuery(headerOrQueryParams, keyPrefixForCollectionType, arrayValue.Interface(), style, collectionType) } return @@ -518,14 +522,14 @@ func parameterAddToHeaderOrQuery(headerOrQueryParams interface{}, keyPrefix stri iter := indValue.MapRange() for iter.Next() { k, v := iter.Key(), iter.Value() - parameterAddToHeaderOrQuery(headerOrQueryParams, fmt.Sprintf("%s[%s]", keyPrefix, k.String()), v.Interface(), collectionType) + parameterAddToHeaderOrQuery(headerOrQueryParams, fmt.Sprintf("%s[%s]", keyPrefix, k.String()), v.Interface(), style, collectionType) } return case reflect.Interface: fallthrough case reflect.Ptr: - parameterAddToHeaderOrQuery(headerOrQueryParams, keyPrefix, v.Elem().Interface(), collectionType) + parameterAddToHeaderOrQuery(headerOrQueryParams, keyPrefix, v.Elem().Interface(), style, collectionType) return case reflect.Int, reflect.Int8, reflect.Int16, @@ -846,18 +850,6 @@ func addFile(w *multipart.Writer, fieldName, path string) error { return err } -// Prevent trying to import "fmt" -func reportError(format string, a ...interface{}) error { - return fmt.Errorf(format, a...) -} - -// A wrapper for strict JSON decoding -func newStrictDecoder(data []byte) *json.Decoder { - dec := json.NewDecoder(bytes.NewBuffer(data)) - dec.DisallowUnknownFields() - return dec -} - // Set request body from an interface{} func setBody(body interface{}, contentType string) (bodyBuf *bytes.Buffer, err error) { if bodyBuf == nil { diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/configuration.go index 952116e19e..583296d80e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -96,7 +96,7 @@ type Configuration struct { func NewConfiguration() *Configuration { cfg := &Configuration{ DefaultHeader: make(map[string]string), - UserAgent: "OpenAPI-Generator/1.0.11.17956/go", + UserAgent: "OpenAPI-Generator/1.0.11.18012/go", Debug: false, Servers: ServerConfigurations{ { diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_abstract_audit_record.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_abstract_audit_record.go index 72351a8720..11ad6d1faa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_abstract_audit_record.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_abstract_audit_record.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_audit_record.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_audit_record.go index bb9642bb9b..178eac4377 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_audit_record.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_audit_record.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -32,7 +32,7 @@ type AaaAuditRecord struct { // The user-friendly label for the object type that was changed. AffectedObjectTypeLabel *string `json:"AffectedObjectTypeLabel,omitempty"` // The email of the associated user that made the change. In case the user is later deleted, we still have some reference to the information. - Email *string `json:"Email,omitempty"` + Email *string "json:\"Email,omitempty\" validate:\"regexp=^$|^[a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$\"" // The instance id of AuditRecordLocal, which is used to identify if the comming AuditRecordLocal was already processed before. InstId *string `json:"InstId,omitempty"` // The sessionId in which the user made the change. In case that the session is later deleted, we still have some reference to the information. @@ -599,7 +599,7 @@ func (o *AaaAuditRecord) UnmarshalJSON(data []byte) (err error) { // The user-friendly label for the object type that was changed. AffectedObjectTypeLabel *string `json:"AffectedObjectTypeLabel,omitempty"` // The email of the associated user that made the change. In case the user is later deleted, we still have some reference to the information. - Email *string `json:"Email,omitempty"` + Email *string "json:\"Email,omitempty\" validate:\"regexp=^$|^[a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$\"" // The instance id of AuditRecordLocal, which is used to identify if the comming AuditRecordLocal was already processed before. InstId *string `json:"InstId,omitempty"` // The sessionId in which the user made the change. In case that the session is later deleted, we still have some reference to the information. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_audit_record_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_audit_record_list.go index 40ed1845d8..155ce0e5b0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_audit_record_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_audit_record_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_audit_record_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_audit_record_response.go index 5588b79881..7d1a915569 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_audit_record_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_audit_record_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_retention_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_retention_config.go index bd8d439834..1de09b594f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_retention_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_retention_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_retention_config_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_retention_config_list.go index 02ccda0582..29366baa40 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_retention_config_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_retention_config_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_retention_config_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_retention_config_response.go index 4f254d24d6..3263a924c9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_retention_config_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_retention_config_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_retention_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_retention_policy.go index 0a75b43924..b59e478473 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_retention_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_retention_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_retention_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_retention_policy_list.go index 858caf67bc..a78d667852 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_retention_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_retention_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_retention_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_retention_policy_response.go index ef969f11df..864d568cb5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_retention_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_retention_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_user_agent.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_user_agent.go index 0500c6efc7..d4f1c9e43a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_user_agent.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_aaa_user_agent.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_address_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_address_type.go index 2054a45058..f03042c2b6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_address_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_address_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_configuration_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_configuration_type.go index 6475a24ce1..34189d1233 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_configuration_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_configuration_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_ip_address.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_ip_address.go index 6cf3acba0e..4b2ac7cb04 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_ip_address.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_ip_address.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,11 +29,11 @@ type AccessIpAddress struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IPv4 Address leased to this Server Profile for In-Band Deployment. - Ipv4Address *string `json:"Ipv4Address,omitempty"` + Ipv4Address *string `json:"Ipv4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IPv4 Address leased to this Server Profile for In-Band Deployment. - Ipv6Address *string `json:"Ipv6Address,omitempty"` + Ipv6Address *string `json:"Ipv6Address,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // IPv4 Address leased to this Server Profile for Out-Of-Band deployment. - OobIpv4Address *string `json:"OobIpv4Address,omitempty"` + OobIpv4Address *string `json:"OobIpv4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` Ipv4Lease NullableIppoolIpLeaseRelationship `json:"Ipv4Lease,omitempty"` Ipv6Lease NullableIppoolIpLeaseRelationship `json:"Ipv6Lease,omitempty"` OobIpv4Lease NullableIppoolIpLeaseRelationship `json:"OobIpv4Lease,omitempty"` @@ -495,11 +495,11 @@ func (o *AccessIpAddress) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IPv4 Address leased to this Server Profile for In-Band Deployment. - Ipv4Address *string `json:"Ipv4Address,omitempty"` + Ipv4Address *string `json:"Ipv4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IPv4 Address leased to this Server Profile for In-Band Deployment. - Ipv6Address *string `json:"Ipv6Address,omitempty"` + Ipv6Address *string `json:"Ipv6Address,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // IPv4 Address leased to this Server Profile for Out-Of-Band deployment. - OobIpv4Address *string `json:"OobIpv4Address,omitempty"` + OobIpv4Address *string `json:"OobIpv4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` Ipv4Lease NullableIppoolIpLeaseRelationship `json:"Ipv4Lease,omitempty"` Ipv6Lease NullableIppoolIpLeaseRelationship `json:"Ipv6Lease,omitempty"` OobIpv4Lease NullableIppoolIpLeaseRelationship `json:"OobIpv4Lease,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_ip_address_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_ip_address_list.go index b72dcb6a30..0a4458b8bb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_ip_address_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_ip_address_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_ip_address_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_ip_address_response.go index f66008df4e..aedfa5c587 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_ip_address_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_ip_address_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_policy.go index 96177b4735..d413f35371 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_policy_inventory.go index 12873d9174..1a10b59716 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_policy_inventory_list.go index 76c0f133b2..1e98d19ea1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_policy_inventory_response.go index 64a17ddc76..0c8f6b3015 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_policy_list.go index f4fa543d47..71c535edbc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_policy_response.go index 58fe00e713..e8c14bdec0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_access_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_adapter_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_adapter_config.go index 7f6380d37a..da4f2d18d6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_adapter_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_adapter_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -34,7 +34,7 @@ type AdapterAdapterConfig struct { PhysicalNicModeSettings NullableAdapterPhysicalNicModeSettings `json:"PhysicalNicModeSettings,omitempty"` PortChannelSettings NullableAdapterPortChannelSettings `json:"PortChannelSettings,omitempty"` // PCIe slot where the VIC adapter is installed. Supported values are (1-15) and MLOM. - SlotId *string `json:"SlotId,omitempty"` + SlotId *string `json:"SlotId,omitempty" validate:"regexp=^([1-9]|1[0-5]|MLOM)$"` AdditionalProperties map[string]interface{} } @@ -463,7 +463,7 @@ func (o *AdapterAdapterConfig) UnmarshalJSON(data []byte) (err error) { PhysicalNicModeSettings NullableAdapterPhysicalNicModeSettings `json:"PhysicalNicModeSettings,omitempty"` PortChannelSettings NullableAdapterPortChannelSettings `json:"PortChannelSettings,omitempty"` // PCIe slot where the VIC adapter is installed. Supported values are (1-15) and MLOM. - SlotId *string `json:"SlotId,omitempty"` + SlotId *string `json:"SlotId,omitempty" validate:"regexp=^([1-9]|1[0-5]|MLOM)$"` } varAdapterAdapterConfigWithoutEmbeddedStruct := AdapterAdapterConfigWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_config_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_config_policy.go index 4451e310e2..39545527f6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_config_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_config_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_config_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_config_policy_list.go index ea973bd124..570afed2c5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_config_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_config_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_config_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_config_policy_response.go index ad1b642f96..c70ba0ac98 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_config_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_config_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_dce_interface_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_dce_interface_settings.go index 688ec06f1f..4b881f3e70 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_dce_interface_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_dce_interface_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_eth_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_eth_settings.go index d5a31e953d..3b36d15e51 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_eth_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_eth_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_ext_eth_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_ext_eth_interface.go index e92b3708f2..dc0e2c9557 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_ext_eth_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_ext_eth_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_ext_eth_interface_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_ext_eth_interface_list.go index a84e2697d3..ad73990d40 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_ext_eth_interface_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_ext_eth_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_ext_eth_interface_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_ext_eth_interface_relationship.go index d237459909..febd9a863f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_ext_eth_interface_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_ext_eth_interface_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_ext_eth_interface_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_ext_eth_interface_response.go index 138320868d..01888f87c4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_ext_eth_interface_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_ext_eth_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_fc_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_fc_settings.go index bfbf6c0c51..2839f9ed11 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_fc_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_fc_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_eth_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_eth_interface.go index 83bf115d65..fdc3bf3884 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_eth_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_eth_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_eth_interface_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_eth_interface_list.go index be852bfaa5..f143f5baa3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_eth_interface_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_eth_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_eth_interface_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_eth_interface_relationship.go index fb6f725220..671c5408a6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_eth_interface_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_eth_interface_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_eth_interface_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_eth_interface_response.go index 2e9cf2751a..5e8ef5e19e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_eth_interface_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_eth_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_fc_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_fc_interface.go index 812a71281c..6e3d40314a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_fc_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_fc_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_fc_interface_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_fc_interface_list.go index e36bd6fdae..811d593721 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_fc_interface_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_fc_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_fc_interface_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_fc_interface_relationship.go index 7e8fb02040..d00d3f695f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_fc_interface_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_fc_interface_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_fc_interface_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_fc_interface_response.go index 33281cee1c..3fa281639d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_fc_interface_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_fc_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_iscsi_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_iscsi_interface.go index 110984c463..3ba8b9445d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_iscsi_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_iscsi_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_iscsi_interface_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_iscsi_interface_list.go index de69bad4c0..ed87916afa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_iscsi_interface_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_iscsi_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_iscsi_interface_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_iscsi_interface_relationship.go index a56c374d80..a70e92f99c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_iscsi_interface_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_iscsi_interface_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_iscsi_interface_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_iscsi_interface_response.go index 43b79879bd..d5ca0ab3bc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_iscsi_interface_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_host_iscsi_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_physical_nic_mode_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_physical_nic_mode_settings.go index bc7d6bcc20..f0ae7b92d6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_physical_nic_mode_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_physical_nic_mode_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_port_channel_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_port_channel_settings.go index a0536fd278..1ed21b87aa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_port_channel_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_port_channel_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit.go index de041e8f0c..2ebaf54a18 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_expander.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_expander.go index 5da9b960bb..eac130e421 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_expander.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_expander.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_expander_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_expander_list.go index 4353f2d638..a6556a71bf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_expander_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_expander_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_expander_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_expander_relationship.go index ced75856df..707088edc1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_expander_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_expander_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_expander_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_expander_response.go index a2642c4f2c..1070f23cf8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_expander_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_expander_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_list.go index 09146feb72..2f669f45a6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_relationship.go index 06e352b409..dfb1af2218 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_response.go index b246a3392b..b3f604dc06 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_adapter_unit_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_aci_pod.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_aci_pod.go index 8d02261df3..12dcae7719 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_aci_pod.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_aci_pod.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_aci_pod_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_aci_pod_list.go index bdd351d65b..85ecad7fd9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_aci_pod_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_aci_pod_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_aci_pod_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_aci_pod_response.go index b48d0a9eb4..70a9e6ab3e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_aci_pod_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_aci_pod_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application.go index 60e3a62841..a5516c0f83 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application_endpoint_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application_endpoint_group.go index 4712ed6d0c..b96d079dd0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application_endpoint_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application_endpoint_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application_endpoint_group_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application_endpoint_group_list.go index 8a918c7b1d..0fb66d5dd2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application_endpoint_group_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application_endpoint_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application_endpoint_group_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application_endpoint_group_response.go index ce7153f8a2..add17227c1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application_endpoint_group_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application_endpoint_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application_list.go index af71a9838f..d462220b1e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application_relationship.go index 35fabebfb4..d18da9aa8b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application_response.go index 44d586133f..12509015e1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_application_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_bridge_domain.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_bridge_domain.go index 12970ad4d9..0c4817637b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_bridge_domain.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_bridge_domain.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_bridge_domain_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_bridge_domain_list.go index e387f91371..7c75ff7305 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_bridge_domain_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_bridge_domain_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_bridge_domain_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_bridge_domain_relationship.go index 5f6f1b2ae3..d9913d2046 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_bridge_domain_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_bridge_domain_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_bridge_domain_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_bridge_domain_response.go index 549c8ccb56..c0f81b7b8d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_bridge_domain_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_bridge_domain_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_external_routed_layer_three_domain.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_external_routed_layer_three_domain.go index 73a3b40793..bdec9170a8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_external_routed_layer_three_domain.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_external_routed_layer_three_domain.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_external_routed_layer_three_domain_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_external_routed_layer_three_domain_list.go index c56b990010..4761fe17c6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_external_routed_layer_three_domain_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_external_routed_layer_three_domain_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_external_routed_layer_three_domain_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_external_routed_layer_three_domain_response.go index 29a460512e..e6feb22300 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_external_routed_layer_three_domain_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_external_routed_layer_three_domain_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node.go index 6709cb6eb8..64b729d8a7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_details.go index e42bcf9476..935aab77f3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_interface.go index 65f6fc8bc8..d1da5a021e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_interface_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_interface_list.go index a8a118f66b..8d8e28edd1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_interface_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_interface_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_interface_response.go index 4b00362cfc..3ea7349a04 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_interface_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_list.go index aa69477d01..6688aa8883 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_relationship.go index 0ef216bb58..d48774d455 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_response.go index 8b5e4b9f19..ea8204a191 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_fabric_leaf_node_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_inventory_entity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_inventory_entity.go index 55575d9087..443a265cee 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_inventory_entity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_inventory_entity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_out.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_out.go index 5b3cb17a43..47a2f8301d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_out.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_out.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_out_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_out_list.go index a78eb4717c..c2a0a5b5f0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_out_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_out_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_out_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_out_response.go index c24321c754..2ac5b0423c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_out_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_out_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_subnet.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_subnet.go index abdae77bcd..ec5747d6b5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_subnet.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_subnet.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_subnet_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_subnet_list.go index 79c93df0d8..6d596ea8ab 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_subnet_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_subnet_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_subnet_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_subnet_response.go index e0cc0af7b7..57c1046ccd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_subnet_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_subnet_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_tenant.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_tenant.go index 6951e686ab..d56c85ba05 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_tenant.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_tenant.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_tenant_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_tenant_list.go index 89db6658bd..092870d241 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_tenant_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_tenant_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_tenant_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_tenant_relationship.go index 235a6924f2..396353ddeb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_tenant_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_tenant_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_tenant_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_tenant_response.go index 8686352934..e914abbaa7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_tenant_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_tenant_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_vpc_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_vpc_group.go index e4d1d6e7c3..edf85ad7e6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_vpc_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_vpc_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_vpc_group_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_vpc_group_list.go index bf911358d7..58172e2ff7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_vpc_group_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_vpc_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_vpc_group_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_vpc_group_response.go index c23792b27b..8dd26cd9f6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_vpc_group_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_vpc_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_vrfs.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_vrfs.go index 5c726ff4b7..7a2db51f4b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_vrfs.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_vrfs.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_vrfs_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_vrfs_list.go index 02fc448a45..16e5716318 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_vrfs_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_vrfs_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_vrfs_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_vrfs_response.go index 1697c7f126..c63e8d2d06 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_vrfs_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_apic_vrfs_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_api_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_api_status.go index 3e22d04469..34301d5e63 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_api_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_api_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_op_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_op_status.go index ffe347844a..3044a73e54 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_op_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_op_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_op_status_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_op_status_list.go index 461d2993da..d5eaa98366 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_op_status_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_op_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_op_status_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_op_status_relationship.go index a51b903fd1..026972719d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_op_status_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_op_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_op_status_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_op_status_response.go index d01d35a50e..cd92fce93b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_op_status_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_op_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_status.go index 3d1d1f63c8..0ab778d749 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_status_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_status_list.go index 8a9bfe5f3e..79920e643b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_status_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_status_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_status_relationship.go index 56ebd950c0..a5105de134 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_status_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_status_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_status_response.go index 8d32b6fbf4..1b716414ec 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_status_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_app_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_auto_rma_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_auto_rma_policy.go index 18241802e8..37b257da7e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_auto_rma_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_auto_rma_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_auto_rma_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_auto_rma_policy_list.go index 8cba26ea6a..c2610612fe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_auto_rma_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_auto_rma_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_auto_rma_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_auto_rma_policy_response.go index 9b8e9cdc1e..a7815f7693 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_auto_rma_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_auto_rma_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup.go index ad0f3cf5cd..ea009bbf4b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -39,7 +39,7 @@ type ApplianceBackup struct { IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` Messages []string `json:"Messages,omitempty"` // Password to authenticate the fileserver. - Password *string `json:"Password,omitempty"` + Password *string "json:\"Password,omitempty\" validate:\"regexp=^$|^[^`]+$\"" // Start date and time of the backup process. StartTime *time.Time `json:"StartTime,omitempty"` // Status of the backup managed object. * `Started` - Backup or restore process has started. * `Created` - Backup or restore is in created state. * `Failed` - Backup or restore process has failed. * `Completed` - Backup or restore process has completed. * `Copied` - Backup file has been copied. * `Cleanup Failed` - Cleanup of the old backup has failed. @@ -551,7 +551,7 @@ func (o *ApplianceBackup) UnmarshalJSON(data []byte) (err error) { IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` Messages []string `json:"Messages,omitempty"` // Password to authenticate the fileserver. - Password *string `json:"Password,omitempty"` + Password *string "json:\"Password,omitempty\" validate:\"regexp=^$|^[^`]+$\"" // Start date and time of the backup process. StartTime *time.Time `json:"StartTime,omitempty"` // Status of the backup managed object. * `Started` - Backup or restore process has started. * `Created` - Backup or restore is in created state. * `Failed` - Backup or restore process has failed. * `Completed` - Backup or restore process has completed. * `Copied` - Backup file has been copied. * `Cleanup Failed` - Cleanup of the old backup has failed. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_base.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_base.go index 896705f13c..779ad46c09 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_base.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,17 +29,17 @@ type ApplianceBackupBase struct { // 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. ObjectType string `json:"ObjectType"` // Backup filename to backup or restore. - Filename *string `json:"Filename,omitempty"` + Filename *string `json:"Filename,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9_\\\\.\\\\-\\\\+]*$"` // Communication protocol used by the file server (e.g. scp, sftp, or CIFS). * `scp` - Secure Copy Protocol (SCP) to access the file server. * `sftp` - SSH File Transfer Protocol (SFTP) to access file server. * `cifs` - Common Internet File System (CIFS) Protocol to access file server. Protocol *string `json:"Protocol,omitempty"` // Hostname of the remote file server. RemoteHost *string `json:"RemoteHost,omitempty"` // File server directory or share name to copy the file. - RemotePath *string `json:"RemotePath,omitempty"` + RemotePath *string "json:\"RemotePath,omitempty\" validate:\"regexp=^$|^[^`]+$\"" // Remote TCP port on the file server (e.g. 22 for scp). RemotePort *int64 `json:"RemotePort,omitempty"` // Username to authenticate the fileserver. - Username *string `json:"Username,omitempty"` + Username *string `json:"Username,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_][a-zA-Z0-9_\\\\.\\\\@\\\\\\\\\\\\-\\\\+]*$"` AdditionalProperties map[string]interface{} } @@ -399,17 +399,17 @@ func (o *ApplianceBackupBase) UnmarshalJSON(data []byte) (err error) { // 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. ObjectType string `json:"ObjectType"` // Backup filename to backup or restore. - Filename *string `json:"Filename,omitempty"` + Filename *string `json:"Filename,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9_\\\\.\\\\-\\\\+]*$"` // Communication protocol used by the file server (e.g. scp, sftp, or CIFS). * `scp` - Secure Copy Protocol (SCP) to access the file server. * `sftp` - SSH File Transfer Protocol (SFTP) to access file server. * `cifs` - Common Internet File System (CIFS) Protocol to access file server. Protocol *string `json:"Protocol,omitempty"` // Hostname of the remote file server. RemoteHost *string `json:"RemoteHost,omitempty"` // File server directory or share name to copy the file. - RemotePath *string `json:"RemotePath,omitempty"` + RemotePath *string "json:\"RemotePath,omitempty\" validate:\"regexp=^$|^[^`]+$\"" // Remote TCP port on the file server (e.g. 22 for scp). RemotePort *int64 `json:"RemotePort,omitempty"` // Username to authenticate the fileserver. - Username *string `json:"Username,omitempty"` + Username *string `json:"Username,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_][a-zA-Z0-9_\\\\.\\\\@\\\\\\\\\\\\-\\\\+]*$"` } varApplianceBackupBaseWithoutEmbeddedStruct := ApplianceBackupBaseWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_list.go index 1fc6b0329f..711cb51168 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_monitor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_monitor.go index a8b6d98aae..114de4b148 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_monitor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_monitor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_monitor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_monitor_list.go index ce1ee27aef..2b684c1dce 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_monitor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_monitor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_monitor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_monitor_response.go index 1dc4ad044e..4f6f6dfe56 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_monitor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_monitor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_policy.go index e60745cbfc..78ba047cac 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -36,7 +36,7 @@ type ApplianceBackupPolicy struct { // Backup mode of the appliance. Automatic backups of the appliance are not initiated if this property is set to 'true' and the backup schedule field is ignored. ManualBackup *bool `json:"ManualBackup,omitempty"` // Password to authenticate the file server. - Password *string `json:"Password,omitempty"` + Password *string "json:\"Password,omitempty\" validate:\"regexp=^$|^[^`]+$\"" // The number of backups before earliest backup is overwritten. Requires cleanup policy to be enabled. RetentionCount *int64 `json:"RetentionCount,omitempty"` // If backup rotate policy is set, older backups will automatically be overwritten. The number of backups before overwriting is defined by the retentionCount property. @@ -525,7 +525,7 @@ func (o *ApplianceBackupPolicy) UnmarshalJSON(data []byte) (err error) { // Backup mode of the appliance. Automatic backups of the appliance are not initiated if this property is set to 'true' and the backup schedule field is ignored. ManualBackup *bool `json:"ManualBackup,omitempty"` // Password to authenticate the file server. - Password *string `json:"Password,omitempty"` + Password *string "json:\"Password,omitempty\" validate:\"regexp=^$|^[^`]+$\"" // The number of backups before earliest backup is overwritten. Requires cleanup policy to be enabled. RetentionCount *int64 `json:"RetentionCount,omitempty"` // If backup rotate policy is set, older backups will automatically be overwritten. The number of backups before overwriting is defined by the retentionCount property. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_policy_list.go index d8c0e0d52e..eaeaf77640 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_policy_response.go index 1c13a1a8e4..3be856196a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_response.go index 46c044cd8b..8821e98354 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_rotate_data.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_rotate_data.go index 3866f4ed9a..17515a63bf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_rotate_data.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_rotate_data.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_rotate_data_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_rotate_data_list.go index 4fd69b750e..42ea9653db 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_rotate_data_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_rotate_data_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_rotate_data_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_rotate_data_response.go index 19580a13f6..9e93bf1ac4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_rotate_data_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_backup_rotate_data_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cert_renewal_phase.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cert_renewal_phase.go index 951fbc918f..ebfcff7587 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cert_renewal_phase.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cert_renewal_phase.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_certificate_setting.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_certificate_setting.go index 8565255ffd..3f5df11eb2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_certificate_setting.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_certificate_setting.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_certificate_setting_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_certificate_setting_list.go index be003b6909..4f8566d842 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_certificate_setting_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_certificate_setting_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_certificate_setting_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_certificate_setting_response.go index eedc820ade..be99be13c2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_certificate_setting_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_certificate_setting_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_info.go index 885ba0d2a5..17308dec4a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_info_list.go index 9f368ce639..aedeed5d0e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_info_response.go index 6f8aa524c3..0b790ba603 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_install.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_install.go index 779dc5a261..32916f2133 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_install.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_install.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_install_base.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_install_base.go index f72214f701..700c86d406 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_install_base.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_install_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_install_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_install_list.go index ee50cff925..2c9151e360 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_install_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_install_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_install_phase.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_install_phase.go index 0d6902fa2e..8c52924e06 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_install_phase.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_install_phase.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_install_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_install_response.go index 12ef076ec4..2dad70ed41 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_install_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_install_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_replace_node.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_replace_node.go index 3f45960208..19a6ffb3e5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_replace_node.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_replace_node.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_replace_node_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_replace_node_list.go index a220f6b6a9..7ef0fa5c01 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_replace_node_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_replace_node_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_replace_node_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_replace_node_response.go index f1b39d09be..28bb104928 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_replace_node_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_cluster_replace_node_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_data_export_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_data_export_policy.go index 7d6c59435c..66dfbd21f4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_data_export_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_data_export_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_data_export_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_data_export_policy_list.go index 280099dbfa..d2e6ecdb19 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_data_export_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_data_export_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_data_export_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_data_export_policy_relationship.go index 311bfdf5a4..058f0d99d4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_data_export_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_data_export_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_data_export_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_data_export_policy_response.go index 7482486120..a0041a1bfe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_data_export_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_data_export_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_certificate.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_certificate.go index e70858f837..d214958295 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_certificate.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_certificate.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_certificate_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_certificate_list.go index ca82ef4e35..6a8274dcd9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_certificate_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_certificate_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_certificate_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_certificate_response.go index f23d59e683..0fde16035a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_certificate_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_certificate_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_claim.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_claim.go index ec76ed34f5..492d734b02 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_claim.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_claim.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_claim_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_claim_list.go index 6aefcb1d0e..cf34817a40 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_claim_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_claim_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_claim_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_claim_response.go index 859e685242..9a4f73ad0f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_claim_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_claim_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_cluster_install.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_cluster_install.go index d8063f56b0..044ad6ac39 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_cluster_install.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_cluster_install.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_cluster_install_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_cluster_install_list.go index b84927cb1d..b98708e900 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_cluster_install_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_cluster_install_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_cluster_install_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_cluster_install_response.go index e18c6085ef..cd8b7af601 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_cluster_install_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_cluster_install_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_state.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_state.go index 2db35d0b16..e7539a31af 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_state.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_state.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_state_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_state_list.go index 485e8f69f8..d81addf7bb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_state_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_state_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_state_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_state_response.go index 6f61222f68..54ce82191f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_state_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_state_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_upgrade_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_upgrade_policy.go index 6a2916bec5..650343c78a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_upgrade_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_upgrade_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_upgrade_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_upgrade_policy_list.go index 5dbe3016e8..485670dfac 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_upgrade_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_upgrade_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_upgrade_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_upgrade_policy_relationship.go index ce1d942e5a..11eec0c85a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_upgrade_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_upgrade_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_upgrade_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_upgrade_policy_response.go index 3c5546b32d..82e294de41 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_upgrade_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_device_upgrade_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_diag_setting.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_diag_setting.go index c5823b4189..02ce93739b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_diag_setting.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_diag_setting.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_diag_setting_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_diag_setting_list.go index b9eaa0372c..21e7a8fb4a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_diag_setting_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_diag_setting_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_diag_setting_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_diag_setting_response.go index 06944e5969..91f8ebf660 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_diag_setting_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_diag_setting_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_external_syslog_setting.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_external_syslog_setting.go index e5a803ccd9..6d6722f002 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_external_syslog_setting.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_external_syslog_setting.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_external_syslog_setting_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_external_syslog_setting_list.go index 61ffcc15cd..f40e653678 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_external_syslog_setting_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_external_syslog_setting_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_external_syslog_setting_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_external_syslog_setting_response.go index 69c1128601..737ec1ee9f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_external_syslog_setting_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_external_syslog_setting_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_gateway.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_gateway.go index 38ac1c8f50..9977d68ddd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_gateway.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_gateway.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_gateway_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_gateway_list.go index c2f078d55c..4ec93882cb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_gateway_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_gateway_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_gateway_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_gateway_response.go index 11defc37cb..34cc801efa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_gateway_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_gateway_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_op_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_op_status.go index 1c96cdb681..0e2b354d1b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_op_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_op_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_op_status_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_op_status_list.go index 8be30f180c..8b69022492 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_op_status_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_op_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_op_status_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_op_status_relationship.go index faf99096fa..8d302cc58f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_op_status_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_op_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_op_status_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_op_status_response.go index a0ee6046dd..28a331c393 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_op_status_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_op_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_status.go index 51f31b0968..6ed6a8a54b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_status_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_status_list.go index 5d9153e73d..7b4fc18c0e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_status_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_status_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_status_relationship.go index 0e69782e12..b80719b915 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_status_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_status_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_status_response.go index efe7c8cb86..199907fa1d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_status_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_file_system_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_op_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_op_status.go index 73025d2b38..2c6c07d68c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_op_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_op_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_op_status_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_op_status_list.go index 06e5925bfc..42c2028d7d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_op_status_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_op_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_op_status_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_op_status_relationship.go index 0642a2cdd7..1bec649fdf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_op_status_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_op_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_op_status_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_op_status_response.go index fed417ace4..4c7ff6602d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_op_status_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_op_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_status.go index b971c340d2..157582a213 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_status_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_status_list.go index 2a9b9c066d..c060f42a76 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_status_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_status_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_status_relationship.go index aee537ce1b..cd2d4b17d5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_status_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_status_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_status_response.go index 57b5a96e31..ee030cf90d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_status_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_group_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_image_bundle.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_image_bundle.go index 234da63802..467e740339 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_image_bundle.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_image_bundle.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_image_bundle_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_image_bundle_list.go index 8e9550cda7..3429c84db8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_image_bundle_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_image_bundle_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_image_bundle_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_image_bundle_relationship.go index e1a2824a11..9155c210e8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_image_bundle_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_image_bundle_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_image_bundle_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_image_bundle_response.go index eaf1f763f9..95060b5393 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_image_bundle_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_image_bundle_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_key_value_pair.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_key_value_pair.go index 1310fcd83c..3799503d76 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_key_value_pair.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_key_value_pair.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_meta_manifest.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_meta_manifest.go index 74b46e6f18..bfd0909abc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_meta_manifest.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_meta_manifest.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_meta_manifest_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_meta_manifest_list.go index 386bb9400a..507acddc5a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_meta_manifest_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_meta_manifest_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_meta_manifest_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_meta_manifest_response.go index f28350693e..1dae1e6cab 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_meta_manifest_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_meta_manifest_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_metadata_manifest_version.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_metadata_manifest_version.go index 18b8def433..a1196abb14 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_metadata_manifest_version.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_metadata_manifest_version.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_metrics_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_metrics_config.go index e5bce7fd6f..d43c406a83 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_metrics_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_metrics_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_metrics_config_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_metrics_config_list.go index 678a74d068..b0f8931714 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_metrics_config_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_metrics_config_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_metrics_config_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_metrics_config_response.go index b1a447e2e7..f2f2a8b213 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_metrics_config_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_metrics_config_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_network_link_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_network_link_status.go index b8780b7270..c5c36f0548 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_network_link_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_network_link_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_network_link_status_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_network_link_status_list.go index d5021234e5..5080226f69 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_network_link_status_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_network_link_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_network_link_status_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_network_link_status_relationship.go index 43eae8d5ca..b5c886d844 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_network_link_status_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_network_link_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_network_link_status_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_network_link_status_response.go index 355032738b..838a2111fc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_network_link_status_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_network_link_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_network_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_network_status.go index 19d0f497d6..695d4ef49f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_network_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_network_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_info.go index 2f6addaac9..0dd11b59f7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_info_list.go index 6e67006e45..3e8d58e33e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_info_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_info_relationship.go index 9d694ad214..bc5876a146 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_info_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_info_response.go index 39d454d675..29bc6016f8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_ip_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_ip_info.go index 2b5c254a22..142652cbcb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_ip_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_ip_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_op_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_op_status.go index fc96e9dd03..5c173d9520 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_op_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_op_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_op_status_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_op_status_list.go index 40d0015155..5009299136 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_op_status_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_op_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_op_status_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_op_status_relationship.go index 81f39032dc..27e340522d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_op_status_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_op_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_op_status_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_op_status_response.go index 9b9335ae22..f2f6328239 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_op_status_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_op_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_status.go index b8c8e5204b..d4e24a0afb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_status_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_status_list.go index 64e12bb065..a999f3f780 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_status_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_status_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_status_relationship.go index 8d59681977..ee2e3ec66f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_status_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_status_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_status_response.go index 0b8285eb52..2935dd753e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_status_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_node_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_release_note.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_release_note.go index cd61a0ae63..9ac19b8ea6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_release_note.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_release_note.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_release_note_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_release_note_list.go index a48b09b228..e3df13c4e9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_release_note_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_release_note_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_release_note_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_release_note_response.go index a0bec96ef2..74cbaa57cf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_release_note_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_release_note_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_remote_file_import.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_remote_file_import.go index a42a0dc537..14425074c9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_remote_file_import.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_remote_file_import.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_remote_file_import_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_remote_file_import_list.go index 7f44b744b5..344bb33339 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_remote_file_import_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_remote_file_import_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_remote_file_import_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_remote_file_import_response.go index b10bae97da..4b5ee1fcc7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_remote_file_import_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_remote_file_import_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_restore.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_restore.go index 14d8bd912d..164b39af67 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_restore.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_restore.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -37,7 +37,7 @@ type ApplianceRestore struct { IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` Messages []string `json:"Messages,omitempty"` // Password for authenticating with the file server. - Password *string `json:"Password,omitempty"` + Password *string "json:\"Password,omitempty\" validate:\"regexp=^$|^[^`]+$\"" // Start date and time of the restore process. StartTime *time.Time `json:"StartTime,omitempty"` // Status of the restore managed object. * `Started` - Backup or restore process has started. * `Created` - Backup or restore is in created state. * `Failed` - Backup or restore process has failed. * `Completed` - Backup or restore process has completed. * `Copied` - Backup file has been copied. * `Cleanup Failed` - Cleanup of the old backup has failed. @@ -512,7 +512,7 @@ func (o *ApplianceRestore) UnmarshalJSON(data []byte) (err error) { IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` Messages []string `json:"Messages,omitempty"` // Password for authenticating with the file server. - Password *string `json:"Password,omitempty"` + Password *string "json:\"Password,omitempty\" validate:\"regexp=^$|^[^`]+$\"" // Start date and time of the restore process. StartTime *time.Time `json:"StartTime,omitempty"` // Status of the restore managed object. * `Started` - Backup or restore process has started. * `Created` - Backup or restore is in created state. * `Failed` - Backup or restore process has failed. * `Completed` - Backup or restore process has completed. * `Copied` - Backup file has been copied. * `Cleanup Failed` - Cleanup of the old backup has failed. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_restore_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_restore_list.go index 24c2b92a92..876e7ce011 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_restore_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_restore_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_restore_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_restore_response.go index 3dc0dd4aad..31fca21538 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_restore_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_restore_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_setup_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_setup_info.go index d39c286396..c41a63c63a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_setup_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_setup_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_setup_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_setup_info_list.go index 41d62bc7c4..da634dc7d1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_setup_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_setup_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_setup_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_setup_info_response.go index b8e372efbc..2616f265d3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_setup_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_setup_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_status_check.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_status_check.go index e9beeeea4e..d671a1c421 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_status_check.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_status_check.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_info.go index c0bb5bff27..f4823f15df 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_info_list.go index ffc1c042e7..32fefe0a06 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_info_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_info_relationship.go index f31f949b8c..e4d1ebcc9a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_info_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_info_response.go index cc82035263..124ce695d7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_op_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_op_status.go index ad5cbb11bb..72d9d3de0b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_op_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_op_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_op_status_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_op_status_list.go index 05ed13ed23..65a5ef9ae2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_op_status_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_op_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_op_status_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_op_status_relationship.go index 783af5cfe7..8cbe116778 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_op_status_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_op_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_op_status_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_op_status_response.go index eaecc71517..3bda01ede2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_op_status_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_op_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_status.go index de10ee19ad..5a857d0ff5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_status_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_status_list.go index 3bd72f9a5c..2f1c005151 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_status_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_status_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_status_relationship.go index b49b0c9324..2199c16dba 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_status_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_status_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_status_response.go index 2af53ad559..10018f51d6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_status_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_system_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade.go index 5358dd13c6..055e2e7982 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_list.go index 7e3c870622..86452b5af9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_policy.go index 18ed6866a2..36d9dce812 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_policy_list.go index c1e2a6a7cf..0462c9f71f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_policy_response.go index e5a460dc2f..b06bece30d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_relationship.go index 4056064cc8..ee5b9ca6cf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_response.go index 5c3055be8c..263a8d5c99 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_tracker.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_tracker.go index 503d0c5350..b1c0a1d641 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_tracker.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_tracker.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_tracker_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_tracker_list.go index d8bb35d433..52dc0dfb62 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_tracker_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_tracker_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_tracker_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_tracker_response.go index 12187ae5cb..13c1d8b905 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_tracker_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_appliance_upgrade_tracker_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_address_information.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_address_information.go index f89b790fe2..c3623092f4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_address_information.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_address_information.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_alarm_summary.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_alarm_summary.go index 0bb0053f69..8baa958285 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_alarm_summary.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_alarm_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_api_key_credential.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_api_key_credential.go index c6f07c9a44..861538b4df 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_api_key_credential.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_api_key_credential.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_claim_signature.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_claim_signature.go index c9d2c40679..7833f2119d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_claim_signature.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_claim_signature.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_client_certificate_credential.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_client_certificate_credential.go index b5c16f3247..4c7aa23bea 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_client_certificate_credential.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_client_certificate_credential.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_cloud_connection.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_cloud_connection.go index b3b80a261b..a3d4fb03b3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_cloud_connection.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_cloud_connection.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_cluster_member.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_cluster_member.go index 53f5ed0349..1bd56e7caa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_cluster_member.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_cluster_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_cluster_member_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_cluster_member_list.go index 0e7e92f2d4..7d1c348545 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_cluster_member_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_cluster_member_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_cluster_member_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_cluster_member_relationship.go index 8319c13b4f..7f01d46c22 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_cluster_member_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_cluster_member_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_cluster_member_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_cluster_member_response.go index 9f30a274e7..a024803775 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_cluster_member_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_cluster_member_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_connection.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_connection.go index b7233d4e84..eef263c7b6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_connection.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_connection.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_contract_information.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_contract_information.go index b26d8acf8e..0d56380b2c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_contract_information.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_contract_information.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_credential.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_credential.go index 986c90dd9c..666dbf3184 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_credential.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_credential.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_customer_information.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_customer_information.go index 66b841b391..c9cad864d6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_customer_information.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_customer_information.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment.go index 6e7fa75727..eb67e91a12 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_alarm_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_alarm_info.go index 036fc7dbc9..73660d3797 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_alarm_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_alarm_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_device.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_device.go index b9a79a20a2..36c2ba3625 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_device.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_device_alarm_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_device_alarm_info.go index 96f98b7926..fa14914833 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_device_alarm_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_device_alarm_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_device_information.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_device_information.go index 0290191b15..ec27c13519 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_device_information.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_device_information.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_device_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_device_list.go index 1bef0f62de..3138002dca 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_device_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_device_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_device_relationship.go index cf74d8b118..9ced35abde 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_device_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_device_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_device_response.go index 0b40c94401..8446d23b8b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_device_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_list.go index bcdf91616e..9de07c1005 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_relationship.go index b7945ae33b..fedbfef22b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_response.go index 75a716f5ac..748c3f8a10 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_deployment_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_claim.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_claim.go index 0df910fa08..c2e9157522 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_claim.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_claim.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_claim_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_claim_relationship.go index 4743ce0df0..008d635f11 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_claim_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_claim_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_configuration.go index fd8718a3ef..d178963fca 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_configuration_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_configuration_list.go index dfa1aee911..91046e27e9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_configuration_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_configuration_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_configuration_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_configuration_relationship.go index b23b4cc66f..62a295c9b0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_configuration_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_configuration_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_configuration_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_configuration_response.go index 81f9eef13a..4cdf6c7bd4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_configuration_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_configuration_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_connection.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_connection.go index d6b18c2dca..e00be6dea9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_connection.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_connection.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_connection_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_connection_relationship.go index daf43b73ad..1b72e89e8d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_connection_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_connection_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_connector_manager.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_connector_manager.go index 46fd057399..49e587ab8a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_connector_manager.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_connector_manager.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_connector_manager_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_connector_manager_list.go index 3ba0dfa914..ab55dc6da1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_connector_manager_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_connector_manager_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_connector_manager_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_connector_manager_response.go index 2332810099..c87039d7ae 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_connector_manager_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_connector_manager_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_contract_information.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_contract_information.go index 26fadcf745..a024d4d5a1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_contract_information.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_contract_information.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_contract_information_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_contract_information_list.go index 5d9f8de2d8..cad8568822 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_contract_information_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_contract_information_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_contract_information_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_contract_information_relationship.go index b2c968510d..a4a0da55f2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_contract_information_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_contract_information_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_contract_information_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_contract_information_response.go index 4fd35a0e86..500323dc98 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_contract_information_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_contract_information_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_contract_notification.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_contract_notification.go index c51d92753e..93fdf477f1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_contract_notification.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_contract_notification.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_endpoint_local_credential.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_endpoint_local_credential.go index f2132af3c9..bf8fd82a1a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_endpoint_local_credential.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_endpoint_local_credential.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_information.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_information.go index d11bce42d9..54b024abdf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_information.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_information.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_registration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_registration.go index f3efca24f7..7421f86ef7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_registration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_registration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_registration_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_registration_list.go index 41f722bc29..019cf59ee1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_registration_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_registration_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_registration_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_registration_relationship.go index 361aead422..0d3deba41f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_registration_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_registration_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_registration_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_registration_response.go index 834e1b3eb8..625fc7a084 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_registration_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_registration_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_statistics.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_statistics.go index c0ed9f0832..3bff197f34 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_statistics.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_statistics.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_transaction.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_transaction.go index 012dc566fc..b177f89960 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_transaction.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_device_transaction.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_generic_target_claim_options.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_generic_target_claim_options.go index 507fe281b7..56e02124ad 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_generic_target_claim_options.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_generic_target_claim_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_global_ultimate.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_global_ultimate.go index 9b0f96b40e..d6b0dcd6fb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_global_ultimate.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_global_ultimate.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_google_cloud_platform_service_account_key_credential.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_google_cloud_platform_service_account_key_credential.go index d8b24ca6b3..83e117d8b7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_google_cloud_platform_service_account_key_credential.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_google_cloud_platform_service_account_key_credential.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_http_connection.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_http_connection.go index 2dbb9e9d70..8c5c5988b2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_http_connection.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_http_connection.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_intersight_device_connector_connection.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_intersight_device_connector_connection.go index 2ac1b2387e..81dfa18c25 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_intersight_device_connector_connection.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_intersight_device_connector_connection.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_meraki_cloud_options.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_meraki_cloud_options.go index dae6b63eb5..3c670331fa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_meraki_cloud_options.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_meraki_cloud_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_metering_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_metering_type.go index 6ccb4a590d..9d58339244 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_metering_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_metering_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_new_relic_credential.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_new_relic_credential.go index 3fa584dab0..371d459d1f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_new_relic_credential.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_new_relic_credential.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_no_authentication_credential.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_no_authentication_credential.go index c7d4d43639..3f47db30d6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_no_authentication_credential.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_no_authentication_credential.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_oauth_bearer_token_credential.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_oauth_bearer_token_credential.go index 74e9f5c12e..7084c21c07 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_oauth_bearer_token_credential.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_oauth_bearer_token_credential.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_oauth_client_id_secret_credential.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_oauth_client_id_secret_credential.go index 6e57225b02..f6f7b46d08 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_oauth_client_id_secret_credential.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_oauth_client_id_secret_credential.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_orchestration_civp_vmware_vcenter_options.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_orchestration_civp_vmware_vcenter_options.go index b64f40fcdf..47f4678d5e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_orchestration_civp_vmware_vcenter_options.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_orchestration_civp_vmware_vcenter_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_orchestration_hitachi_virtual_storage_platform_options.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_orchestration_hitachi_virtual_storage_platform_options.go index 66608957e4..58ef3d53a2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_orchestration_hitachi_virtual_storage_platform_options.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_orchestration_hitachi_virtual_storage_platform_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_orchestration_hsm_vmware_vcenter_options.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_orchestration_hsm_vmware_vcenter_options.go index b96c33be27..3a96ba8aa9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_orchestration_hsm_vmware_vcenter_options.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_orchestration_hsm_vmware_vcenter_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_orchestration_service.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_orchestration_service.go index e63138ee81..fcab154bc8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_orchestration_service.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_orchestration_service.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_parent_connection_signature.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_parent_connection_signature.go index 00e304690e..59ac22de07 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_parent_connection_signature.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_parent_connection_signature.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_private_key_credential.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_private_key_credential.go index 77b7febb2e..9f91053ce4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_private_key_credential.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_private_key_credential.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_product_information.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_product_information.go index e8104b98ad..10cb96a684 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_product_information.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_product_information.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_scoped_target_connection.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_scoped_target_connection.go index 25395fbaf5..2f47d7f4aa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_scoped_target_connection.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_scoped_target_connection.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_service.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_service.go index d504074674..03c2dd9fc1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_service.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_service.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_service_now_credential.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_service_now_credential.go index 03a816842a..3b78fc0760 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_service_now_credential.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_service_now_credential.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_service_options.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_service_options.go index 6641557500..1c76ee0ddc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_service_options.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_service_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_ssh_connection.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_ssh_connection.go index 931648b6d5..797f776c91 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_ssh_connection.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_ssh_connection.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription.go index d6445788ff..1ae5b79448 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_account.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_account.go index 872241bd56..6c213e5e72 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_account.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_account.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_account_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_account_list.go index a2759866d8..8236c39ec0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_account_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_account_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_account_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_account_relationship.go index 70d616ebf4..c405a490c1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_account_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_account_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_account_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_account_response.go index d0de8fcb40..4d94de5a78 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_account_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_account_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_device_contract_information.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_device_contract_information.go index 3a553aad6c..5796fa7e53 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_device_contract_information.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_device_contract_information.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_device_contract_information_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_device_contract_information_list.go index b67bcf0aca..879a8e6885 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_device_contract_information_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_device_contract_information_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_device_contract_information_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_device_contract_information_response.go index a1939cf156..804a13e562 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_device_contract_information_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_device_contract_information_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_list.go index 9dd1a419ab..5f20db151d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_relationship.go index 06a2c72409..b080fb7833 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_response.go index 9d53387d33..bef17dedc8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_subscription_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_sudi_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_sudi_info.go index 6726bbc393..68e826f6f7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_sudi_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_sudi_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target.go index b268282223..c7eae94374 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target_key.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target_key.go index fcb070ada2..0b5ea283a1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target_key.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target_key.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target_list.go index 1529590ce2..661c793480 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target_relationship.go index 9b2f285b5f..91d85ab326 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target_response.go index 9672012c19..98aee51e42 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target_signature.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target_signature.go index 65337ca4a6..7046194699 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target_signature.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target_signature.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target_status_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target_status_details.go index 9f79960f47..0e85964fb3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target_status_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_target_status_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_terraform_integration_service.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_terraform_integration_service.go index 5204a9fcca..35b4aac607 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_terraform_integration_service.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_terraform_integration_service.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_terraform_integration_terraform_agent_options.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_terraform_integration_terraform_agent_options.go index c862995b83..07ce7dc96e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_terraform_integration_terraform_agent_options.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_terraform_integration_terraform_agent_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_terraform_integration_terraform_cloud_options.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_terraform_integration_terraform_cloud_options.go index 77c5a1ce0c..cbe13a3df2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_terraform_integration_terraform_cloud_options.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_terraform_integration_terraform_cloud_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_username_password_credential.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_username_password_credential.go index 7f2af73d4b..b44a5eca49 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_username_password_credential.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_username_password_credential.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_virtualization_amazon_web_service_options.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_virtualization_amazon_web_service_options.go index 629a274d54..125158ed0e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_virtualization_amazon_web_service_options.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_virtualization_amazon_web_service_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_virtualization_cloud_options.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_virtualization_cloud_options.go index b8204f0e0d..2193f57f1e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_virtualization_cloud_options.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_virtualization_cloud_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_virtualization_service.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_virtualization_service.go index f15a7ea4a3..6a4037972b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_virtualization_service.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_virtualization_service.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_vm_host.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_vm_host.go index f64c6b73fe..041e44acb3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_vm_host.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_vm_host.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_amazon_web_services_billing_options.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_amazon_web_services_billing_options.go index afc15576d9..374549a11d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_amazon_web_services_billing_options.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_amazon_web_services_billing_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_dynatrace_options.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_dynatrace_options.go index 27d2fae462..ad71825f01 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_dynatrace_options.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_dynatrace_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_google_cloud_platform_billing_options.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_google_cloud_platform_billing_options.go index 3e64255226..e5b6fd4335 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_google_cloud_platform_billing_options.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_google_cloud_platform_billing_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_hyperv_options.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_hyperv_options.go index 427eb7a295..069ce5f724 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_hyperv_options.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_hyperv_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_application_insights_options.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_application_insights_options.go index 69f472b69d..33909d0b4c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_application_insights_options.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_application_insights_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_billing_options.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_billing_options.go index aa447d92d9..fe711f2b84 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_billing_options.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_billing_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_enterprise_agreement_options.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_enterprise_agreement_options.go index 694baa52d9..041c5dc36b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_enterprise_agreement_options.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_enterprise_agreement_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_service_principal_options.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_service_principal_options.go index a3effeb359..f24983fced 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_service_principal_options.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_microsoft_azure_service_principal_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_microsoft_sql_server_options.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_microsoft_sql_server_options.go index 0291a026a0..297df2e6ed 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_microsoft_sql_server_options.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_microsoft_sql_server_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_new_relic_options.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_new_relic_options.go index 06971d02c7..5468fcfe8c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_new_relic_options.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_new_relic_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_open_stack_options.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_open_stack_options.go index 71088bded4..101077e384 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_open_stack_options.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_open_stack_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_oracle_database_server_options.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_oracle_database_server_options.go index 0081768fe4..ad4ddd46f4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_oracle_database_server_options.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_oracle_database_server_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_red_hat_open_stack_options.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_red_hat_open_stack_options.go index 2fb91967b8..3419a9edca 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_red_hat_open_stack_options.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_red_hat_open_stack_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_service.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_service.go index a4de0f6fb2..2d67e797a1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_service.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_service.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_vmware_vcenter_options.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_vmware_vcenter_options.go index e6cb0b7103..c6c3aeb101 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_vmware_vcenter_options.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_asset_workload_optimizer_vmware_vcenter_options.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_device.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_device.go index 90d7b33c9e..638360e604 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_device.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_device_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_device_list.go index 8cfe6de0e3..b04dd1ab4a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_device_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_device_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_device_relationship.go index 55c6ff827f..2596e0a09d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_device_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_device_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_device_response.go index c24de90d14..7135116f21 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_device_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_mode.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_mode.go index 4f89d2e754..f090471410 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_mode.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_mode.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_mode_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_mode_list.go index 0ff51319c7..abe1eb638c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_mode_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_mode_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_mode_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_mode_relationship.go index c98205d4b9..be2bed3ab1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_mode_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_mode_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_mode_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_mode_response.go index 80aaac646d..afe8f89028 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_mode_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_boot_mode_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_policy.go index 956d6b348c..55d8318457 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -93,7 +93,7 @@ type BiosPolicy struct { // BIOS Token for setting APBDIS configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `0` - Value - 0 for configuring CbsCmnApbdis token. * `1` - Value - 1 for configuring CbsCmnApbdis token. * `Auto` - Value - Auto for configuring CbsCmnApbdis token. CbsCmnApbdis *string `json:"CbsCmnApbdis,omitempty"` // BIOS Token for setting Fixed SOC P-State SP5 F19h configuration (0 - 2 P State). - CbsCmnApbdisDfPstateRs *string `json:"CbsCmnApbdisDfPstateRs,omitempty"` + CbsCmnApbdisDfPstateRs *string `json:"CbsCmnApbdisDfPstateRs,omitempty" validate:"regexp=^([0-2])$|^(platform-default)$"` // BIOS Token for setting AVX512 configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsCmnCpuAvx512 token. * `disabled` - Value - disabled for configuring CbsCmnCpuAvx512 token. * `enabled` - Value - enabled for configuring CbsCmnCpuAvx512 token. CbsCmnCpuAvx512 *string `json:"CbsCmnCpuAvx512,omitempty"` // BIOS Token for setting Core Performance Boost configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsCmnCpuCpb token. * `disabled` - Value - disabled for configuring CbsCmnCpuCpb token. @@ -107,7 +107,7 @@ type BiosPolicy struct { // BIOS Token for setting L2 Stream HW Prefetcher configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsCmnCpuL2streamHwPrefetcher token. * `disabled` - Value - disabled for configuring CbsCmnCpuL2streamHwPrefetcher token. * `enabled` - Value - enabled for configuring CbsCmnCpuL2streamHwPrefetcher token. CbsCmnCpuL2streamHwPrefetcher *string `json:"CbsCmnCpuL2streamHwPrefetcher,omitempty"` // BIOS Token for setting SEV-ES ASID Space Limit configuration (1 - 1007 ASIDs). - CbsCmnCpuSevAsidSpaceLimit *string `json:"CbsCmnCpuSevAsidSpaceLimit,omitempty"` + CbsCmnCpuSevAsidSpaceLimit *string `json:"CbsCmnCpuSevAsidSpaceLimit,omitempty" validate:"regexp=^([1-9]|[1-9]\\\\d|[1-9]\\\\d{2}|100[0-7])$|^(platform-default)$"` // BIOS Token for setting CPU SMEE configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsCmnCpuSmee token. * `disabled` - Value - disabled for configuring CbsCmnCpuSmee token. * `enabled` - Value - enabled for configuring CbsCmnCpuSmee token. CbsCmnCpuSmee *string `json:"CbsCmnCpuSmee,omitempty"` // BIOS Token for setting Streaming Stores Control configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsCmnCpuStreamingStoresCtrl token. * `disabled` - Value - disabled for configuring CbsCmnCpuStreamingStoresCtrl token. * `enabled` - Value - enabled for configuring CbsCmnCpuStreamingStoresCtrl token. @@ -167,7 +167,7 @@ type BiosPolicy struct { // BIOS Token for setting SNP Memory Coverage configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsDbgCpuSnpMemCover token. * `Custom` - Value - Custom for configuring CbsDbgCpuSnpMemCover token. * `disabled` - Value - disabled for configuring CbsDbgCpuSnpMemCover token. * `enabled` - Value - enabled for configuring CbsDbgCpuSnpMemCover token. CbsDbgCpuSnpMemCover *string `json:"CbsDbgCpuSnpMemCover,omitempty"` // BIOS Token for setting SNP Memory Size to Cover in MiB configuration (0 - 1048576 MiB). - CbsDbgCpuSnpMemSizeCover *string `json:"CbsDbgCpuSnpMemSizeCover,omitempty"` + CbsDbgCpuSnpMemSizeCover *string `json:"CbsDbgCpuSnpMemSizeCover,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|[1-9]\\\\d{2}|[1-9]\\\\d{3}|[1-9]\\\\d{4}|[1-9]\\\\d{5}|10[0-3]\\\\d{4}|104[0-7]\\\\d{3}|1048[0-4]\\\\d{2}|10485[0-6]\\\\d|104857[0-6])$|^(platform-default)$"` // BIOS Token for setting 4-link xGMI max speed configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `20Gbps` - Value - 20Gbps for configuring CbsDfCmn4linkMaxXgmiSpeed token. * `25Gbps` - Value - 25Gbps for configuring CbsDfCmn4linkMaxXgmiSpeed token. * `32Gbps` - Value - 32Gbps for configuring CbsDfCmn4linkMaxXgmiSpeed token. * `Auto` - Value - Auto for configuring CbsDfCmn4linkMaxXgmiSpeed token. CbsDfCmn4linkMaxXgmiSpeed *string `json:"CbsDfCmn4linkMaxXgmiSpeed,omitempty"` // BIOS Token for setting ACPI SRAT L3 Cache As NUMA Domain configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsDfCmnAcpiSratL3numa token. * `disabled` - Value - disabled for configuring CbsDfCmnAcpiSratL3numa token. * `enabled` - Value - enabled for configuring CbsDfCmnAcpiSratL3numa token. @@ -363,7 +363,7 @@ type BiosPolicy struct { // BIOS Token for setting Memory Refresh Rate configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `1x Refresh` - Value - 1x Refresh for configuring MemoryRefreshRate token. * `2x Refresh` - Value - 2x Refresh for configuring MemoryRefreshRate token. MemoryRefreshRate *string `json:"MemoryRefreshRate,omitempty"` // BIOS Token for setting Memory Size Limit in GiB configuration (0 - 65535 GiB). - MemorySizeLimit *string `json:"MemorySizeLimit,omitempty"` + MemorySizeLimit *string `json:"MemorySizeLimit,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|[1-9]\\\\d{2}|[1-9]\\\\d{3}|[1-5]\\\\d{4}|6[0-4]\\\\d{3}|65[0-4]\\\\d{2}|655[0-2]\\\\d|6553[0-5])$|^(platform-default)$"` // BIOS Token for setting Memory Thermal Throttling Mode configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `CLTT with PECI` - Value - CLTT with PECI for configuring MemoryThermalThrottling token. * `Disabled` - Value - Disabled for configuring MemoryThermalThrottling token. MemoryThermalThrottling *string `json:"MemoryThermalThrottling,omitempty"` // BIOS Token for setting Mirroring Mode configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `inter-socket` - Value - inter-socket for configuring MirroringMode token. * `intra-socket` - Value - intra-socket for configuring MirroringMode token. @@ -409,25 +409,25 @@ type BiosPolicy struct { // BIOS Token for setting Partial Memory Mirror Mode configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `disabled` - Value - disabled for configuring PartialMirrorModeConfig token. * `Percentage` - Value - Percentage for configuring PartialMirrorModeConfig token. * `Value in GB` - Value - Value in GiB for configuring PartialMirrorModeConfig token. PartialMirrorModeConfig *string `json:"PartialMirrorModeConfig,omitempty"` // BIOS Token for setting Partial Mirror Percentage configuration (0.00 - 50.00 Percentage). - PartialMirrorPercent *string `json:"PartialMirrorPercent,omitempty"` + PartialMirrorPercent *string `json:"PartialMirrorPercent,omitempty" validate:"regexp=^(\\\\d\\\\.\\\\d{1,2}|[1-4]\\\\d\\\\.\\\\d{1,2}|50\\\\.[0]{1,2})$|^(platform-default)$"` // BIOS Token for setting Partial Mirror1 Size in GiB configuration (0 - 65535 GiB). - PartialMirrorValue1 *string `json:"PartialMirrorValue1,omitempty"` + PartialMirrorValue1 *string `json:"PartialMirrorValue1,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|[1-9]\\\\d{2}|[1-9]\\\\d{3}|[1-5]\\\\d{4}|6[0-4]\\\\d{3}|65[0-4]\\\\d{2}|655[0-2]\\\\d|6553[0-5])$|^(platform-default)$"` // BIOS Token for setting Partial Mirror2 Size in GiB configuration (0 - 65535 GiB). - PartialMirrorValue2 *string `json:"PartialMirrorValue2,omitempty"` + PartialMirrorValue2 *string `json:"PartialMirrorValue2,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|[1-9]\\\\d{2}|[1-9]\\\\d{3}|[1-5]\\\\d{4}|6[0-4]\\\\d{3}|65[0-4]\\\\d{2}|655[0-2]\\\\d|6553[0-5])$|^(platform-default)$"` // BIOS Token for setting Partial Mirror3 Size in GiB configuration (0 - 65535 GiB). - PartialMirrorValue3 *string `json:"PartialMirrorValue3,omitempty"` + PartialMirrorValue3 *string `json:"PartialMirrorValue3,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|[1-9]\\\\d{2}|[1-9]\\\\d{3}|[1-5]\\\\d{4}|6[0-4]\\\\d{3}|65[0-4]\\\\d{2}|655[0-2]\\\\d|6553[0-5])$|^(platform-default)$"` // BIOS Token for setting Partial Mirror4 Size in GiB configuration (0 - 65535 GiB). - PartialMirrorValue4 *string `json:"PartialMirrorValue4,omitempty"` + PartialMirrorValue4 *string `json:"PartialMirrorValue4,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|[1-9]\\\\d{2}|[1-9]\\\\d{3}|[1-5]\\\\d{4}|6[0-4]\\\\d{3}|65[0-4]\\\\d{2}|655[0-2]\\\\d|6553[0-5])$|^(platform-default)$"` // BIOS Token for setting Patrol Scrub configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `disabled` - Value - disabled for configuring PatrolScrub token. * `Enable at End of POST` - Value - Enable at End of POST for configuring PatrolScrub token. * `enabled` - Value - enabled for configuring PatrolScrub token. PatrolScrub *string `json:"PatrolScrub,omitempty"` // BIOS Token for setting Patrol Scrub Interval configuration (5 - 23 Hour). - PatrolScrubDuration *string `json:"PatrolScrubDuration,omitempty"` + PatrolScrubDuration *string `json:"PatrolScrubDuration,omitempty" validate:"regexp=^([5-9]|1\\\\d|2[0-3])$|^(platform-default)$"` // BIOS Token for setting PCIe RAS Support configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. PcIeRasSupport *string `json:"PcIeRasSupport,omitempty"` // BIOS Token for setting NVMe SSD Hot-Plug Support configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. PcIeSsdHotPlugSupport *string `json:"PcIeSsdHotPlugSupport,omitempty"` // BIOS Token for setting PCIe PLL SSC Percent configuration (0 - 255 (n/10)%). - PchPciePllSsc *string `json:"PchPciePllSsc,omitempty"` + PchPciePllSsc *string `json:"PchPciePllSsc,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|1\\\\d{2}|2[0-4]\\\\d|25[0-5])$|^(platform-default)$"` // BIOS Token for setting xHCI Mode configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. PchUsb30mode *string `json:"PchUsb30mode,omitempty"` // BIOS Token for setting All PCIe Slots OptionROM configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `disabled` - Value - disabled for configuring PciOptionRoMs token. * `enabled` - Value - enabled for configuring PciOptionRoMs token. * `Legacy Only` - Value - Legacy Only for configuring PciOptionRoMs token. * `UEFI Only` - Value - UEFI Only for configuring PciOptionRoMs token. @@ -529,19 +529,19 @@ type BiosPolicy struct { // BIOS Token for setting SGX Auto MP Registration Agent configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. SgxAutoRegistrationAgent *string `json:"SgxAutoRegistrationAgent,omitempty"` // BIOS Token for setting SGX Epoch 0 configuration (0 - ffffffffffffffff Hash byte 7-0). - SgxEpoch0 *string `json:"SgxEpoch0,omitempty"` + SgxEpoch0 *string `json:"SgxEpoch0,omitempty" validate:"regexp=^([0-9a-fA-F]{1,16})$|^(platform-default)$"` // BIOS Token for setting SGX Epoch 1 configuration (0 - ffffffffffffffff Hash byte 7-0). - SgxEpoch1 *string `json:"SgxEpoch1,omitempty"` + SgxEpoch1 *string `json:"SgxEpoch1,omitempty" validate:"regexp=^([0-9a-fA-F]{1,16})$|^(platform-default)$"` // BIOS Token for setting SGX Factory Reset configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. SgxFactoryReset *string `json:"SgxFactoryReset,omitempty"` // BIOS Token for setting SGX PubKey Hash0 configuration (0 - ffffffffffffffff Hash byte 7-0). - SgxLePubKeyHash0 *string `json:"SgxLePubKeyHash0,omitempty"` + SgxLePubKeyHash0 *string `json:"SgxLePubKeyHash0,omitempty" validate:"regexp=^([0-9a-fA-F]{1,16})$|^(platform-default)$"` // BIOS Token for setting SGX PubKey Hash1 configuration (0 - ffffffffffffffff Hash byte 15-8). - SgxLePubKeyHash1 *string `json:"SgxLePubKeyHash1,omitempty"` + SgxLePubKeyHash1 *string `json:"SgxLePubKeyHash1,omitempty" validate:"regexp=^([0-9a-fA-F]{1,16})$|^(platform-default)$"` // BIOS Token for setting SGX PubKey Hash2 configuration (0 - ffffffffffffffff Hash byte 23-16). - SgxLePubKeyHash2 *string `json:"SgxLePubKeyHash2,omitempty"` + SgxLePubKeyHash2 *string `json:"SgxLePubKeyHash2,omitempty" validate:"regexp=^([0-9a-fA-F]{1,16})$|^(platform-default)$"` // BIOS Token for setting SGX PubKey Hash3 configuration (0 - ffffffffffffffff Hash byte 31-24). - SgxLePubKeyHash3 *string `json:"SgxLePubKeyHash3,omitempty"` + SgxLePubKeyHash3 *string `json:"SgxLePubKeyHash3,omitempty" validate:"regexp=^([0-9a-fA-F]{1,16})$|^(platform-default)$"` // BIOS Token for setting SGX Write Enable configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. SgxLeWr *string `json:"SgxLeWr,omitempty"` // BIOS Token for setting SGX Package Information In-Band Access configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. @@ -18549,7 +18549,7 @@ func (o *BiosPolicy) UnmarshalJSON(data []byte) (err error) { // BIOS Token for setting APBDIS configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `0` - Value - 0 for configuring CbsCmnApbdis token. * `1` - Value - 1 for configuring CbsCmnApbdis token. * `Auto` - Value - Auto for configuring CbsCmnApbdis token. CbsCmnApbdis *string `json:"CbsCmnApbdis,omitempty"` // BIOS Token for setting Fixed SOC P-State SP5 F19h configuration (0 - 2 P State). - CbsCmnApbdisDfPstateRs *string `json:"CbsCmnApbdisDfPstateRs,omitempty"` + CbsCmnApbdisDfPstateRs *string `json:"CbsCmnApbdisDfPstateRs,omitempty" validate:"regexp=^([0-2])$|^(platform-default)$"` // BIOS Token for setting AVX512 configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsCmnCpuAvx512 token. * `disabled` - Value - disabled for configuring CbsCmnCpuAvx512 token. * `enabled` - Value - enabled for configuring CbsCmnCpuAvx512 token. CbsCmnCpuAvx512 *string `json:"CbsCmnCpuAvx512,omitempty"` // BIOS Token for setting Core Performance Boost configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsCmnCpuCpb token. * `disabled` - Value - disabled for configuring CbsCmnCpuCpb token. @@ -18563,7 +18563,7 @@ func (o *BiosPolicy) UnmarshalJSON(data []byte) (err error) { // BIOS Token for setting L2 Stream HW Prefetcher configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsCmnCpuL2streamHwPrefetcher token. * `disabled` - Value - disabled for configuring CbsCmnCpuL2streamHwPrefetcher token. * `enabled` - Value - enabled for configuring CbsCmnCpuL2streamHwPrefetcher token. CbsCmnCpuL2streamHwPrefetcher *string `json:"CbsCmnCpuL2streamHwPrefetcher,omitempty"` // BIOS Token for setting SEV-ES ASID Space Limit configuration (1 - 1007 ASIDs). - CbsCmnCpuSevAsidSpaceLimit *string `json:"CbsCmnCpuSevAsidSpaceLimit,omitempty"` + CbsCmnCpuSevAsidSpaceLimit *string `json:"CbsCmnCpuSevAsidSpaceLimit,omitempty" validate:"regexp=^([1-9]|[1-9]\\\\d|[1-9]\\\\d{2}|100[0-7])$|^(platform-default)$"` // BIOS Token for setting CPU SMEE configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsCmnCpuSmee token. * `disabled` - Value - disabled for configuring CbsCmnCpuSmee token. * `enabled` - Value - enabled for configuring CbsCmnCpuSmee token. CbsCmnCpuSmee *string `json:"CbsCmnCpuSmee,omitempty"` // BIOS Token for setting Streaming Stores Control configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsCmnCpuStreamingStoresCtrl token. * `disabled` - Value - disabled for configuring CbsCmnCpuStreamingStoresCtrl token. * `enabled` - Value - enabled for configuring CbsCmnCpuStreamingStoresCtrl token. @@ -18623,7 +18623,7 @@ func (o *BiosPolicy) UnmarshalJSON(data []byte) (err error) { // BIOS Token for setting SNP Memory Coverage configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsDbgCpuSnpMemCover token. * `Custom` - Value - Custom for configuring CbsDbgCpuSnpMemCover token. * `disabled` - Value - disabled for configuring CbsDbgCpuSnpMemCover token. * `enabled` - Value - enabled for configuring CbsDbgCpuSnpMemCover token. CbsDbgCpuSnpMemCover *string `json:"CbsDbgCpuSnpMemCover,omitempty"` // BIOS Token for setting SNP Memory Size to Cover in MiB configuration (0 - 1048576 MiB). - CbsDbgCpuSnpMemSizeCover *string `json:"CbsDbgCpuSnpMemSizeCover,omitempty"` + CbsDbgCpuSnpMemSizeCover *string `json:"CbsDbgCpuSnpMemSizeCover,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|[1-9]\\\\d{2}|[1-9]\\\\d{3}|[1-9]\\\\d{4}|[1-9]\\\\d{5}|10[0-3]\\\\d{4}|104[0-7]\\\\d{3}|1048[0-4]\\\\d{2}|10485[0-6]\\\\d|104857[0-6])$|^(platform-default)$"` // BIOS Token for setting 4-link xGMI max speed configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `20Gbps` - Value - 20Gbps for configuring CbsDfCmn4linkMaxXgmiSpeed token. * `25Gbps` - Value - 25Gbps for configuring CbsDfCmn4linkMaxXgmiSpeed token. * `32Gbps` - Value - 32Gbps for configuring CbsDfCmn4linkMaxXgmiSpeed token. * `Auto` - Value - Auto for configuring CbsDfCmn4linkMaxXgmiSpeed token. CbsDfCmn4linkMaxXgmiSpeed *string `json:"CbsDfCmn4linkMaxXgmiSpeed,omitempty"` // BIOS Token for setting ACPI SRAT L3 Cache As NUMA Domain configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `Auto` - Value - Auto for configuring CbsDfCmnAcpiSratL3numa token. * `disabled` - Value - disabled for configuring CbsDfCmnAcpiSratL3numa token. * `enabled` - Value - enabled for configuring CbsDfCmnAcpiSratL3numa token. @@ -18819,7 +18819,7 @@ func (o *BiosPolicy) UnmarshalJSON(data []byte) (err error) { // BIOS Token for setting Memory Refresh Rate configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `1x Refresh` - Value - 1x Refresh for configuring MemoryRefreshRate token. * `2x Refresh` - Value - 2x Refresh for configuring MemoryRefreshRate token. MemoryRefreshRate *string `json:"MemoryRefreshRate,omitempty"` // BIOS Token for setting Memory Size Limit in GiB configuration (0 - 65535 GiB). - MemorySizeLimit *string `json:"MemorySizeLimit,omitempty"` + MemorySizeLimit *string `json:"MemorySizeLimit,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|[1-9]\\\\d{2}|[1-9]\\\\d{3}|[1-5]\\\\d{4}|6[0-4]\\\\d{3}|65[0-4]\\\\d{2}|655[0-2]\\\\d|6553[0-5])$|^(platform-default)$"` // BIOS Token for setting Memory Thermal Throttling Mode configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `CLTT with PECI` - Value - CLTT with PECI for configuring MemoryThermalThrottling token. * `Disabled` - Value - Disabled for configuring MemoryThermalThrottling token. MemoryThermalThrottling *string `json:"MemoryThermalThrottling,omitempty"` // BIOS Token for setting Mirroring Mode configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `inter-socket` - Value - inter-socket for configuring MirroringMode token. * `intra-socket` - Value - intra-socket for configuring MirroringMode token. @@ -18865,25 +18865,25 @@ func (o *BiosPolicy) UnmarshalJSON(data []byte) (err error) { // BIOS Token for setting Partial Memory Mirror Mode configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `disabled` - Value - disabled for configuring PartialMirrorModeConfig token. * `Percentage` - Value - Percentage for configuring PartialMirrorModeConfig token. * `Value in GB` - Value - Value in GiB for configuring PartialMirrorModeConfig token. PartialMirrorModeConfig *string `json:"PartialMirrorModeConfig,omitempty"` // BIOS Token for setting Partial Mirror Percentage configuration (0.00 - 50.00 Percentage). - PartialMirrorPercent *string `json:"PartialMirrorPercent,omitempty"` + PartialMirrorPercent *string `json:"PartialMirrorPercent,omitempty" validate:"regexp=^(\\\\d\\\\.\\\\d{1,2}|[1-4]\\\\d\\\\.\\\\d{1,2}|50\\\\.[0]{1,2})$|^(platform-default)$"` // BIOS Token for setting Partial Mirror1 Size in GiB configuration (0 - 65535 GiB). - PartialMirrorValue1 *string `json:"PartialMirrorValue1,omitempty"` + PartialMirrorValue1 *string `json:"PartialMirrorValue1,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|[1-9]\\\\d{2}|[1-9]\\\\d{3}|[1-5]\\\\d{4}|6[0-4]\\\\d{3}|65[0-4]\\\\d{2}|655[0-2]\\\\d|6553[0-5])$|^(platform-default)$"` // BIOS Token for setting Partial Mirror2 Size in GiB configuration (0 - 65535 GiB). - PartialMirrorValue2 *string `json:"PartialMirrorValue2,omitempty"` + PartialMirrorValue2 *string `json:"PartialMirrorValue2,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|[1-9]\\\\d{2}|[1-9]\\\\d{3}|[1-5]\\\\d{4}|6[0-4]\\\\d{3}|65[0-4]\\\\d{2}|655[0-2]\\\\d|6553[0-5])$|^(platform-default)$"` // BIOS Token for setting Partial Mirror3 Size in GiB configuration (0 - 65535 GiB). - PartialMirrorValue3 *string `json:"PartialMirrorValue3,omitempty"` + PartialMirrorValue3 *string `json:"PartialMirrorValue3,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|[1-9]\\\\d{2}|[1-9]\\\\d{3}|[1-5]\\\\d{4}|6[0-4]\\\\d{3}|65[0-4]\\\\d{2}|655[0-2]\\\\d|6553[0-5])$|^(platform-default)$"` // BIOS Token for setting Partial Mirror4 Size in GiB configuration (0 - 65535 GiB). - PartialMirrorValue4 *string `json:"PartialMirrorValue4,omitempty"` + PartialMirrorValue4 *string `json:"PartialMirrorValue4,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|[1-9]\\\\d{2}|[1-9]\\\\d{3}|[1-5]\\\\d{4}|6[0-4]\\\\d{3}|65[0-4]\\\\d{2}|655[0-2]\\\\d|6553[0-5])$|^(platform-default)$"` // BIOS Token for setting Patrol Scrub configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `disabled` - Value - disabled for configuring PatrolScrub token. * `Enable at End of POST` - Value - Enable at End of POST for configuring PatrolScrub token. * `enabled` - Value - enabled for configuring PatrolScrub token. PatrolScrub *string `json:"PatrolScrub,omitempty"` // BIOS Token for setting Patrol Scrub Interval configuration (5 - 23 Hour). - PatrolScrubDuration *string `json:"PatrolScrubDuration,omitempty"` + PatrolScrubDuration *string `json:"PatrolScrubDuration,omitempty" validate:"regexp=^([5-9]|1\\\\d|2[0-3])$|^(platform-default)$"` // BIOS Token for setting PCIe RAS Support configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. PcIeRasSupport *string `json:"PcIeRasSupport,omitempty"` // BIOS Token for setting NVMe SSD Hot-Plug Support configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. PcIeSsdHotPlugSupport *string `json:"PcIeSsdHotPlugSupport,omitempty"` // BIOS Token for setting PCIe PLL SSC Percent configuration (0 - 255 (n/10)%). - PchPciePllSsc *string `json:"PchPciePllSsc,omitempty"` + PchPciePllSsc *string `json:"PchPciePllSsc,omitempty" validate:"regexp=^(\\\\d|[1-9]\\\\d|1\\\\d{2}|2[0-4]\\\\d|25[0-5])$|^(platform-default)$"` // BIOS Token for setting xHCI Mode configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. PchUsb30mode *string `json:"PchUsb30mode,omitempty"` // BIOS Token for setting All PCIe Slots OptionROM configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `disabled` - Value - disabled for configuring PciOptionRoMs token. * `enabled` - Value - enabled for configuring PciOptionRoMs token. * `Legacy Only` - Value - Legacy Only for configuring PciOptionRoMs token. * `UEFI Only` - Value - UEFI Only for configuring PciOptionRoMs token. @@ -18985,19 +18985,19 @@ func (o *BiosPolicy) UnmarshalJSON(data []byte) (err error) { // BIOS Token for setting SGX Auto MP Registration Agent configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. SgxAutoRegistrationAgent *string `json:"SgxAutoRegistrationAgent,omitempty"` // BIOS Token for setting SGX Epoch 0 configuration (0 - ffffffffffffffff Hash byte 7-0). - SgxEpoch0 *string `json:"SgxEpoch0,omitempty"` + SgxEpoch0 *string `json:"SgxEpoch0,omitempty" validate:"regexp=^([0-9a-fA-F]{1,16})$|^(platform-default)$"` // BIOS Token for setting SGX Epoch 1 configuration (0 - ffffffffffffffff Hash byte 7-0). - SgxEpoch1 *string `json:"SgxEpoch1,omitempty"` + SgxEpoch1 *string `json:"SgxEpoch1,omitempty" validate:"regexp=^([0-9a-fA-F]{1,16})$|^(platform-default)$"` // BIOS Token for setting SGX Factory Reset configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. SgxFactoryReset *string `json:"SgxFactoryReset,omitempty"` // BIOS Token for setting SGX PubKey Hash0 configuration (0 - ffffffffffffffff Hash byte 7-0). - SgxLePubKeyHash0 *string `json:"SgxLePubKeyHash0,omitempty"` + SgxLePubKeyHash0 *string `json:"SgxLePubKeyHash0,omitempty" validate:"regexp=^([0-9a-fA-F]{1,16})$|^(platform-default)$"` // BIOS Token for setting SGX PubKey Hash1 configuration (0 - ffffffffffffffff Hash byte 15-8). - SgxLePubKeyHash1 *string `json:"SgxLePubKeyHash1,omitempty"` + SgxLePubKeyHash1 *string `json:"SgxLePubKeyHash1,omitempty" validate:"regexp=^([0-9a-fA-F]{1,16})$|^(platform-default)$"` // BIOS Token for setting SGX PubKey Hash2 configuration (0 - ffffffffffffffff Hash byte 23-16). - SgxLePubKeyHash2 *string `json:"SgxLePubKeyHash2,omitempty"` + SgxLePubKeyHash2 *string `json:"SgxLePubKeyHash2,omitempty" validate:"regexp=^([0-9a-fA-F]{1,16})$|^(platform-default)$"` // BIOS Token for setting SGX PubKey Hash3 configuration (0 - ffffffffffffffff Hash byte 31-24). - SgxLePubKeyHash3 *string `json:"SgxLePubKeyHash3,omitempty"` + SgxLePubKeyHash3 *string `json:"SgxLePubKeyHash3,omitempty" validate:"regexp=^([0-9a-fA-F]{1,16})$|^(platform-default)$"` // BIOS Token for setting SGX Write Enable configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. SgxLeWr *string `json:"SgxLeWr,omitempty"` // BIOS Token for setting SGX Package Information In-Band Access configuration. * `platform-default` - Default value used by the platform for the BIOS setting. * `enabled` - Enables the BIOS setting. * `disabled` - Disables the BIOS setting. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_policy_list.go index e181cffda3..83d334eae2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_policy_response.go index 4c339a69c3..db6e0ce178 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_system_boot_order.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_system_boot_order.go index 5b77f92d3c..ecce15ebfe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_system_boot_order.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_system_boot_order.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_system_boot_order_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_system_boot_order_list.go index 54a88a91e3..5a739aba26 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_system_boot_order_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_system_boot_order_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_system_boot_order_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_system_boot_order_relationship.go index 7facca5b1b..66db6cca82 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_system_boot_order_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_system_boot_order_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_system_boot_order_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_system_boot_order_response.go index 76ce79e72e..47fe0234fe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_system_boot_order_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_system_boot_order_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_token_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_token_settings.go index 1f686771c1..c01d0e4898 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_token_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_token_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_token_settings_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_token_settings_list.go index e6e072a0e4..9e70a26781 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_token_settings_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_token_settings_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_token_settings_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_token_settings_relationship.go index bcdd6b559a..ce9e9b3aec 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_token_settings_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_token_settings_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_token_settings_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_token_settings_response.go index 3022e8aebc..33055921fd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_token_settings_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_token_settings_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_unit.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_unit.go index e8be06b58a..5b2bfb626a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_unit.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_unit_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_unit_list.go index 53eac48999..f631a94bde 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_unit_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_unit_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_unit_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_unit_relationship.go index 7e585cee9e..72a04a87a5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_unit_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_unit_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_unit_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_unit_response.go index 82d98d7f00..bacdc9ef13 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_unit_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_unit_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_vf_select_memory_ras_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_vf_select_memory_ras_configuration.go index 6302afa6fc..d094575d3f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_vf_select_memory_ras_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_vf_select_memory_ras_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_vf_select_memory_ras_configuration_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_vf_select_memory_ras_configuration_list.go index a8290bd717..74dd4467ed 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_vf_select_memory_ras_configuration_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_vf_select_memory_ras_configuration_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_vf_select_memory_ras_configuration_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_vf_select_memory_ras_configuration_relationship.go index 16fcd84ee2..cd14a25e6b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_vf_select_memory_ras_configuration_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_vf_select_memory_ras_configuration_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_vf_select_memory_ras_configuration_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_vf_select_memory_ras_configuration_response.go index e056fa2857..29d1c1dc84 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_vf_select_memory_ras_configuration_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bios_vf_select_memory_ras_configuration_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_bootloader.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_bootloader.go index 3a3c45e3f7..ca7b8d56e2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_bootloader.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_bootloader.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_cdd_device.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_cdd_device.go index e854f52aed..262e39ee3c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_cdd_device.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_cdd_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_cdd_device_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_cdd_device_list.go index 3192d28519..7c79204059 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_cdd_device_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_cdd_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_cdd_device_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_cdd_device_relationship.go index 8316ac388d..747b0e4050 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_cdd_device_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_cdd_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_cdd_device_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_cdd_device_response.go index 861a169305..660682a4d8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_cdd_device_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_cdd_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_configured_device.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_configured_device.go index 71697aa804..06fddaa794 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_configured_device.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_configured_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_base.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_base.go index 9c67d688e1..5b3beec2d4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_base.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type BootDeviceBase struct { // Specifies if the boot device is enabled or disabled. Enabled *bool `json:"Enabled,omitempty"` // A name that helps identify a boot device. It can be any string that adheres to the following constraints. It should start and end with an alphanumeric character. It can have underscores and hyphens. It cannot be more than 30 characters. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=((^[a-zA-Z0-9]$){1,30}|(^(([a-zA-Z0-9])([a-zA-Z0-9_\\\\-]{0,28})([a-zA-Z0-9]))$))"` AdditionalProperties map[string]interface{} } @@ -253,7 +253,7 @@ func (o *BootDeviceBase) UnmarshalJSON(data []byte) (err error) { // Specifies if the boot device is enabled or disabled. Enabled *bool `json:"Enabled,omitempty"` // A name that helps identify a boot device. It can be any string that adheres to the following constraints. It should start and end with an alphanumeric character. It can have underscores and hyphens. It cannot be more than 30 characters. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=((^[a-zA-Z0-9]$){1,30}|(^(([a-zA-Z0-9])([a-zA-Z0-9_\\\\-]{0,28})([a-zA-Z0-9]))$))"` } varBootDeviceBaseWithoutEmbeddedStruct := BootDeviceBaseWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_mode.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_mode.go index e5ba97c02b..4fd90762b9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_mode.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_mode.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_mode_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_mode_list.go index 2a8af08c51..b89c3409b3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_mode_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_mode_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_mode_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_mode_relationship.go index 2cf5e7a5cd..874ebd0a42 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_mode_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_mode_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_mode_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_mode_response.go index fea0963fd2..26aa0b851d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_mode_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_mode_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_security.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_security.go index 249539d16e..203bec516d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_security.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_security.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_security_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_security_list.go index 7d778ff283..434cc27724 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_security_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_security_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_security_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_security_relationship.go index 56d0aa013d..d21cfaf999 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_security_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_security_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_security_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_security_response.go index 2c6ec7d966..2ead4386fc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_security_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_device_boot_security_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_flex_mmc.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_flex_mmc.go index f29d7392d5..74c69d0038 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_flex_mmc.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_flex_mmc.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_hdd_device.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_hdd_device.go index a3763856ac..f84885777e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_hdd_device.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_hdd_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_hdd_device_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_hdd_device_list.go index 638d60f72a..908178f294 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_hdd_device_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_hdd_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_hdd_device_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_hdd_device_relationship.go index cdbfa6bb77..8c38442118 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_hdd_device_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_hdd_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_hdd_device_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_hdd_device_response.go index 723bdefd23..b69a8bd280 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_hdd_device_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_hdd_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_http.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_http.go index d4cc598d07..d2d75ac21b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_http.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_http.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type BootHttp struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The name of the underlying virtual ethernet interface used by the HTTP boot device. - InterfaceName *string `json:"InterfaceName,omitempty"` + InterfaceName *string `json:"InterfaceName,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]*$"` // Lists the supported Interface Source for HTTP device. Supported values are \"name\" and \"mac\". * `name` - Use interface name to select virtual ethernet interface. * `mac` - Use MAC address to select virtual ethernet interface. * `port` - Use port to select virtual ethernet interface. InterfaceSource *string `json:"InterfaceSource,omitempty"` // The IP config type to use during the HTTP boot process. For DHCP configuration, the IP address, DNS server, netmask and gateway details are obtained from DHCP server. For static configuration, please provide the IP address, DNS server, netmask, and gateway details. * `DHCP` - The type of the IP config is DHCP. * `Static` - The type of the IP config is Static. @@ -37,13 +37,13 @@ type BootHttp struct { // The IP address family type to use during the HTTP boot process. * `IPv4` - The type of the IP address is IPv4. * `IPv6` - The type of the IP address is IPv6. IpType *string `json:"IpType,omitempty"` // The MAC Address of the underlying virtual ethernet interface used by the HTTP boot device. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^(((\\\\d|([a-f]|[A-F])){2}:){5}(\\\\d|([a-f]|[A-F])){2})$"` // The Port ID of the adapter on which the underlying virtual ethernet interface is present. If no port is specified, the default value is -1. Supported values are 0 to 255. Port *int64 `json:"Port,omitempty"` // Protocol to be used for HTTP boot. HTTPS require root certificate for authentication. * `HTTPS` - Secure HTTP protocol, certificate required for authentication. * `HTTP` - HTTP protocol without security certificate requirement. Protocol *string `json:"Protocol,omitempty"` // The slot ID of the adapter on which the underlying virtual ethernet interface is present. Supported values are ( 1 - 255, \"MLOM\", \"L\", \"L1\", \"L2\", \"OCP\"). - Slot *string `json:"Slot,omitempty"` + Slot *string `json:"Slot,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]|L|MLOM|L1|L2|OCP)$"` StaticIpV4Settings NullableBootStaticIpV4Settings `json:"StaticIpV4Settings,omitempty"` StaticIpV6Settings NullableBootStaticIpV6Settings `json:"StaticIpV6Settings,omitempty"` // Boot resource location in URI format. @@ -645,7 +645,7 @@ func (o *BootHttp) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The name of the underlying virtual ethernet interface used by the HTTP boot device. - InterfaceName *string `json:"InterfaceName,omitempty"` + InterfaceName *string `json:"InterfaceName,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]*$"` // Lists the supported Interface Source for HTTP device. Supported values are \"name\" and \"mac\". * `name` - Use interface name to select virtual ethernet interface. * `mac` - Use MAC address to select virtual ethernet interface. * `port` - Use port to select virtual ethernet interface. InterfaceSource *string `json:"InterfaceSource,omitempty"` // The IP config type to use during the HTTP boot process. For DHCP configuration, the IP address, DNS server, netmask and gateway details are obtained from DHCP server. For static configuration, please provide the IP address, DNS server, netmask, and gateway details. * `DHCP` - The type of the IP config is DHCP. * `Static` - The type of the IP config is Static. @@ -653,13 +653,13 @@ func (o *BootHttp) UnmarshalJSON(data []byte) (err error) { // The IP address family type to use during the HTTP boot process. * `IPv4` - The type of the IP address is IPv4. * `IPv6` - The type of the IP address is IPv6. IpType *string `json:"IpType,omitempty"` // The MAC Address of the underlying virtual ethernet interface used by the HTTP boot device. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^(((\\\\d|([a-f]|[A-F])){2}:){5}(\\\\d|([a-f]|[A-F])){2})$"` // The Port ID of the adapter on which the underlying virtual ethernet interface is present. If no port is specified, the default value is -1. Supported values are 0 to 255. Port *int64 `json:"Port,omitempty"` // Protocol to be used for HTTP boot. HTTPS require root certificate for authentication. * `HTTPS` - Secure HTTP protocol, certificate required for authentication. * `HTTP` - HTTP protocol without security certificate requirement. Protocol *string `json:"Protocol,omitempty"` // The slot ID of the adapter on which the underlying virtual ethernet interface is present. Supported values are ( 1 - 255, \"MLOM\", \"L\", \"L1\", \"L2\", \"OCP\"). - Slot *string `json:"Slot,omitempty"` + Slot *string `json:"Slot,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]|L|MLOM|L1|L2|OCP)$"` StaticIpV4Settings NullableBootStaticIpV4Settings `json:"StaticIpV4Settings,omitempty"` StaticIpV6Settings NullableBootStaticIpV6Settings `json:"StaticIpV6Settings,omitempty"` // Boot resource location in URI format. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_iscsi.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_iscsi.go index 9c3c90e3c3..4c0a1fe56b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_iscsi.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_iscsi.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,11 +30,11 @@ type BootIscsi struct { ObjectType string `json:"ObjectType"` Bootloader NullableBootBootloader `json:"Bootloader,omitempty"` // The name of the underlying virtual ethernet interface used by the iSCSI boot device. - InterfaceName *string `json:"InterfaceName,omitempty"` + InterfaceName *string `json:"InterfaceName,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]*$"` // Port ID of the ISCSI boot device. Port *int64 `json:"Port,omitempty"` // The slot id of the device. Supported values are (1 - 255, \"MLOM\", \"L\", \"L1\", \"L2\", \"OCP\"). - Slot *string `json:"Slot,omitempty"` + Slot *string `json:"Slot,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]|L|MLOM|L1|L2|OCP)$"` AdditionalProperties map[string]interface{} } @@ -361,11 +361,11 @@ func (o *BootIscsi) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` Bootloader NullableBootBootloader `json:"Bootloader,omitempty"` // The name of the underlying virtual ethernet interface used by the iSCSI boot device. - InterfaceName *string `json:"InterfaceName,omitempty"` + InterfaceName *string `json:"InterfaceName,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]*$"` // Port ID of the ISCSI boot device. Port *int64 `json:"Port,omitempty"` // The slot id of the device. Supported values are (1 - 255, \"MLOM\", \"L\", \"L1\", \"L2\", \"OCP\"). - Slot *string `json:"Slot,omitempty"` + Slot *string `json:"Slot,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]|L|MLOM|L1|L2|OCP)$"` } varBootIscsiWithoutEmbeddedStruct := BootIscsiWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_iscsi_device.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_iscsi_device.go index 27f91b0109..01cd6a5059 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_iscsi_device.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_iscsi_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_iscsi_device_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_iscsi_device_list.go index 5aaf47088b..0884fe67e7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_iscsi_device_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_iscsi_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_iscsi_device_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_iscsi_device_relationship.go index 8dcbcec9a8..d3c32e3ab6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_iscsi_device_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_iscsi_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_iscsi_device_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_iscsi_device_response.go index 21b182adee..8bf19ec3ea 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_iscsi_device_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_iscsi_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_local_cdd.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_local_cdd.go index 6963b5fdfe..5d08394e6a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_local_cdd.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_local_cdd.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_local_disk.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_local_disk.go index 8b0ea24bbe..e49e297e8d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_local_disk.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_local_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,7 +30,7 @@ type BootLocalDisk struct { ObjectType string `json:"ObjectType"` Bootloader NullableBootBootloader `json:"Bootloader,omitempty"` // The slot id of the local disk device. Supported values for Standalone Rack servers are (1-205, \"M\", \"HBA\", \"SAS\", \"RAID\", \"MRAID\", \"MRAID1\", \"MRAID2\", \"MSTOR-RAID\"). Supported values for FI-attached servers are (1-205, \"RAID\", \"MRAID\", \"FMEZZ1-SAS\", \"MRAID1\", \"MRAID2\", \"MSTOR-RAID\", \"MSTOR-RAID-1\", \"MSTOR-RAID-2\"). - Slot *string `json:"Slot,omitempty"` + Slot *string `json:"Slot,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|20[0-5]|M|HBA|SAS|MRAID|RAID|MRAID1|MRAID2|MSTOR-RAID|FMEZZ1-SAS|MSTOR-RAID-1|MSTOR-RAID-2)$"` AdditionalProperties map[string]interface{} } @@ -283,7 +283,7 @@ func (o *BootLocalDisk) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` Bootloader NullableBootBootloader `json:"Bootloader,omitempty"` // The slot id of the local disk device. Supported values for Standalone Rack servers are (1-205, \"M\", \"HBA\", \"SAS\", \"RAID\", \"MRAID\", \"MRAID1\", \"MRAID2\", \"MSTOR-RAID\"). Supported values for FI-attached servers are (1-205, \"RAID\", \"MRAID\", \"FMEZZ1-SAS\", \"MRAID1\", \"MRAID2\", \"MSTOR-RAID\", \"MSTOR-RAID-1\", \"MSTOR-RAID-2\"). - Slot *string `json:"Slot,omitempty"` + Slot *string `json:"Slot,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|20[0-5]|M|HBA|SAS|MRAID|RAID|MRAID1|MRAID2|MSTOR-RAID|FMEZZ1-SAS|MSTOR-RAID-1|MSTOR-RAID-2)$"` } varBootLocalDiskWithoutEmbeddedStruct := BootLocalDiskWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_nvme.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_nvme.go index bb714e4cd6..31b8d706a3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_nvme.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_nvme.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_nvme_device.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_nvme_device.go index 9fd7cf3288..5e83c18e3a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_nvme_device.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_nvme_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_nvme_device_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_nvme_device_list.go index 7cf085c93a..4cb616eb91 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_nvme_device_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_nvme_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_nvme_device_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_nvme_device_relationship.go index 313123c625..01c2685a72 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_nvme_device_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_nvme_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_nvme_device_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_nvme_device_response.go index b0bab04147..aa7defff94 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_nvme_device_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_nvme_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pch_storage.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pch_storage.go index 38d3f1fd61..e5dad40a8b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pch_storage.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pch_storage.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pch_storage_device.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pch_storage_device.go index fa9ff34f74..0e676a1ad0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pch_storage_device.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pch_storage_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pch_storage_device_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pch_storage_device_list.go index 57a21e03aa..9a07373536 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pch_storage_device_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pch_storage_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pch_storage_device_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pch_storage_device_relationship.go index 87ee7aeb10..dc3013d5d2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pch_storage_device_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pch_storage_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pch_storage_device_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pch_storage_device_response.go index 55d2bf41a7..0e73a92322 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pch_storage_device_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pch_storage_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_precision_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_precision_policy.go index d6cd5b52b8..5fd3a91870 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_precision_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_precision_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_precision_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_precision_policy_list.go index 75417d5da1..4d4ac66b5d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_precision_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_precision_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_precision_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_precision_policy_response.go index cd2bb29dfc..1240ea1a67 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_precision_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_precision_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pxe.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pxe.go index 57475d4b22..092c32c143 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pxe.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pxe.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,17 +29,17 @@ type BootPxe struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The name of the underlying virtual ethernet interface used by the PXE boot device. - InterfaceName *string `json:"InterfaceName,omitempty"` + InterfaceName *string `json:"InterfaceName,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]*$"` // Lists the supported methods to provide network boot device configuration. Supported values are \"name\" and \"mac\". * `name` - Use interface name to select virtual ethernet interface. * `mac` - Use MAC address to select virtual ethernet interface. * `port` - Use port to select virtual ethernet interface. InterfaceSource *string `json:"InterfaceSource,omitempty"` // The IP Address family type to use during the PXE Boot process. * `None` - Default value if IpType is not specified. * `IPv4` - The IPv4 address family type. * `IPv6` - The IPv6 address family type. IpType *string `json:"IpType,omitempty"` // The MAC Address of the underlying virtual ethernet interface used by the PXE boot device. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^(((\\\\d|([a-f]|[A-F])){2}:){5}(\\\\d|([a-f]|[A-F])){2})$"` // The Port ID of the adapter on which the underlying virtual ethernet interface is present. If no port is specified, the default value is -1. Supported values are 0 to 255. Port *int64 `json:"Port,omitempty"` // The slot ID of the adapter on which the underlying virtual ethernet interface is present. Supported values are ( 1 - 255, \"MLOM\", \"L\", \"L1\", \"L2\", \"OCP\"). - Slot *string `json:"Slot,omitempty"` + Slot *string `json:"Slot,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]|L|MLOM|L1|L2|OCP)$"` AdditionalProperties map[string]interface{} } @@ -432,17 +432,17 @@ func (o *BootPxe) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The name of the underlying virtual ethernet interface used by the PXE boot device. - InterfaceName *string `json:"InterfaceName,omitempty"` + InterfaceName *string `json:"InterfaceName,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]*$"` // Lists the supported methods to provide network boot device configuration. Supported values are \"name\" and \"mac\". * `name` - Use interface name to select virtual ethernet interface. * `mac` - Use MAC address to select virtual ethernet interface. * `port` - Use port to select virtual ethernet interface. InterfaceSource *string `json:"InterfaceSource,omitempty"` // The IP Address family type to use during the PXE Boot process. * `None` - Default value if IpType is not specified. * `IPv4` - The IPv4 address family type. * `IPv6` - The IPv6 address family type. IpType *string `json:"IpType,omitempty"` // The MAC Address of the underlying virtual ethernet interface used by the PXE boot device. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^(((\\\\d|([a-f]|[A-F])){2}:){5}(\\\\d|([a-f]|[A-F])){2})$"` // The Port ID of the adapter on which the underlying virtual ethernet interface is present. If no port is specified, the default value is -1. Supported values are 0 to 255. Port *int64 `json:"Port,omitempty"` // The slot ID of the adapter on which the underlying virtual ethernet interface is present. Supported values are ( 1 - 255, \"MLOM\", \"L\", \"L1\", \"L2\", \"OCP\"). - Slot *string `json:"Slot,omitempty"` + Slot *string `json:"Slot,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]|L|MLOM|L1|L2|OCP)$"` } varBootPxeWithoutEmbeddedStruct := BootPxeWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pxe_device.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pxe_device.go index 59d07f8001..4808d47d42 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pxe_device.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pxe_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pxe_device_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pxe_device_list.go index 9b8e355829..c72c70cd9f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pxe_device_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pxe_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pxe_device_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pxe_device_relationship.go index effbcd78a4..9952a7de76 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pxe_device_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pxe_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pxe_device_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pxe_device_response.go index 9f0e064dec..8bf267a85f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pxe_device_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_pxe_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_san.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_san.go index 7756820b56..76c6027605 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_san.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_san.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,13 +30,13 @@ type BootSan struct { ObjectType string `json:"ObjectType"` Bootloader NullableBootBootloader `json:"Bootloader,omitempty"` // The name of the underlying vHBA interface to be used by the SAN boot device. - InterfaceName *string `json:"InterfaceName,omitempty"` + InterfaceName *string `json:"InterfaceName,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]*$"` // The Logical Unit Number (LUN) of the device. For SAN boot configuration to be deployed on a server with 1300 family of Cisco VIC adapters, the recommendation is for the boot LUN to be numbered as 0 to ensure that LUN is mounted as the first disk from which the server boots. Lun *int64 `json:"Lun,omitempty"` // Slot ID of the device. Supported values are ( 1 - 255, \"MLOM\", \"L1\", \"L2\" ). - Slot *string `json:"Slot,omitempty"` + Slot *string `json:"Slot,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]|MLOM|L1|L2)$"` // The WWPN Address of the underlying fibre channel interface used by the SAN boot device. Value must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. - Wwpn *string `json:"Wwpn,omitempty"` + Wwpn *string `json:"Wwpn,omitempty" validate:"regexp=^$|(^([0-9a-fA-F]{2}:){7}[0-9a-fA-F]{2}$)"` AdditionalProperties map[string]interface{} } @@ -398,13 +398,13 @@ func (o *BootSan) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` Bootloader NullableBootBootloader `json:"Bootloader,omitempty"` // The name of the underlying vHBA interface to be used by the SAN boot device. - InterfaceName *string `json:"InterfaceName,omitempty"` + InterfaceName *string `json:"InterfaceName,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]*$"` // The Logical Unit Number (LUN) of the device. For SAN boot configuration to be deployed on a server with 1300 family of Cisco VIC adapters, the recommendation is for the boot LUN to be numbered as 0 to ensure that LUN is mounted as the first disk from which the server boots. Lun *int64 `json:"Lun,omitempty"` // Slot ID of the device. Supported values are ( 1 - 255, \"MLOM\", \"L1\", \"L2\" ). - Slot *string `json:"Slot,omitempty"` + Slot *string `json:"Slot,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]|MLOM|L1|L2)$"` // The WWPN Address of the underlying fibre channel interface used by the SAN boot device. Value must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. - Wwpn *string `json:"Wwpn,omitempty"` + Wwpn *string `json:"Wwpn,omitempty" validate:"regexp=^$|(^([0-9a-fA-F]{2}:){7}[0-9a-fA-F]{2}$)"` } varBootSanWithoutEmbeddedStruct := BootSanWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_san_device.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_san_device.go index 2c4737e637..948c98290f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_san_device.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_san_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_san_device_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_san_device_list.go index 7fae00c8d0..18f455d49e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_san_device_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_san_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_san_device_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_san_device_relationship.go index 9998844c5b..74a0f553bc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_san_device_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_san_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_san_device_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_san_device_response.go index 2ba28e30d3..3dcdbdac97 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_san_device_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_san_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_sd_card.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_sd_card.go index c4076cbdcd..3919cc62f1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_sd_card.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_sd_card.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_sd_device.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_sd_device.go index b45e47259a..f46f409a2e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_sd_device.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_sd_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_sd_device_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_sd_device_list.go index 662c56d5ec..9a5f974a1b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_sd_device_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_sd_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_sd_device_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_sd_device_relationship.go index b11b1cbcd0..caa567017b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_sd_device_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_sd_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_sd_device_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_sd_device_response.go index c665107fd9..1075a0abd3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_sd_device_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_sd_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_static_ip_v4_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_static_ip_v4_settings.go index e4af996dd0..1978508912 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_static_ip_v4_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_static_ip_v4_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,13 +29,13 @@ type BootStaticIpV4Settings struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IP address of DNS server. - DnsIp *string `json:"DnsIp,omitempty"` + DnsIp *string `json:"DnsIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP address of default gateway. - GatewayIp *string `json:"GatewayIp,omitempty"` + GatewayIp *string `json:"GatewayIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Ipv4 static Internet Protocol address. - Ip *string `json:"Ip,omitempty"` + Ip *string `json:"Ip,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Network mask of the IP address. - NetworkMask *string `json:"NetworkMask,omitempty"` + NetworkMask *string `json:"NetworkMask,omitempty" validate:"regexp=^$|^(((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}))$"` AdditionalProperties map[string]interface{} } @@ -344,13 +344,13 @@ func (o *BootStaticIpV4Settings) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IP address of DNS server. - DnsIp *string `json:"DnsIp,omitempty"` + DnsIp *string `json:"DnsIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP address of default gateway. - GatewayIp *string `json:"GatewayIp,omitempty"` + GatewayIp *string `json:"GatewayIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Ipv4 static Internet Protocol address. - Ip *string `json:"Ip,omitempty"` + Ip *string `json:"Ip,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Network mask of the IP address. - NetworkMask *string `json:"NetworkMask,omitempty"` + NetworkMask *string `json:"NetworkMask,omitempty" validate:"regexp=^$|^(((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}))$"` } varBootStaticIpV4SettingsWithoutEmbeddedStruct := BootStaticIpV4SettingsWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_static_ip_v6_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_static_ip_v6_settings.go index 09856a32e2..8642dc30c2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_static_ip_v6_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_static_ip_v6_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,11 +29,11 @@ type BootStaticIpV6Settings struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IP address of DNS server. - DnsIp *string `json:"DnsIp,omitempty"` + DnsIp *string `json:"DnsIp,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // IP address of default gateway. - GatewayIp *string `json:"GatewayIp,omitempty"` + GatewayIp *string `json:"GatewayIp,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // Ipv6 static Internet Protocol address. - Ip *string `json:"Ip,omitempty"` + Ip *string `json:"Ip,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // A prefix length which masks the IP address and divides the IP address into network address and host address. PrefixLength *int64 `json:"PrefixLength,omitempty"` AdditionalProperties map[string]interface{} @@ -348,11 +348,11 @@ func (o *BootStaticIpV6Settings) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IP address of DNS server. - DnsIp *string `json:"DnsIp,omitempty"` + DnsIp *string `json:"DnsIp,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // IP address of default gateway. - GatewayIp *string `json:"GatewayIp,omitempty"` + GatewayIp *string `json:"GatewayIp,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // Ipv6 static Internet Protocol address. - Ip *string `json:"Ip,omitempty"` + Ip *string `json:"Ip,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // A prefix length which masks the IP address and divides the IP address into network address and host address. PrefixLength *int64 `json:"PrefixLength,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_uefi_shell.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_uefi_shell.go index ea295632db..1c43ce084a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_uefi_shell.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_uefi_shell.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_uefi_shell_device.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_uefi_shell_device.go index 5cd1b93127..e32e6a4ac5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_uefi_shell_device.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_uefi_shell_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_uefi_shell_device_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_uefi_shell_device_list.go index 3cad2b9c20..2b807427e2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_uefi_shell_device_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_uefi_shell_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_uefi_shell_device_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_uefi_shell_device_relationship.go index 0769a069a6..74ab05b1d6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_uefi_shell_device_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_uefi_shell_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_uefi_shell_device_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_uefi_shell_device_response.go index 25954589aa..f9fca1686c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_uefi_shell_device_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_uefi_shell_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_usb.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_usb.go index 8883c1e11f..6844a4cf3e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_usb.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_usb.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_usb_device.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_usb_device.go index 2440eecec2..4bb06c9127 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_usb_device.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_usb_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_usb_device_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_usb_device_list.go index 0a45022ff5..96ccf664fa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_usb_device_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_usb_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_usb_device_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_usb_device_relationship.go index 3820505257..39233a30b5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_usb_device_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_usb_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_usb_device_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_usb_device_response.go index 5383eba9a8..cbf6793cfe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_usb_device_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_usb_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_virtual_media.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_virtual_media.go index 99b1277fe2..002162fdeb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_virtual_media.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_virtual_media.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_vmedia_device.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_vmedia_device.go index 2e47f0fe4d..64514aa6e0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_vmedia_device.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_vmedia_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_vmedia_device_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_vmedia_device_list.go index fe689abdfd..f1527e3b7b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_vmedia_device_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_vmedia_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_vmedia_device_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_vmedia_device_relationship.go index 131ac388ae..123675c755 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_vmedia_device_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_vmedia_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_vmedia_device_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_vmedia_device_response.go index 3d09248ace..1c6e9e14ca 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_vmedia_device_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_boot_vmedia_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_api_result.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_api_result.go index ae278b6e2c..5ffdba1c8a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_api_result.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_api_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_export.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_export.go index cd1c05ff68..c4217923bc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_export.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_export.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -42,7 +42,7 @@ type BulkExport struct { IncludeOrgIdentity *bool `json:"IncludeOrgIdentity,omitempty"` Items []MoMoRef `json:"Items,omitempty"` // An identifier for the export instance. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9][a-zA-Z0-9_-]{1,92}$"` // The permission identifier which indicates the permission that current user has that will allow to start this export operation. PermissionId *string `json:"PermissionId,omitempty"` // 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. @@ -784,7 +784,7 @@ func (o *BulkExport) UnmarshalJSON(data []byte) (err error) { IncludeOrgIdentity *bool `json:"IncludeOrgIdentity,omitempty"` Items []MoMoRef `json:"Items,omitempty"` // An identifier for the export instance. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9][a-zA-Z0-9_-]{1,92}$"` // The permission identifier which indicates the permission that current user has that will allow to start this export operation. PermissionId *string `json:"PermissionId,omitempty"` // 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. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_export_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_export_list.go index f11cc0350d..f534e1791a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_export_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_export_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_export_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_export_relationship.go index 33512ac826..4d70cf0ce3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_export_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_export_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_export_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_export_response.go index 464f19b983..6e8c9d95c2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_export_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_export_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_exported_item.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_exported_item.go index 679231a4ec..e7479daa1f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_exported_item.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_exported_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_exported_item_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_exported_item_list.go index 0ea791b01d..ac58eaad45 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_exported_item_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_exported_item_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_exported_item_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_exported_item_relationship.go index 3fe06a24a2..914cddbf86 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_exported_item_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_exported_item_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_exported_item_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_exported_item_response.go index ef5b2f3dcb..3384a431cd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_exported_item_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_exported_item_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_http_header.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_http_header.go index 098dfeae99..c28514bb18 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_http_header.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_http_header.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_cloner.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_cloner.go index d22da36c40..830b087cec 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_cloner.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_cloner.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type BulkMoCloner struct { Sources []MoBaseMo `json:"Sources,omitempty"` Targets []MoBaseMo `json:"Targets,omitempty"` // A user-friendly short name to identify the workflow. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), forward slash (/), comma or an underscore (_). - WorkflowNameSuffix *string `json:"WorkflowNameSuffix,omitempty"` + WorkflowNameSuffix *string `json:"WorkflowNameSuffix,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_.\\\\,\\/:-]{0,63}$"` AsyncResult NullableBulkResultRelationship `json:"AsyncResult,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` AdditionalProperties map[string]interface{} @@ -479,7 +479,7 @@ func (o *BulkMoCloner) UnmarshalJSON(data []byte) (err error) { Sources []MoBaseMo `json:"Sources,omitempty"` Targets []MoBaseMo `json:"Targets,omitempty"` // A user-friendly short name to identify the workflow. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), forward slash (/), comma or an underscore (_). - WorkflowNameSuffix *string `json:"WorkflowNameSuffix,omitempty"` + WorkflowNameSuffix *string `json:"WorkflowNameSuffix,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_.\\\\,\\/:-]{0,63}$"` AsyncResult NullableBulkResultRelationship `json:"AsyncResult,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_cloner_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_cloner_list.go index 14a9844623..6e07348b08 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_cloner_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_cloner_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_cloner_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_cloner_relationship.go index dd1011abb8..8631a1ae60 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_cloner_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_cloner_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_cloner_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_cloner_response.go index 407455018c..ede9e76fc7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_cloner_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_cloner_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_deep_cloner.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_deep_cloner.go index 7d854d896f..01f6511842 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_deep_cloner.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_deep_cloner.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,13 +30,13 @@ type BulkMoDeepCloner struct { ObjectType string `json:"ObjectType"` ExcludeProperties []string `json:"ExcludeProperties,omitempty"` // Name suffix to be applied to all the MOs being cloned when ReferencePolicy chosen is CreateNew. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_). - ReferenceNameSuffix *string `json:"ReferenceNameSuffix,omitempty"` + ReferenceNameSuffix *string `json:"ReferenceNameSuffix,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_-]{1,64}$"` // User selected reference clone behavior. Applies to all the MOs being cloned. * `ReuseAll` - Any policies in the destination organization whose name matches the policy referenced in the cloned policy will be attached. If no policyin the destination organization matches by name, a policy will be cloned with the same name.Pool references will always be matched by name. If not found, the pool will be cloned in the destination organization, but no identifierblocks will be created. * `CreateNew` - New policies will be created for the source and all the attached policies. If a policy of the same name and type already exists in thedestination organization or any organization from which it shares policies, a clone will be created with the provided suffix added to the name.Pool references will always be matched by name. If not found, the pool will be cloned in the destination organization, but no identifierblocks will be created. ReferencePolicy *string `json:"ReferencePolicy,omitempty"` Source *MoMoRef `json:"Source,omitempty"` Targets []MoBaseMo `json:"Targets,omitempty"` // A user-friendly short name to identify the workflow. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), forward slash (/), comma or an underscore (_). - WorkflowNameSuffix *string `json:"WorkflowNameSuffix,omitempty"` + WorkflowNameSuffix *string `json:"WorkflowNameSuffix,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_.\\\\,\\/:-]{0,63}$"` AsyncResult NullableBulkResultRelationship `json:"AsyncResult,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` AdditionalProperties map[string]interface{} @@ -516,13 +516,13 @@ func (o *BulkMoDeepCloner) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` ExcludeProperties []string `json:"ExcludeProperties,omitempty"` // Name suffix to be applied to all the MOs being cloned when ReferencePolicy chosen is CreateNew. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_). - ReferenceNameSuffix *string `json:"ReferenceNameSuffix,omitempty"` + ReferenceNameSuffix *string `json:"ReferenceNameSuffix,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_-]{1,64}$"` // User selected reference clone behavior. Applies to all the MOs being cloned. * `ReuseAll` - Any policies in the destination organization whose name matches the policy referenced in the cloned policy will be attached. If no policyin the destination organization matches by name, a policy will be cloned with the same name.Pool references will always be matched by name. If not found, the pool will be cloned in the destination organization, but no identifierblocks will be created. * `CreateNew` - New policies will be created for the source and all the attached policies. If a policy of the same name and type already exists in thedestination organization or any organization from which it shares policies, a clone will be created with the provided suffix added to the name.Pool references will always be matched by name. If not found, the pool will be cloned in the destination organization, but no identifierblocks will be created. ReferencePolicy *string `json:"ReferencePolicy,omitempty"` Source *MoMoRef `json:"Source,omitempty"` Targets []MoBaseMo `json:"Targets,omitempty"` // A user-friendly short name to identify the workflow. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), forward slash (/), comma or an underscore (_). - WorkflowNameSuffix *string `json:"WorkflowNameSuffix,omitempty"` + WorkflowNameSuffix *string `json:"WorkflowNameSuffix,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_.\\\\,\\/:-]{0,63}$"` AsyncResult NullableBulkResultRelationship `json:"AsyncResult,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_deep_cloner_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_deep_cloner_list.go index 4fa17f3348..b90ee054ff 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_deep_cloner_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_deep_cloner_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_deep_cloner_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_deep_cloner_relationship.go index b44da6fc4e..e5be3e87b0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_deep_cloner_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_deep_cloner_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_deep_cloner_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_deep_cloner_response.go index 19167c2abd..370b42bf5d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_deep_cloner_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_deep_cloner_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_merger.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_merger.go index 870b4c4417..36ba446931 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_merger.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_merger.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type BulkMoMerger struct { TargetConfig *MoBaseMo `json:"TargetConfig,omitempty"` Targets []MoBaseMo `json:"Targets,omitempty"` // A user-friendly short name to identify the workflow. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), forward slash (/), comma or an underscore (_). - WorkflowNameSuffix *string `json:"WorkflowNameSuffix,omitempty"` + WorkflowNameSuffix *string `json:"WorkflowNameSuffix,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_.\\\\,\\/:-]{0,63}$"` AsyncResult NullableBulkResultRelationship `json:"AsyncResult,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` AdditionalProperties map[string]interface{} @@ -521,7 +521,7 @@ func (o *BulkMoMerger) UnmarshalJSON(data []byte) (err error) { TargetConfig *MoBaseMo `json:"TargetConfig,omitempty"` Targets []MoBaseMo `json:"Targets,omitempty"` // A user-friendly short name to identify the workflow. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), forward slash (/), comma or an underscore (_). - WorkflowNameSuffix *string `json:"WorkflowNameSuffix,omitempty"` + WorkflowNameSuffix *string `json:"WorkflowNameSuffix,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_.\\\\,\\/:-]{0,63}$"` AsyncResult NullableBulkResultRelationship `json:"AsyncResult,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_merger_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_merger_list.go index 95521a3e33..83623f129e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_merger_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_merger_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_merger_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_merger_relationship.go index d5a4d7f9b8..43cdb8c474 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_merger_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_merger_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_merger_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_merger_response.go index 73b2a4ff64..0f85fffd7e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_merger_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_mo_merger_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_multi_relation_entry_patch.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_multi_relation_entry_patch.go index 632f9ff9fe..b2550f00f3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_multi_relation_entry_patch.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_multi_relation_entry_patch.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_patch_content.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_patch_content.go index 93379359d8..7df7deddff 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_patch_content.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_patch_content.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_request.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_request.go index 0b3becb532..bafd780aa3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_request.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_request_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_request_list.go index b6c9e99537..0fbb5d5bfe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_request_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_request_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_request_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_request_relationship.go index cd72359009..b807ce329f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_request_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_request_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_request_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_request_response.go index 8732720863..e1ff474a28 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_request_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_request_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_rest_result.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_rest_result.go index 45c66c96ac..52f753db13 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_rest_result.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_rest_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_rest_sub_request.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_rest_sub_request.go index 4941c6e2d5..f289d199da 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_rest_sub_request.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_rest_sub_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_result.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_result.go index f9e67dabc9..94e9408d8d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_result.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_result_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_result_list.go index 03b9a05d65..dda2540a6d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_result_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_result_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_result_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_result_relationship.go index 537c840aa3..24b26f90d8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_result_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_result_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_result_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_result_response.go index 1562f0094e..2b14473ba3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_result_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_result_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_sec_resource_roles.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_sec_resource_roles.go index 7ede26fe10..190acaf863 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_sec_resource_roles.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_sec_resource_roles.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_sub_request.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_sub_request.go index 7e9b5dcf89..1a6df6466d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_sub_request.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_sub_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_sub_request_obj.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_sub_request_obj.go index b216cacd2b..afbadeb780 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_sub_request_obj.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_sub_request_obj.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_sub_request_obj_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_sub_request_obj_list.go index b0d45d1fcf..b16a418bd4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_sub_request_obj_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_sub_request_obj_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_sub_request_obj_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_sub_request_obj_relationship.go index ea1fdc6b19..b362e6eb22 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_sub_request_obj_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_sub_request_obj_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_sub_request_obj_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_sub_request_obj_response.go index 69699815df..1233af2b81 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_sub_request_obj_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_bulk_sub_request_obj_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_actions_meta_data.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_actions_meta_data.go index 2d819cac61..801e4541b6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_actions_meta_data.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_actions_meta_data.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_actions_meta_data_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_actions_meta_data_list.go index 0ac3b22ef4..7886f18c57 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_actions_meta_data_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_actions_meta_data_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_actions_meta_data_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_actions_meta_data_response.go index e3769a3c0c..b0f934de1c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_actions_meta_data_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_actions_meta_data_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_deprecated_def.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_deprecated_def.go index e935912da8..e99e144075 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_deprecated_def.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_deprecated_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_deprecated_def_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_deprecated_def_list.go index 60b5d3792c..a00445283e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_deprecated_def_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_deprecated_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_deprecated_def_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_deprecated_def_response.go index 775147b4bc..a228909cc0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_deprecated_def_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_deprecated_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_firmware_requirement.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_firmware_requirement.go index b14c2eb861..c1e0ea146e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_firmware_requirement.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_firmware_requirement.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_firmware_requirement_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_firmware_requirement_list.go index f9d49b5785..93c77bd359 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_firmware_requirement_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_firmware_requirement_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_firmware_requirement_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_firmware_requirement_response.go index aab73b4b19..990b28384d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_firmware_requirement_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_firmware_requirement_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_unit_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_unit_descriptor.go index 6e594ca39a..5c91fe715c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_unit_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_unit_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_unit_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_unit_descriptor_list.go index e1a5c55d41..9ac76483e5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_unit_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_unit_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_unit_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_unit_descriptor_response.go index 25f95c01c7..91e97aa6a9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_unit_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_unit_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_update_constraint_meta.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_update_constraint_meta.go index 17ec8dbe38..9d8d812c24 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_update_constraint_meta.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_update_constraint_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_update_constraint_meta_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_update_constraint_meta_list.go index 09890dd232..13568b2e47 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_update_constraint_meta_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_update_constraint_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_update_constraint_meta_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_update_constraint_meta_response.go index 2f4a3a78ce..004729f543 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_update_constraint_meta_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_update_constraint_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_upgrade_support_meta.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_upgrade_support_meta.go index d9c5f903c1..efb3d620d7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_upgrade_support_meta.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_upgrade_support_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_upgrade_support_meta_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_upgrade_support_meta_list.go index e656626753..c8718bfebc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_upgrade_support_meta_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_upgrade_support_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_upgrade_support_meta_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_upgrade_support_meta_response.go index 528be7743c..e1758b6ca3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_upgrade_support_meta_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_adapter_upgrade_support_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_capability.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_capability.go index 745709efac..54d7a71020 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_capability.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_capability.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_capability_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_capability_relationship.go index e4ba624193..4297bd16b2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_capability_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_capability_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_catalog.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_catalog.go index 47cf965c8d..793fc7786e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_catalog.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_catalog.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_catalog_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_catalog_list.go index a1542b7e5a..bc3a552a0e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_catalog_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_catalog_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_catalog_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_catalog_response.go index 08b2d32842..5e92fe751a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_catalog_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_catalog_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_descriptor.go index d106c7acbc..6785b96ae2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_descriptor_list.go index 344a4e56ff..8f531ee08f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_descriptor_response.go index 7ea2245996..b9bc38e944 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_manufacturing_def.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_manufacturing_def.go index 5a40aa6409..e064d9946e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_manufacturing_def.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_manufacturing_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_manufacturing_def_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_manufacturing_def_list.go index b6d2d8efca..fff66fe074 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_manufacturing_def_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_manufacturing_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_manufacturing_def_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_manufacturing_def_response.go index 14d5f5240f..9d84abce4f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_manufacturing_def_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_manufacturing_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_upgrade_support_meta.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_upgrade_support_meta.go index f79a804485..a021265e9d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_upgrade_support_meta.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_upgrade_support_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_upgrade_support_meta_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_upgrade_support_meta_list.go index 02fdc9e002..cd35416a9f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_upgrade_support_meta_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_upgrade_support_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_upgrade_support_meta_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_upgrade_support_meta_response.go index b522e3a36f..6883d13d22 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_upgrade_support_meta_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_chassis_upgrade_support_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_cimc_firmware_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_cimc_firmware_descriptor.go index 373412894d..a3bd33d3f2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_cimc_firmware_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_cimc_firmware_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_cimc_firmware_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_cimc_firmware_descriptor_list.go index 37651d7adc..8907dca496 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_cimc_firmware_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_cimc_firmware_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_cimc_firmware_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_cimc_firmware_descriptor_response.go index 2db6bf5297..5314ecb48d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_cimc_firmware_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_cimc_firmware_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_cpu_endpoint_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_cpu_endpoint_descriptor.go index fd6ff92a9b..a38e0cd2ba 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_cpu_endpoint_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_cpu_endpoint_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_cpu_endpoint_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_cpu_endpoint_descriptor_list.go index d5fa0c8b3d..7b25ec731f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_cpu_endpoint_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_cpu_endpoint_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_cpu_endpoint_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_cpu_endpoint_descriptor_response.go index 09930f7059..0e70f4ae2a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_cpu_endpoint_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_cpu_endpoint_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_dimms_endpoint_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_dimms_endpoint_descriptor.go index b3a460605b..0054ab5464 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_dimms_endpoint_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_dimms_endpoint_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_dimms_endpoint_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_dimms_endpoint_descriptor_list.go index f89e979c3c..3552c21327 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_dimms_endpoint_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_dimms_endpoint_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_dimms_endpoint_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_dimms_endpoint_descriptor_response.go index 66a5a9b7b0..468ab599d7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_dimms_endpoint_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_dimms_endpoint_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_drives_endpoint_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_drives_endpoint_descriptor.go index d2840b0820..a7b960e68e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_drives_endpoint_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_drives_endpoint_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_drives_endpoint_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_drives_endpoint_descriptor_list.go index 96a88c848f..efab8e43fc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_drives_endpoint_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_drives_endpoint_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_drives_endpoint_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_drives_endpoint_descriptor_response.go index 9b5d32b9c9..4eee41a2f9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_drives_endpoint_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_drives_endpoint_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_endpoint_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_endpoint_descriptor.go index 76cf9126b4..0b59cc521c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_endpoint_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_endpoint_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_equipment_physical_def.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_equipment_physical_def.go index 35d24b7069..f3b57ddd52 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_equipment_physical_def.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_equipment_physical_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_equipment_physical_def_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_equipment_physical_def_list.go index f336141278..10b8a0508c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_equipment_physical_def_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_equipment_physical_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_equipment_physical_def_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_equipment_physical_def_response.go index 15f5855afe..d08eb5e532 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_equipment_physical_def_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_equipment_physical_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_equipment_slot_array.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_equipment_slot_array.go index f50f24078c..6ea9f6d88f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_equipment_slot_array.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_equipment_slot_array.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_equipment_slot_array_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_equipment_slot_array_list.go index 251725a74a..8968ace918 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_equipment_slot_array_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_equipment_slot_array_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_equipment_slot_array_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_equipment_slot_array_response.go index 456af22451..d84eaa8157 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_equipment_slot_array_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_equipment_slot_array_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fan_module_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fan_module_descriptor.go index bdb31708f4..bfb200e2d2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fan_module_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fan_module_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fan_module_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fan_module_descriptor_list.go index a9dcc7a98a..66895cb360 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fan_module_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fan_module_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fan_module_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fan_module_descriptor_response.go index 25db50f4a5..7b8daad856 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fan_module_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fan_module_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fan_module_manufacturing_def.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fan_module_manufacturing_def.go index 7bb7b42d33..704318f28a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fan_module_manufacturing_def.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fan_module_manufacturing_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fan_module_manufacturing_def_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fan_module_manufacturing_def_list.go index 66caf87d2a..4428619f58 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fan_module_manufacturing_def_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fan_module_manufacturing_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fan_module_manufacturing_def_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fan_module_manufacturing_def_response.go index ae4748e87f..dea70968d7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fan_module_manufacturing_def_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fan_module_manufacturing_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_feature_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_feature_config.go index 1436de31f4..cad6f998e9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_feature_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_feature_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_capability_def.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_capability_def.go index f9df9d173f..dd1e521aae 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_capability_def.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_capability_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_capability_def_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_capability_def_list.go index 0c11d80027..285211612f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_capability_def_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_capability_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_capability_def_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_capability_def_response.go index 7c00685dcf..5da28d1d2b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_capability_def_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_capability_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_descriptor.go index c9df2763c4..e6c29d34a1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_descriptor_list.go index 94f14aec06..94ecd73d2e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_descriptor_response.go index 2b7eb86530..e5657e6089 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_manufacturing_def.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_manufacturing_def.go index 35505a491f..5eb63fc0d8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_manufacturing_def.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_manufacturing_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_manufacturing_def_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_manufacturing_def_list.go index a68112d6f0..90e5acdec8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_manufacturing_def_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_manufacturing_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_manufacturing_def_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_manufacturing_def_response.go index c05649697a..3e83368ef9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_manufacturing_def_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_fex_manufacturing_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_gpu_endpoint_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_gpu_endpoint_descriptor.go index f4fd416084..06a48460c5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_gpu_endpoint_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_gpu_endpoint_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_gpu_endpoint_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_gpu_endpoint_descriptor_list.go index ed95330a22..31a0ad5ec2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_gpu_endpoint_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_gpu_endpoint_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_gpu_endpoint_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_gpu_endpoint_descriptor_response.go index 7316694073..fe5cadcb9b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_gpu_endpoint_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_gpu_endpoint_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_hardware_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_hardware_descriptor.go index 3eea8c151f..bb3a19f88f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_hardware_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_hardware_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_hsu_iso_file_support_meta.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_hsu_iso_file_support_meta.go index 8b58130e7e..f80708a4ac 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_hsu_iso_file_support_meta.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_hsu_iso_file_support_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_hsu_iso_file_support_meta_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_hsu_iso_file_support_meta_list.go index d79d3740b5..1a807eb7c7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_hsu_iso_file_support_meta_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_hsu_iso_file_support_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_hsu_iso_file_support_meta_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_hsu_iso_file_support_meta_response.go index 188bada21a..c9ab8853f8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_hsu_iso_file_support_meta_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_hsu_iso_file_support_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_hsu_iso_model_specific_constraint.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_hsu_iso_model_specific_constraint.go index 37cd54b659..f3800888fe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_hsu_iso_model_specific_constraint.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_hsu_iso_model_specific_constraint.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_capability_def.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_capability_def.go index 64fda69054..389e9f5eb6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_capability_def.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_capability_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_capability_def_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_capability_def_list.go index da8a6f149a..461f55e1e4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_capability_def_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_capability_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_capability_def_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_capability_def_response.go index 0b44751bff..3de93486da 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_capability_def_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_capability_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_descriptor.go index 4ca8e15019..d353903268 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_descriptor_list.go index 651484eb3f..55434f087e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_descriptor_response.go index 05545a85cd..72d6b55056 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_manufacturing_def.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_manufacturing_def.go index b029eb15f5..c7acf9dc2b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_manufacturing_def.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_manufacturing_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_manufacturing_def_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_manufacturing_def_list.go index b6c27dafce..f65403728b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_manufacturing_def_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_manufacturing_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_manufacturing_def_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_manufacturing_def_response.go index 66ad9c1158..87a2d57676 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_manufacturing_def_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_io_card_manufacturing_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_iom_upgrade_support_meta.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_iom_upgrade_support_meta.go index 88cad3fffd..46aa7cd997 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_iom_upgrade_support_meta.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_iom_upgrade_support_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_iom_upgrade_support_meta_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_iom_upgrade_support_meta_list.go index 67f8027316..b108b48fe4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_iom_upgrade_support_meta_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_iom_upgrade_support_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_iom_upgrade_support_meta_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_iom_upgrade_support_meta_response.go index 5b5a069d1a..f6269eba67 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_iom_upgrade_support_meta_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_iom_upgrade_support_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_port_group_aggregation_def.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_port_group_aggregation_def.go index c213407aa7..2f5ddca981 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_port_group_aggregation_def.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_port_group_aggregation_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_port_group_aggregation_def_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_port_group_aggregation_def_list.go index e6959bea2a..7c9733fd4b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_port_group_aggregation_def_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_port_group_aggregation_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_port_group_aggregation_def_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_port_group_aggregation_def_response.go index 5d7daa5433..8ff22350a4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_port_group_aggregation_def_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_port_group_aggregation_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_port_range.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_port_range.go index 1a7a2f6e55..40f3b19d31 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_port_range.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_port_range.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_processor_unit_update_constraint_meta.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_processor_unit_update_constraint_meta.go index 899a1359cf..3660722eda 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_processor_unit_update_constraint_meta.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_processor_unit_update_constraint_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_processor_unit_update_constraint_meta_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_processor_unit_update_constraint_meta_list.go index 253a1cea81..a8d138c2a8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_processor_unit_update_constraint_meta_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_processor_unit_update_constraint_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_processor_unit_update_constraint_meta_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_processor_unit_update_constraint_meta_response.go index ddd166db3c..17ae3d00af 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_processor_unit_update_constraint_meta_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_processor_unit_update_constraint_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_psu_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_psu_descriptor.go index 249561cb72..00b62aa029 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_psu_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_psu_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_psu_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_psu_descriptor_list.go index fb1c404f00..9281b5d405 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_psu_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_psu_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_psu_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_psu_descriptor_response.go index 09f2ff46eb..cf75e9c227 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_psu_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_psu_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_psu_manufacturing_def.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_psu_manufacturing_def.go index 53570662ae..668f84cb05 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_psu_manufacturing_def.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_psu_manufacturing_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_psu_manufacturing_def_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_psu_manufacturing_def_list.go index 7fa98a4df8..7caf26bad5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_psu_manufacturing_def_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_psu_manufacturing_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_psu_manufacturing_def_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_psu_manufacturing_def_response.go index cb43683134..09f178a3af 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_psu_manufacturing_def_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_psu_manufacturing_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_actions_meta.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_actions_meta.go index a9346c1f29..94f4aaa60c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_actions_meta.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_actions_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_actions_meta_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_actions_meta_list.go index 1a6d63ebba..df42cc8d32 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_actions_meta_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_actions_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_actions_meta_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_actions_meta_response.go index 5a3ce662fa..7ec2b6da5f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_actions_meta_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_actions_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_component_constraint.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_component_constraint.go index ac1560323b..4472197d35 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_component_constraint.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_component_constraint.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_descriptor.go index 129b8e4c9f..5d9970d8bb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_descriptor_list.go index 70e9288a62..57616aaed6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_descriptor_response.go index e2d041d2f9..4b9c23e079 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_models_capability_def.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_models_capability_def.go index f68dec3537..d633b11812 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_models_capability_def.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_models_capability_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_models_capability_def_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_models_capability_def_list.go index 2c84d468bb..b9491253fb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_models_capability_def_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_models_capability_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_models_capability_def_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_models_capability_def_response.go index c3f12848dd..a82ae257e9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_models_capability_def_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_models_capability_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_schema_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_schema_descriptor.go index d0ebe1e028..5c9fd4a354 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_schema_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_schema_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_schema_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_schema_descriptor_list.go index 673ef03b4d..4fe7ecefc8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_schema_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_schema_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_schema_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_schema_descriptor_response.go index 610146e4a2..48ab91e4dd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_schema_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_schema_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_upgrade_support_meta.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_upgrade_support_meta.go index 2cb56a11dd..be2b8897a6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_upgrade_support_meta.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_upgrade_support_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_upgrade_support_meta_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_upgrade_support_meta_list.go index 1b6a9ff768..367136db3d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_upgrade_support_meta_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_upgrade_support_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_upgrade_support_meta_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_upgrade_support_meta_response.go index 5b589d7f65..13b29eae79 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_upgrade_support_meta_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_server_upgrade_support_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_capability_def.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_capability_def.go index 26ed71eb15..aeb149a73c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_capability_def.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_capability_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_capability_def_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_capability_def_list.go index 6d494badb8..4bca976d21 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_capability_def_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_capability_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_capability_def_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_capability_def_response.go index 34ba4f045b..5bf914f08b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_capability_def_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_capability_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_descriptor.go index 3a0e4cc123..1de78abde7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_descriptor_list.go index 6304997e05..5b290a810b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_descriptor_response.go index c03352d256..9cf1a92722 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_manufacturing_def.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_manufacturing_def.go index 22e8d79e03..ebe04ff10e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_manufacturing_def.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_manufacturing_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_manufacturing_def_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_manufacturing_def_list.go index 22fd3e0b09..724f79e9de 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_manufacturing_def_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_manufacturing_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_manufacturing_def_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_manufacturing_def_response.go index e522592f36..462ccc52d1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_manufacturing_def_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_sioc_module_manufacturing_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_storage_controller_update_constraint_meta.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_storage_controller_update_constraint_meta.go index 1525c0c158..d8fc9e1d02 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_storage_controller_update_constraint_meta.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_storage_controller_update_constraint_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_storage_controller_update_constraint_meta_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_storage_controller_update_constraint_meta_list.go index 49c6335be2..cdaf7e1914 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_storage_controller_update_constraint_meta_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_storage_controller_update_constraint_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_storage_controller_update_constraint_meta_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_storage_controller_update_constraint_meta_response.go index 4ad069e504..a8d07d8305 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_storage_controller_update_constraint_meta_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_storage_controller_update_constraint_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_capability.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_capability.go index ed74350d9e..a088fe1b7d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_capability.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_capability.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_capability_def.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_capability_def.go index 0f1a723268..7c4e1d1e91 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_capability_def.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_capability_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_capability_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_capability_list.go index c15440ac96..e9c603eb86 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_capability_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_capability_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_capability_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_capability_response.go index a24828b3b8..6e43bd0209 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_capability_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_capability_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_descriptor.go index 0c4c5f8d36..63a7d7668a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_descriptor_list.go index 5e7a8b3eba..087701c4e6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_descriptor_response.go index c19842e130..ddbee45c9b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_equipment_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_equipment_info.go index 0155919cd8..2f01524a90 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_equipment_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_equipment_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_equipment_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_equipment_info_list.go index f8f10048b5..cf0f4e7341 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_equipment_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_equipment_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_equipment_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_equipment_info_response.go index a2b241e2c2..05e4e6ba2f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_equipment_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_equipment_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_identity_def.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_identity_def.go index 28ea04c2e2..b78ce20b59 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_identity_def.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_identity_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_manufacturing_def.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_manufacturing_def.go index 283b9b4876..831902db97 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_manufacturing_def.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_manufacturing_def.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_manufacturing_def_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_manufacturing_def_list.go index d04156a563..ed31387797 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_manufacturing_def_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_manufacturing_def_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_manufacturing_def_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_manufacturing_def_response.go index 0b61ded634..29628dff99 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_manufacturing_def_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_manufacturing_def_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_network_limits.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_network_limits.go index 58ee560b3c..7cc3c1b22b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_network_limits.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_network_limits.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_storage_limits.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_storage_limits.go index f2aa4b0223..32cd2cfb8b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_storage_limits.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_storage_limits.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_system_limits.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_system_limits.go index 3fd9f78495..540c679e45 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_system_limits.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switch_system_limits.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switching_mode_capability.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switching_mode_capability.go index 1e0907c655..b6b1040916 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switching_mode_capability.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_switching_mode_capability.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_template_catalog.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_template_catalog.go index 8f5fb189df..035304a7b5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_template_catalog.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_template_catalog.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_template_catalog_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_template_catalog_list.go index 4485454efc..09ed5448c2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_template_catalog_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_template_catalog_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_template_catalog_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_template_catalog_response.go index 33becf660a..2a4cdce970 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_template_catalog_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_template_catalog_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_unsupported_feature_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_unsupported_feature_config.go index a0e2c45630..921b8741ff 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_unsupported_feature_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_unsupported_feature_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_update_constraint_meta.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_update_constraint_meta.go index 109693bd7c..a2a48d8be2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_update_constraint_meta.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_update_constraint_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_update_order_list_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_update_order_list_type.go index 3373033b29..e9d2b5c2ab 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_update_order_list_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_update_order_list_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_update_order_meta.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_update_order_meta.go index 48776bea1f..096b1d84da 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_update_order_meta.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_update_order_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_update_order_meta_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_update_order_meta_list.go index ac736a5ac5..a5c28382ba 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_update_order_meta_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_update_order_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_update_order_meta_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_update_order_meta_response.go index 4f2979feb8..cb5c284749 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_update_order_meta_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_update_order_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_vic_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_vic_descriptor.go index 5e56c055fa..7b21ecc067 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_vic_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_vic_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_vic_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_vic_descriptor_list.go index 2b13f591d4..a5e297cfdc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_vic_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_vic_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_vic_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_vic_descriptor_response.go index 37a436245c..8942566aaa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_vic_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_capability_vic_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_config_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_config_group.go index df46a83024..8ce2de6e3f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_config_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_config_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_config_group_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_config_group_list.go index b4d18b94a9..bba16af36f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_config_group_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_config_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_config_group_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_config_group_response.go index 879aadbf74..5d262c2dc1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_config_group_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_config_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_inventory_entity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_inventory_entity.go index b87aecbbb3..4088fe1630 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_inventory_entity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_inventory_entity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_policy_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_policy_group.go index e26000d0ca..b2fd79f26c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_policy_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_policy_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_policy_group_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_policy_group_list.go index 75076fed97..b0f4c377fd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_policy_group_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_policy_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_policy_group_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_policy_group_response.go index 8bcdaceeb2..fe4d994a66 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_policy_group_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_policy_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_vedge_device.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_vedge_device.go index 1499f9e859..630a372de9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_vedge_device.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_vedge_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_vedge_device_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_vedge_device_list.go index e4a0b9709f..062ebf143b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_vedge_device_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_vedge_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_vedge_device_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_vedge_device_response.go index f7b516b087..712a7a8906 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_vedge_device_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_catalystsdwan_vedge_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_certificate_base.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_certificate_base.go index d1c67d6baf..1f725a25d3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_certificate_base.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_certificate_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_imc.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_imc.go index b615d2f14a..4c41d812c9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_imc.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_imc.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_policy.go index db761d946b..c370479a29 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_policy_inventory.go index ab51a77707..1a8b39ef23 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_policy_inventory_list.go index 6073ffe7d0..042e40da50 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_policy_inventory_response.go index 7dcd048dae..3a59e73f7b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_policy_list.go index e155c04f4c..fc67da63c9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_policy_response.go index 2af7427e4f..0109cefdb8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_root_ca_certificate.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_root_ca_certificate.go index f86bbaea96..dee96767c6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_root_ca_certificate.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_certificatemanagement_root_ca_certificate.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type CertificatemanagementRootCaCertificate struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // A name that helps identify a certificate. It can be any string that adheres to the following constraints. It should start and end with an alphanumeric character. It can have underscores and hyphens. It cannot be more than 30 characters. - CertificateName *string `json:"CertificateName,omitempty"` + CertificateName *string `json:"CertificateName,omitempty" validate:"regexp=((^[a-zA-Z0-9]$){1,30}|(^(([a-zA-Z0-9])([a-zA-Z0-9_\\\\-]{0,28})([a-zA-Z0-9]))$))"` AdditionalProperties map[string]interface{} } @@ -235,7 +235,7 @@ func (o *CertificatemanagementRootCaCertificate) UnmarshalJSON(data []byte) (err // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // A name that helps identify a certificate. It can be any string that adheres to the following constraints. It should start and end with an alphanumeric character. It can have underscores and hyphens. It cannot be more than 30 characters. - CertificateName *string `json:"CertificateName,omitempty"` + CertificateName *string `json:"CertificateName,omitempty" validate:"regexp=((^[a-zA-Z0-9]$){1,30}|(^(([a-zA-Z0-9])([a-zA-Z0-9_\\\\-]{0,28})([a-zA-Z0-9]))$))"` } varCertificatemanagementRootCaCertificateWithoutEmbeddedStruct := CertificatemanagementRootCaCertificateWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_base_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_base_profile.go index 05d3b1088b..ca6f5e2839 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_base_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_base_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_base_profile_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_base_profile_relationship.go index eacce3b97e..78843c713e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_base_profile_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_base_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_change_detail.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_change_detail.go index 9c8fbc2fd1..cc369e2074 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_change_detail.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_change_detail.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_change_detail_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_change_detail_list.go index 78821ffb27..fa1d45cc93 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_change_detail_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_change_detail_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_change_detail_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_change_detail_relationship.go index 4596f4c7eb..c5529e9b57 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_change_detail_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_change_detail_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_change_detail_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_change_detail_response.go index 2727db5c0c..ae5aee2be6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_change_detail_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_change_detail_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_import.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_import.go index b549cd2034..3019759457 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_import.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_import.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,10 +31,10 @@ type ChassisConfigImport struct { // Description of the imported profile. Description *string `json:"Description,omitempty"` // Policy prefix for the policies of the imported chassis profile. - PolicyPrefix *string `json:"PolicyPrefix,omitempty"` + PolicyPrefix *string `json:"PolicyPrefix,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,32}$"` PolicyTypes []string `json:"PolicyTypes,omitempty"` // Profile name for the imported chassis profile. - ProfileName *string `json:"ProfileName,omitempty"` + ProfileName *string `json:"ProfileName,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` Chassis NullableEquipmentChassisRelationship `json:"Chassis,omitempty"` ChassisProfile NullableChassisProfileRelationship `json:"ChassisProfile,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` @@ -487,10 +487,10 @@ func (o *ChassisConfigImport) UnmarshalJSON(data []byte) (err error) { // Description of the imported profile. Description *string `json:"Description,omitempty"` // Policy prefix for the policies of the imported chassis profile. - PolicyPrefix *string `json:"PolicyPrefix,omitempty"` + PolicyPrefix *string `json:"PolicyPrefix,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,32}$"` PolicyTypes []string `json:"PolicyTypes,omitempty"` // Profile name for the imported chassis profile. - ProfileName *string `json:"ProfileName,omitempty"` + ProfileName *string `json:"ProfileName,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` Chassis NullableEquipmentChassisRelationship `json:"Chassis,omitempty"` ChassisProfile NullableChassisProfileRelationship `json:"ChassisProfile,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_import_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_import_list.go index 0890d8984f..f956a80b20 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_import_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_import_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_import_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_import_response.go index 44c038410b..38096cb7bb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_import_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_import_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result.go index de1d394d93..c769c1a867 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_entry.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_entry.go index 718d7ef049..dbc6f2ef58 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_entry.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_entry_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_entry_list.go index 877aa182e7..f11dda14cc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_entry_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_entry_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_entry_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_entry_relationship.go index e805f2d433..98f91e1f12 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_entry_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_entry_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_entry_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_entry_response.go index 8cf0686fdb..fa88ee3273 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_entry_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_entry_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_list.go index 6d47578040..530b1e57c7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_relationship.go index 04a468e4b2..72b11c9a39 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_response.go index c182d3afa7..11183f50e7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_config_result_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_iom_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_iom_profile.go index 7e4ba8c926..d571facf8f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_iom_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_iom_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_iom_profile_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_iom_profile_list.go index 218f5a51f4..89fd020330 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_iom_profile_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_iom_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_iom_profile_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_iom_profile_relationship.go index 40aa4a0b23..21ab23e864 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_iom_profile_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_iom_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_iom_profile_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_iom_profile_response.go index ef2ee6bca3..891a4013a9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_iom_profile_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_iom_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile.go index 52fd6a7359..1db047c619 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type ChassisProfile struct { ConfigChangeContext NullablePolicyConfigChangeContext `json:"ConfigChangeContext,omitempty"` ConfigChanges NullablePolicyConfigChange `json:"ConfigChanges,omitempty"` // User label assigned to the chassis profile. - UserLabel *string `json:"UserLabel,omitempty"` + UserLabel *string `json:"UserLabel,omitempty" validate:"regexp=^[ !#$%&\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}~a-zA-Z0-9]*$"` AssignedChassis NullableEquipmentChassisRelationship `json:"AssignedChassis,omitempty"` AssociatedChassis NullableEquipmentChassisRelationship `json:"AssociatedChassis,omitempty"` // An array of relationships to chassisConfigChangeDetail resources. @@ -552,7 +552,7 @@ func (o *ChassisProfile) UnmarshalJSON(data []byte) (err error) { ConfigChangeContext NullablePolicyConfigChangeContext `json:"ConfigChangeContext,omitempty"` ConfigChanges NullablePolicyConfigChange `json:"ConfigChanges,omitempty"` // User label assigned to the chassis profile. - UserLabel *string `json:"UserLabel,omitempty"` + UserLabel *string `json:"UserLabel,omitempty" validate:"regexp=^[ !#$%&\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}~a-zA-Z0-9]*$"` AssignedChassis NullableEquipmentChassisRelationship `json:"AssignedChassis,omitempty"` AssociatedChassis NullableEquipmentChassisRelationship `json:"AssociatedChassis,omitempty"` // An array of relationships to chassisConfigChangeDetail resources. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile_list.go index 9e3cbf5276..6f96148433 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile_relationship.go index a6b484a95a..7259c04898 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile_response.go index d25ef4ba29..4bdf0677a5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile_template.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile_template.go index 13b27f2853..f86426caea 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile_template.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile_template.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile_template_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile_template_list.go index b460f9f9b5..2a8a858e9f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile_template_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile_template_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile_template_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile_template_response.go index f3308ea36b..f2e82727dc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile_template_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_chassis_profile_template_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_availability_zone.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_availability_zone.go index 479f768462..d7a8ad4cc3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_availability_zone.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_availability_zone.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_billing_unit.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_billing_unit.go index 6c929cefe4..26ac3b50ae 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_billing_unit.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_billing_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type CloudAwsBillingUnit struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Email address of the account holder. - Email *string `json:"Email,omitempty"` + Email *string "json:\"Email,omitempty\" validate:\"regexp=^$|^[a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$\"" RegisteredDevice NullableAssetDeviceRegistrationRelationship `json:"RegisteredDevice,omitempty"` AdditionalProperties map[string]interface{} } @@ -280,7 +280,7 @@ func (o *CloudAwsBillingUnit) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Email address of the account holder. - Email *string `json:"Email,omitempty"` + Email *string "json:\"Email,omitempty\" validate:\"regexp=^$|^[a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$\"" RegisteredDevice NullableAssetDeviceRegistrationRelationship `json:"RegisteredDevice,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_billing_unit_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_billing_unit_list.go index 86db06c93d..dba6886fa0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_billing_unit_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_billing_unit_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_billing_unit_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_billing_unit_relationship.go index 2dde64d851..2cf24be370 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_billing_unit_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_billing_unit_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_billing_unit_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_billing_unit_response.go index 4597f04c9b..1a9898b256 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_billing_unit_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_billing_unit_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_key_pair.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_key_pair.go index 4ce16ba426..59cd7f7396 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_key_pair.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_key_pair.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_key_pair_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_key_pair_list.go index bf9bf99be5..a3e52dc48c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_key_pair_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_key_pair_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_key_pair_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_key_pair_relationship.go index 5facd7dac0..df3feff566 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_key_pair_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_key_pair_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_key_pair_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_key_pair_response.go index 7cb2bb65bf..3a1b0c2018 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_key_pair_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_key_pair_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_network_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_network_interface.go index 043c6da29c..b5d0026333 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_network_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_network_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_network_interface_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_network_interface_list.go index 3add2fc1cc..63063fa1bc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_network_interface_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_network_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_network_interface_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_network_interface_response.go index e3f2021620..08adbbf951 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_network_interface_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_network_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_organizational_unit.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_organizational_unit.go index c84cbe4cef..e706b1659c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_organizational_unit.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_organizational_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_organizational_unit_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_organizational_unit_list.go index 42d066c769..835a945330 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_organizational_unit_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_organizational_unit_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_organizational_unit_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_organizational_unit_relationship.go index cf68bfebac..eba5960740 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_organizational_unit_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_organizational_unit_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_organizational_unit_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_organizational_unit_response.go index 5a6f627891..02997b6a84 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_organizational_unit_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_organizational_unit_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_security_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_security_group.go index d998f57b69..0640e82159 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_security_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_security_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_security_group_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_security_group_list.go index 4052d67b43..755fdfc06d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_security_group_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_security_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_security_group_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_security_group_relationship.go index 29fd77fd73..297f147dbb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_security_group_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_security_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_security_group_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_security_group_response.go index 751c53973b..e8d8c893e4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_security_group_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_security_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_subnet.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_subnet.go index fa04d47303..8142e81c2e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_subnet.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_subnet.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_subnet_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_subnet_list.go index c742163d4f..c9ec28c1f5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_subnet_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_subnet_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_subnet_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_subnet_relationship.go index eed45716c4..97f76b6d68 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_subnet_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_subnet_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_subnet_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_subnet_response.go index e736a0433e..477841ec56 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_subnet_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_subnet_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_virtual_machine.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_virtual_machine.go index f0e5706a26..5f4815341f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_virtual_machine.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_virtual_machine.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_virtual_machine_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_virtual_machine_list.go index 15be1a006e..267eda7f80 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_virtual_machine_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_virtual_machine_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_virtual_machine_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_virtual_machine_response.go index 2333f074dc..61018239be 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_virtual_machine_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_virtual_machine_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_volume.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_volume.go index f978f62c1e..524b0e505e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_volume.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_volume.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_volume_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_volume_list.go index 7325d93802..ae1e52b44b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_volume_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_volume_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_volume_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_volume_response.go index 8b4b916d77..bd5e68ebd4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_volume_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_volume_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_vpc.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_vpc.go index 9528190e48..e95f115d5f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_vpc.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_vpc.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_vpc_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_vpc_list.go index 8ccf0da3a5..6a0aa7eddd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_vpc_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_vpc_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_vpc_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_vpc_relationship.go index 9faaed4996..edb0ac1119 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_vpc_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_vpc_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_vpc_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_vpc_response.go index 457c87ab97..b29385aa58 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_vpc_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_aws_vpc_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_billing_unit.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_billing_unit.go index 628a92a7b4..1d260a1c64 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_billing_unit.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_billing_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_entity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_entity.go index 26412feac9..24737e4720 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_entity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_entity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_network.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_network.go index c84d86962a..c91c7f7483 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_network.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_network.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_network_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_network_interface.go index d7872f4674..1db0041170 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_network_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_network_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_placement.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_placement.go index 12a4b6d355..089a951161 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_placement.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_placement.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_sku.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_sku.go index fc052b2536..61fb5bb770 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_sku.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_sku.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_sku_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_sku_relationship.go index 0cb354ffb7..fc45f21cf2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_sku_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_sku_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_virtual_machine.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_virtual_machine.go index 87e0c1afbb..b543698d41 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_virtual_machine.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_virtual_machine.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_volume.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_volume.go index 65b9391505..cd1f20bc46 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_volume.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_base_volume.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_billing_unit.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_billing_unit.go index 01f4b1d7af..eaa7ae35bf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_billing_unit.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_billing_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_cloud_region.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_cloud_region.go index baaf713ecd..e4afd78102 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_cloud_region.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_cloud_region.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_cloud_tag.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_cloud_tag.go index 26640305eb..a98f0a8c85 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_cloud_tag.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_cloud_tag.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_collect_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_collect_inventory.go index e07fb53acc..66c5a48427 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_collect_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_collect_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_custom_attributes.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_custom_attributes.go index b3db0895cd..d4d0670172 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_custom_attributes.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_custom_attributes.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_image_reference.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_image_reference.go index 3608897da2..d0d7974cb4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_image_reference.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_image_reference.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_instance_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_instance_type.go index 63a84d536f..97aad73732 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_instance_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_instance_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_network_access_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_network_access_config.go index fb6e403b4c..7ff2527c31 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_network_access_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_network_access_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_network_address.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_network_address.go index cfac98eebf..deeab92fc7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_network_address.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_network_address.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_network_instance_attachment.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_network_instance_attachment.go index 4e08ad9cd3..43bcca3e9f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_network_instance_attachment.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_network_instance_attachment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_network_interface_attachment.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_network_interface_attachment.go index 3a6c731d15..1cc0fefaba 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_network_interface_attachment.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_network_interface_attachment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_regions.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_regions.go index 80439b13d1..3916d87fc2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_regions.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_regions.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_regions_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_regions_list.go index c91df1f37c..d4837ea2f5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_regions_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_regions_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_regions_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_regions_relationship.go index c0baf4d294..2683449018 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_regions_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_regions_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_regions_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_regions_response.go index c96082c482..6634cd1fe8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_regions_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_regions_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_security_group_rule.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_security_group_rule.go index 7e34a80c83..9d02b230be 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_security_group_rule.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_security_group_rule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_container_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_container_type.go index df5fb8de4f..34a335c29b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_container_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_container_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_container_type_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_container_type_list.go index 6a806e9b97..7d2f81a9e3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_container_type_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_container_type_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_container_type_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_container_type_response.go index b011ede866..25eac6d798 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_container_type_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_container_type_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_database_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_database_type.go index 629ff87785..9cfbed351b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_database_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_database_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_database_type_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_database_type_list.go index 2ab33072a5..9e4690275f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_database_type_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_database_type_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_database_type_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_database_type_response.go index c5a512b817..1c43d0f518 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_database_type_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_database_type_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_instance_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_instance_type.go index 0e53cbb14d..db2dab7c46 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_instance_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_instance_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_instance_type_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_instance_type_list.go index 0766d2e9a5..0172580cc5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_instance_type_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_instance_type_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_instance_type_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_instance_type_response.go index 7ed08479a8..e65bd7ae4b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_instance_type_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_instance_type_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_network_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_network_type.go index 20315a2834..aa73372421 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_network_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_network_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_network_type_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_network_type_list.go index ad8b3dcf04..fa0114d76b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_network_type_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_network_type_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_network_type_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_network_type_response.go index ef57912303..5ef44512a0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_network_type_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_network_type_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_region_rate_cards.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_region_rate_cards.go index 6251045191..5549100714 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_region_rate_cards.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_region_rate_cards.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_region_rate_cards_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_region_rate_cards_list.go index 2baf2215ea..a158aa7694 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_region_rate_cards_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_region_rate_cards_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_region_rate_cards_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_region_rate_cards_response.go index 7be9c49d95..57735ef201 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_region_rate_cards_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_region_rate_cards_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_volume_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_volume_type.go index 4bd870a502..2cdb51b837 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_volume_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_volume_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_volume_type_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_volume_type_list.go index e75d2d45b0..966e9de816 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_volume_type_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_volume_type_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_volume_type_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_volume_type_response.go index 2318c153b3..602a23b8ea 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_volume_type_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_sku_volume_type_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_agentpool.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_agentpool.go index 0910a026dd..97c6ed1f2f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_agentpool.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_agentpool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_agentpool_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_agentpool_list.go index 2b78bb6bf8..a7b89217e5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_agentpool_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_agentpool_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_agentpool_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_agentpool_response.go index 7805658153..a6578fc020 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_agentpool_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_agentpool_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_organization.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_organization.go index 66d2eebfad..4452292628 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_organization.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_organization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_organization_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_organization_list.go index bf0196001f..815f6774d3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_organization_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_organization_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_organization_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_organization_relationship.go index c6871269ab..6d5074c023 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_organization_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_organization_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_organization_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_organization_response.go index 2314e44379..775d57a9d9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_organization_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_organization_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_workspace.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_workspace.go index 64ddb86c4a..017b95a995 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_workspace.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_workspace.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_workspace_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_workspace_list.go index 60277d50da..46b68721d6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_workspace_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_workspace_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_workspace_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_workspace_response.go index b8d526b4fa..a58046676e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_workspace_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_workspace_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_workspace_variables.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_workspace_variables.go index a740306fa9..3cffb0c69a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_workspace_variables.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_tfc_workspace_variables.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_volume_attachment.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_volume_attachment.go index efdc31c86e..c570c35e0e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_volume_attachment.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_volume_attachment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_volume_instance_attachment.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_volume_instance_attachment.go index bc0d91eaac..ce477e937c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_volume_instance_attachment.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_volume_instance_attachment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_volume_iops_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_volume_iops_info.go index e02f0a6d37..2148d06911 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_volume_iops_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_volume_iops_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_volume_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_volume_type.go index 56ba98447b..eccbad4df0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_volume_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cloud_volume_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cmrf_cm_rf.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cmrf_cm_rf.go index aa02198acc..50621810ea 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cmrf_cm_rf.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cmrf_cm_rf.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_abstract_http_proxy_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_abstract_http_proxy_policy.go index a6a00b03b3..5bfe897682 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_abstract_http_proxy_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_abstract_http_proxy_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type CommAbstractHttpProxyPolicy struct { // 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. ObjectType string `json:"ObjectType"` // HTTP Proxy server FQDN or IP. - Hostname *string `json:"Hostname,omitempty"` + Hostname *string `json:"Hostname,omitempty" validate:"regexp=^[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?$|^[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?(\\\\.[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?)*(\\\\.[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?)$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password for the HTTP Proxy. @@ -428,7 +428,7 @@ func (o *CommAbstractHttpProxyPolicy) UnmarshalJSON(data []byte) (err error) { // 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. ObjectType string `json:"ObjectType"` // HTTP Proxy server FQDN or IP. - Hostname *string `json:"Hostname,omitempty"` + Hostname *string `json:"Hostname,omitempty" validate:"regexp=^[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?$|^[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?(\\\\.[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?)*(\\\\.[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?)$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password for the HTTP Proxy. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_http_proxy_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_http_proxy_policy.go index 8caa15bcfa..7744ee58d9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_http_proxy_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_http_proxy_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_http_proxy_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_http_proxy_policy_list.go index 15255cea1c..e3bf68d0f2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_http_proxy_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_http_proxy_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_http_proxy_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_http_proxy_policy_relationship.go index f5796af216..d402592757 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_http_proxy_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_http_proxy_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_http_proxy_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_http_proxy_policy_response.go index c1b2cf901e..8cbc530eb9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_http_proxy_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_http_proxy_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_ip_v4_address_block.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_ip_v4_address_block.go index 8cffa8545e..3ccec4873b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_ip_v4_address_block.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_ip_v4_address_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type CommIpV4AddressBlock struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The end address of the IPv4 block. - EndAddress *string `json:"EndAddress,omitempty"` + EndAddress *string `json:"EndAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The start address of the IPv4 block. - StartAddress *string `json:"StartAddress,omitempty"` + StartAddress *string `json:"StartAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` AdditionalProperties map[string]interface{} } @@ -270,9 +270,9 @@ func (o *CommIpV4AddressBlock) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The end address of the IPv4 block. - EndAddress *string `json:"EndAddress,omitempty"` + EndAddress *string `json:"EndAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The start address of the IPv4 block. - StartAddress *string `json:"StartAddress,omitempty"` + StartAddress *string `json:"StartAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` } varCommIpV4AddressBlockWithoutEmbeddedStruct := CommIpV4AddressBlockWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_ip_v4_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_ip_v4_interface.go index 90c9b10ecb..cfad5614b9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_ip_v4_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_ip_v4_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,11 +29,11 @@ type CommIpV4Interface struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The IPv4 address of the default gateway. - Gateway *string `json:"Gateway,omitempty"` + Gateway *string `json:"Gateway,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The IPv4 Address, represented in the standard dot-decimal notation, e.g. 192.168.1.3. - IpAddress *string `json:"IpAddress,omitempty"` + IpAddress *string `json:"IpAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The IPv4 Netmask, represented in the standard dot-decimal notation, e.g. 255.255.255.0. - Netmask *string `json:"Netmask,omitempty"` + Netmask *string `json:"Netmask,omitempty" validate:"regexp=^$|^(((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}))$"` AdditionalProperties map[string]interface{} } @@ -307,11 +307,11 @@ func (o *CommIpV4Interface) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The IPv4 address of the default gateway. - Gateway *string `json:"Gateway,omitempty"` + Gateway *string `json:"Gateway,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The IPv4 Address, represented in the standard dot-decimal notation, e.g. 192.168.1.3. - IpAddress *string `json:"IpAddress,omitempty"` + IpAddress *string `json:"IpAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The IPv4 Netmask, represented in the standard dot-decimal notation, e.g. 255.255.255.0. - Netmask *string `json:"Netmask,omitempty"` + Netmask *string `json:"Netmask,omitempty" validate:"regexp=^$|^(((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}))$"` } varCommIpV4InterfaceWithoutEmbeddedStruct := CommIpV4InterfaceWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_ip_v6_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_ip_v6_interface.go index 046b332afa..25fbe027c0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_ip_v6_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_comm_ip_v6_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type CommIpV6Interface struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The IPv6 address of the default gateway. - Gateway *string `json:"Gateway,omitempty"` + Gateway *string `json:"Gateway,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // The IPv6 Address, represented as eight groups of four hexadecimal digits, separated by colons. - IpAddress *string `json:"IpAddress,omitempty"` + IpAddress *string `json:"IpAddress,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // The IPv6 Prefix, represented as eight groups of four hexadecimal digits, separated by colons. Prefix *string `json:"Prefix,omitempty"` AdditionalProperties map[string]interface{} @@ -307,9 +307,9 @@ func (o *CommIpV6Interface) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The IPv6 address of the default gateway. - Gateway *string `json:"Gateway,omitempty"` + Gateway *string `json:"Gateway,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // The IPv6 Address, represented as eight groups of four hexadecimal digits, separated by colons. - IpAddress *string `json:"IpAddress,omitempty"` + IpAddress *string `json:"IpAddress,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // The IPv6 Prefix, represented as eight groups of four hexadecimal digits, separated by colons. Prefix *string `json:"Prefix,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_alarm_summary.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_alarm_summary.go index 83f9fdae09..57f8ea41f5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_alarm_summary.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_alarm_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_base_cluster.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_base_cluster.go index 1f18371184..8fd11b7d31 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_base_cluster.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_base_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_base_cluster_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_base_cluster_relationship.go index c460a9a92f..ffd3615728 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_base_cluster_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_base_cluster_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade.go index 45bc16e59c..018942d750 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_identity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_identity.go index 16a471eff7..91e791ca5e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_identity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_identity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_identity_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_identity_list.go index 195a74519d..3be09bb31a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_identity_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_identity_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_identity_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_identity_relationship.go index a7ffca77af..0fa437b573 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_identity_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_identity_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_identity_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_identity_response.go index f43a86074a..0755ecaeac 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_identity_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_identity_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_list.go index e5950d3751..2087a4feb5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_relationship.go index d254d90ff0..10755f3ecf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_response.go index e0d81b5cdd..a07f58a203 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_blade_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_board.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_board.go index 601bedec2e..a5944d9b2c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_board.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_board.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_board_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_board_list.go index 477a2524d9..b1700d6b7c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_board_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_board_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_board_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_board_relationship.go index 6460cf58ab..6cc3ecc7e5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_board_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_board_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_board_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_board_response.go index 70fc89a54f..d62f1d8df5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_board_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_board_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_download_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_download_status.go index d904958886..aa24d184b0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_download_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_download_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_download_status_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_download_status_list.go index b48801a23c..4ebaafbc94 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_download_status_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_download_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_download_status_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_download_status_relationship.go index 66a5248aab..543cf3231b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_download_status_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_download_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_download_status_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_download_status_response.go index 050dfaa50c..e783e94333 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_download_status_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_download_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_host_utility_operation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_host_utility_operation.go index fa9ecccf82..cab1d4854a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_host_utility_operation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_host_utility_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_host_utility_operation_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_host_utility_operation_list.go index 7b1ae84f1e..813db9e942 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_host_utility_operation_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_host_utility_operation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_host_utility_operation_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_host_utility_operation_relationship.go index 7e8a48b987..3e11cc9e98 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_host_utility_operation_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_host_utility_operation_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_host_utility_operation_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_host_utility_operation_response.go index 2822f01082..9fafca5bbd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_host_utility_operation_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_host_utility_operation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_ip_address.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_ip_address.go index 8a3920e7f7..ce425ee543 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_ip_address.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_ip_address.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_mapping.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_mapping.go index 623e7dc6cc..82f81b1d49 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_mapping.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_mapping.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_mapping_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_mapping_list.go index 753793259f..35089416b5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_mapping_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_mapping_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_mapping_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_mapping_relationship.go index e0597a1f58..8d7f1663cc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_mapping_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_mapping_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_mapping_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_mapping_response.go index d64a98692b..ddce2387b4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_mapping_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_mapping_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_pending_workflow_trigger.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_pending_workflow_trigger.go index a96b85c4d3..6500c38277 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_pending_workflow_trigger.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_pending_workflow_trigger.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_persistent_memory_module.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_persistent_memory_module.go index 26402d086b..f775a54d63 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_persistent_memory_module.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_persistent_memory_module.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_persistent_memory_operation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_persistent_memory_operation.go index 9d591446da..a445aeafcd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_persistent_memory_operation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_persistent_memory_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_personality.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_personality.go index fcf232c9e7..2fe9f6fcab 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_personality.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_personality.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_personality_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_personality_list.go index 7cfd588bf9..b4cb4fe68d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_personality_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_personality_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_personality_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_personality_relationship.go index 81e3d34318..9c1aacaf5a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_personality_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_personality_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_personality_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_personality_response.go index 5da356ccc4..db181fd024 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_personality_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_personality_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_personality_setting.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_personality_setting.go index 4dc94dfdea..9525614e4f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_personality_setting.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_personality_setting.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_physical.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_physical.go index 7bd0dcd4da..114029fce6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_physical.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_physical.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_physical_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_physical_relationship.go index 028e7a90dd..8e201579f0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_physical_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_physical_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_physical_summary.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_physical_summary.go index bbcd4bb756..a7ed3c4894 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_physical_summary.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_physical_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_physical_summary_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_physical_summary_list.go index 11271ec034..5ee6ef5b2c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_physical_summary_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_physical_summary_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_physical_summary_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_physical_summary_relationship.go index 930de62686..00ca6a490a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_physical_summary_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_physical_summary_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_physical_summary_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_physical_summary_response.go index cd7c5c9c4b..f3d407ee9e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_physical_summary_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_physical_summary_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit.go index b3fb080bbb..3daf6a9b4a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit_identity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit_identity.go index a381c19b31..43bf02ed4e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit_identity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit_identity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit_identity_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit_identity_list.go index 1bf7df8553..195a89e4de 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit_identity_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit_identity_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit_identity_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit_identity_response.go index c84f70af78..ff959822d5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit_identity_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit_identity_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit_list.go index 48c68c4183..18b775422f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit_relationship.go index e5e841615d..81da9ea294 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit_response.go index 136660e8e4..f57852790f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_rack_unit_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_config.go index 45fe8f7e5a..13ab1d84f7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type ComputeServerConfig struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // User defined asset tag of the server. - AssetTag *string `json:"AssetTag,omitempty"` + AssetTag *string "json:\"AssetTag,omitempty\" validate:\"regexp=^[ #$%\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}\\\\^\\\\`\\\\>\\\\<~a-zA-Z0-9]*$\"" // User defined description of the server. - UserLabel *string `json:"UserLabel,omitempty"` + UserLabel *string `json:"UserLabel,omitempty" validate:"regexp=^[ !#$%&\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}~a-zA-Z0-9]*$"` AdditionalProperties map[string]interface{} } @@ -270,9 +270,9 @@ func (o *ComputeServerConfig) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // User defined asset tag of the server. - AssetTag *string `json:"AssetTag,omitempty"` + AssetTag *string "json:\"AssetTag,omitempty\" validate:\"regexp=^[ #$%\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}\\\\^\\\\`\\\\>\\\\<~a-zA-Z0-9]*$\"" // User defined description of the server. - UserLabel *string `json:"UserLabel,omitempty"` + UserLabel *string `json:"UserLabel,omitempty" validate:"regexp=^[ !#$%&\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}~a-zA-Z0-9]*$"` } varComputeServerConfigWithoutEmbeddedStruct := ComputeServerConfigWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_id_pool.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_id_pool.go index 3c3a4e5bf9..32e6c69bc4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_id_pool.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_id_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_id_pool_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_id_pool_list.go index 7153e7467f..fd1d8a6466 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_id_pool_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_id_pool_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_id_pool_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_id_pool_response.go index d4e37cfbaf..5980e8e0f6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_id_pool_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_id_pool_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_op_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_op_status.go index b671c0d249..d6ff24bb96 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_op_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_op_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_power_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_power_policy.go index c44b8c06bf..610ba4b348 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_power_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_power_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_power_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_power_policy_list.go index 0e2908d4ff..bf4b1dae7b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_power_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_power_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_power_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_power_policy_response.go index 0b1f353974..fd246b44f4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_power_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_power_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_setting.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_setting.go index c5fb8f4050..5e475cb148 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_setting.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_setting.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_setting_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_setting_list.go index bea765e9a8..ea6a7ec020 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_setting_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_setting_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_setting_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_setting_response.go index b14fb426eb..f36fcc30b8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_setting_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_server_setting_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_storage_controller_operation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_storage_controller_operation.go index f26ab2b8d6..07e2ad38ce 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_storage_controller_operation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_storage_controller_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_storage_physical_drive.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_storage_physical_drive.go index 93d7399494..ca45e0b6f5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_storage_physical_drive.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_storage_physical_drive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_storage_physical_drive_operation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_storage_physical_drive_operation.go index 5e3da909cd..872510c489 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_storage_physical_drive_operation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_storage_physical_drive_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_storage_utility_image_operation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_storage_utility_image_operation.go index b395b7cd93..ae1e8f6b4d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_storage_utility_image_operation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_storage_utility_image_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_storage_virtual_drive.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_storage_virtual_drive.go index 05f61b6fad..ce214b5342 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_storage_virtual_drive.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_storage_virtual_drive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_storage_virtual_drive_operation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_storage_virtual_drive_operation.go index beca4feb07..315644826a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_storage_virtual_drive_operation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_storage_virtual_drive_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_vmedia.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_vmedia.go index 1bea83e4cc..23ef3973a9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_vmedia.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_vmedia.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_vmedia_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_vmedia_list.go index 6c9bae694e..2a4fe64bc9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_vmedia_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_vmedia_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_vmedia_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_vmedia_relationship.go index 301050be92..60adc48830 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_vmedia_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_vmedia_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_vmedia_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_vmedia_response.go index 06b3fd695a..3ce71dc3d4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_vmedia_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_compute_vmedia_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm.go index a01801418c..6a689355d4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_action.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_action.go index 8b9430003c..a0b9e369c3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_action.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_action.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_aggregation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_aggregation.go index 1ce1ea9bab..b81a3f3ecf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_aggregation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_aggregation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_aggregation_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_aggregation_list.go index 2a6b08fba8..ce88a62149 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_aggregation_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_aggregation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_aggregation_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_aggregation_response.go index 70b7d9108f..d0e3caebc8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_aggregation_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_aggregation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_classification.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_classification.go index 09c9b85ac6..6c6e811e6c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_classification.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_classification.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -32,7 +32,7 @@ type CondAlarmClassification struct { // A description about the alarms group that usually gives what kind of alarms are part of this classification. Description *string `json:"Description,omitempty"` // The name that uniquely identifies the alarm classificaton. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // An array of relationships to condAlarmDefinition resources. AlarmDefinitions []CondAlarmDefinitionRelationship `json:"AlarmDefinitions,omitempty"` AdditionalProperties map[string]interface{} @@ -348,7 +348,7 @@ func (o *CondAlarmClassification) UnmarshalJSON(data []byte) (err error) { // A description about the alarms group that usually gives what kind of alarms are part of this classification. Description *string `json:"Description,omitempty"` // The name that uniquely identifies the alarm classificaton. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // An array of relationships to condAlarmDefinition resources. AlarmDefinitions []CondAlarmDefinitionRelationship `json:"AlarmDefinitions,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_classification_eligibility.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_classification_eligibility.go index b54b8a9154..2ca59d8fb8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_classification_eligibility.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_classification_eligibility.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_classification_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_classification_list.go index 632003bca8..e0bb7faf42 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_classification_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_classification_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_classification_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_classification_relationship.go index e7c01866ee..d47373dd99 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_classification_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_classification_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_classification_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_classification_response.go index 90084f117f..d0dac180f5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_classification_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_classification_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_definition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_definition.go index a6952a1a11..975d242d4b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_definition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_definition_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_definition_list.go index a02069b453..09b4fc36c4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_definition_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_definition_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_definition_relationship.go index 27d9487720..14ce10397c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_definition_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_definition_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_definition_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_definition_response.go index 036c60f3d0..923c3b2edc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_definition_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_list.go index 32c7bbb570..c0e835492a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_response.go index f1d71a35f4..73a7aa1c4b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_spec.go index 736b6bb54d..5d6ad55057 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_summary.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_summary.go index 93e2bfa7b8..58d11e44fd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_summary.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_suppression.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_suppression.go index c7645f438d..d4e8e78806 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_suppression.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_suppression.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_suppression_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_suppression_list.go index b52f3f504f..f8df0917db 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_suppression_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_suppression_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_suppression_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_suppression_response.go index 6060482a93..a306c23b9c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_suppression_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_alarm_suppression_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status.go index 5b611d77c8..762ac69573 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_detail.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_detail.go index fb6514b827..8e8f255fbf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_detail.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_detail.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_detail_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_detail_list.go index c2272c670b..2e82ec8243 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_detail_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_detail_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_detail_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_detail_relationship.go index d6005cfff3..d9aa917bc4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_detail_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_detail_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_detail_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_detail_response.go index 8ba7b49862..6b3dba85ae 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_detail_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_detail_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_job.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_job.go index 028564bced..ce8e5a028d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_job.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_job.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_job_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_job_list.go index 19bc5d3f78..d6eb3e3532 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_job_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_job_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_job_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_job_response.go index d87d4fe73b..cd1c87791c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_job_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_job_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_list.go index 547162645f..e52c204b18 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_relationship.go index dc81041fa9..97e824b9b6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_response.go index 94754d5a68..1904b23b4c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_cond_hcl_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_auth_message.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_auth_message.go index 15c30fcefa..de0b38cc81 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_auth_message.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_auth_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_base_message.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_base_message.go index 96bbe71428..8970e17dcc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_base_message.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_base_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_close_stream_message.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_close_stream_message.go index 1f76a031c8..eebe5b6c34 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_close_stream_message.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_close_stream_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_command_control_message.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_command_control_message.go index 7a699bb0ad..a5953c9d9f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_command_control_message.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_command_control_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_command_terminal_stream.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_command_terminal_stream.go index 4ed90128d1..3cb2119924 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_command_terminal_stream.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_command_terminal_stream.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_download_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_download_status.go index 867a1ee6cb..6db9078177 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_download_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_download_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_event_log.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_event_log.go index afe442fa23..ad5048ba1c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_event_log.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_event_log.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_expect_prompt.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_expect_prompt.go index 95fb93b9c5..b8abd42a8e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_expect_prompt.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_expect_prompt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_fetch_stream_message.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_fetch_stream_message.go index 68e8c94e21..372ef6fe00 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_fetch_stream_message.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_fetch_stream_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_file_checksum.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_file_checksum.go index 94e440573a..5abfb1dcca 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_file_checksum.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_file_checksum.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_file_message.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_file_message.go index 12af47f362..49c3d65059 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_file_message.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_file_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_http_request.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_http_request.go index 8c8a50d175..142d023f50 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_http_request.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_http_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_platform_param_base.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_platform_param_base.go index f6fcbf41f9..5632ec4cd9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_platform_param_base.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_platform_param_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_scoped_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_scoped_inventory.go index 586108b478..97b3ded10a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_scoped_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_ssh_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_ssh_config.go index 9d6a25b2b4..f544edc241 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_ssh_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_ssh_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_ssh_message.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_ssh_message.go index b18ebb20fa..1d708d3e02 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_ssh_message.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_ssh_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_start_stream.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_start_stream.go index 41b2fe0eeb..3089b2dbe5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_start_stream.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_start_stream.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_start_stream_from_device.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_start_stream_from_device.go index cf3b9a5e76..0a523eb492 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_start_stream_from_device.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_start_stream_from_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_stream_acknowledge.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_stream_acknowledge.go index 60927d8d90..afb0129891 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_stream_acknowledge.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_stream_acknowledge.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_stream_input.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_stream_input.go index 5f419b1b5c..41761f15af 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_stream_input.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_stream_input.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_stream_keepalive.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_stream_keepalive.go index fc433d3b5f..014bb83e71 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_stream_keepalive.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_stream_keepalive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_stream_message.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_stream_message.go index bb975dcc54..e765e15446 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_stream_message.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_stream_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_target_change_message.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_target_change_message.go index 59e5ad66b1..07ea6e5ccc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_target_change_message.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_target_change_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_target_specification.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_target_specification.go index da84fd7216..c8b50e783f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_target_specification.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_target_specification.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_url.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_url.go index 3b5dd34491..6c9304ad39 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_url.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_url.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_winrm_request.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_winrm_request.go index f7004df48c..2e819d9d34 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_winrm_request.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_winrm_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_xml_api_message.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_xml_api_message.go index 00d04d19d6..5120476e83 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_xml_api_message.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connector_xml_api_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_connector_pack_update.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_connector_pack_update.go index cf01c24479..49201b8c90 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_connector_pack_update.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_connector_pack_update.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_connector_pack_upgrade.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_connector_pack_upgrade.go index cd1fe08cef..bd36a5390f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_connector_pack_upgrade.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_connector_pack_upgrade.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_connector_pack_upgrade_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_connector_pack_upgrade_list.go index 7c84308207..cbddb9d307 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_connector_pack_upgrade_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_connector_pack_upgrade_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_connector_pack_upgrade_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_connector_pack_upgrade_response.go index b8e7777d8f..23034cd039 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_connector_pack_upgrade_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_connector_pack_upgrade_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_upgrade_impact.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_upgrade_impact.go index 62faee227a..93410d40ff 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_upgrade_impact.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_upgrade_impact.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_upgrade_impact_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_upgrade_impact_list.go index 6c8f4cd6cc..c40f2ca153 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_upgrade_impact_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_upgrade_impact_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_upgrade_impact_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_upgrade_impact_response.go index 74f5a414b4..944fe2a511 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_upgrade_impact_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_connectorpack_upgrade_impact_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_console_console_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_console_console_config.go index b2d7763ad8..6c98f6d1e9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_console_console_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_console_console_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_console_console_config_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_console_console_config_list.go index 818ff73987..88ed9f83e7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_console_console_config_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_console_console_config_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_console_console_config_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_console_console_config_relationship.go index 84006d337c..d51a2d3752 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_console_console_config_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_console_console_config_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_console_console_config_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_console_console_config_response.go index 739dd3f915..94ae9df52a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_console_console_config_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_console_console_config_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_content_base_parameter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_content_base_parameter.go index 5d7048f370..2970bfa1b5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_content_base_parameter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_content_base_parameter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type ContentBaseParameter struct { // The type of the collection item in case this is a collection parameter. * `simple` - The parameter value to be extracted is of the type simple. All the common scalar typessuch as int, bool, string, etc are represented by the simple enum. * `string` - The parameter value to be extracted is of the string type. * `integer` - The parameter value to be extracted is of the number type. * `float` - The parameter value to be extracted is of the float number type. * `boolean` - The parameter value to be extracted is of the boolean type. * `json` - The parameter values to be extracted is of the generic JSON literal. JSON type is applicable only if the content to be parsed is of JSON type. * `complex` - The parameter value to be extracted is a complex parameter that itself isanother collection of simple/complex parameters. * `collection` - The parameter value to be extracted is a collection parameter whose item typeshall be either simple type or complex type. ItemType *string `json:"ItemType,omitempty"` // The name of the parameter. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // The content specific path information that identifies the parameter value within the content. The value is usually a XPath or JSONPath or a regular expression in case of text content. Path *string `json:"Path,omitempty"` // The flag indicates if the extracted value is secure. This flag is applicable for parameters of type String only. @@ -446,7 +446,7 @@ func (o *ContentBaseParameter) UnmarshalJSON(data []byte) (err error) { // The type of the collection item in case this is a collection parameter. * `simple` - The parameter value to be extracted is of the type simple. All the common scalar typessuch as int, bool, string, etc are represented by the simple enum. * `string` - The parameter value to be extracted is of the string type. * `integer` - The parameter value to be extracted is of the number type. * `float` - The parameter value to be extracted is of the float number type. * `boolean` - The parameter value to be extracted is of the boolean type. * `json` - The parameter values to be extracted is of the generic JSON literal. JSON type is applicable only if the content to be parsed is of JSON type. * `complex` - The parameter value to be extracted is a complex parameter that itself isanother collection of simple/complex parameters. * `collection` - The parameter value to be extracted is a collection parameter whose item typeshall be either simple type or complex type. ItemType *string `json:"ItemType,omitempty"` // The name of the parameter. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // The content specific path information that identifies the parameter value within the content. The value is usually a XPath or JSONPath or a regular expression in case of text content. Path *string `json:"Path,omitempty"` // The flag indicates if the extracted value is secure. This flag is applicable for parameters of type String only. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_content_complex_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_content_complex_type.go index 15e736887c..6cfe20b5a5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_content_complex_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_content_complex_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_content_parameter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_content_parameter.go index 37ec6f0201..2c2f40ab92 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_content_parameter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_content_parameter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_content_text_parameter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_content_text_parameter.go index ad57a62625..75c934fb08 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_content_text_parameter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_content_text_parameter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_adapter_compliance_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_adapter_compliance_details.go index 18b6c84496..ead7ecee5d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_adapter_compliance_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_adapter_compliance_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_adapter_compliance_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_adapter_compliance_details_list.go index 826bf0ba7f..de8cf99bd9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_adapter_compliance_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_adapter_compliance_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_adapter_compliance_details_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_adapter_compliance_details_relationship.go index 8a78f9fb7d..dfe8134c88 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_adapter_compliance_details_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_adapter_compliance_details_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_adapter_compliance_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_adapter_compliance_details_response.go index 95bda0a70e..4d238b6a45 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_adapter_compliance_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_adapter_compliance_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_alarm_summary.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_alarm_summary.go index 69cf6baeb0..91e5380583 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_alarm_summary.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_alarm_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_base_compliance_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_base_compliance_details.go index 72763ae466..185bf37f29 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_base_compliance_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_base_compliance_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_base_compliance_details_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_base_compliance_details_relationship.go index 21481a9c69..2eeefa6b17 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_base_compliance_details_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_base_compliance_details_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_base_pod.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_base_pod.go index a6768443e3..7e49f7c86b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_base_pod.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_base_pod.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type ConvergedinfraBasePod struct { // 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. ObjectType string `json:"ObjectType"` // Description of the pod. A short note about the nature or purpose of the pod. - Description *string `json:"Description,omitempty"` + Description *string `json:"Description,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\x00-\\\\xFF]*$"` // Name of the pod. Concrete pod will be created with this name. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` // Defines the type of the pod. * `FlexPod` - Pod type is FlexPod, an integrated infrastructure solution developed by Cisco and NetApp. * `FlashStack` - Pod type is FlashStack, an integrated infrastructure solution developed by Cisco and Pure Storage. Type *string `json:"Type,omitempty"` AdditionalProperties map[string]interface{} @@ -311,9 +311,9 @@ func (o *ConvergedinfraBasePod) UnmarshalJSON(data []byte) (err error) { // 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. ObjectType string `json:"ObjectType"` // Description of the pod. A short note about the nature or purpose of the pod. - Description *string `json:"Description,omitempty"` + Description *string `json:"Description,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\x00-\\\\xFF]*$"` // Name of the pod. Concrete pod will be created with this name. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` // Defines the type of the pod. * `FlexPod` - Pod type is FlexPod, an integrated infrastructure solution developed by Cisco and NetApp. * `FlashStack` - Pod type is FlashStack, an integrated infrastructure solution developed by Cisco and Pure Storage. Type *string `json:"Type,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_base_pod_summary.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_base_pod_summary.go index 82579f5b3d..6ae0b0cf1a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_base_pod_summary.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_base_pod_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_compliance_summary.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_compliance_summary.go index 81900af74d..3d1978a218 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_compliance_summary.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_compliance_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod.go index c6beecee83..3707727e3f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_compliance_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_compliance_info.go index 45323c041e..38ca5b27f2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_compliance_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_compliance_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_compliance_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_compliance_info_list.go index 2a3f2c45f7..806fdf1dc6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_compliance_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_compliance_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_compliance_info_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_compliance_info_relationship.go index c1889fea09..f09e094dfa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_compliance_info_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_compliance_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_compliance_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_compliance_info_response.go index ea39f3bbd3..8be1c09020 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_compliance_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_compliance_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_list.go index f6bba17990..8071b5c05b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_relationship.go index 8bd5ba30a1..4d2fd1b2dd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_response.go index f61c96668a..977e885348 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_summary.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_summary.go index a70b5692fd..021abd53a6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_summary.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_pod_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_server_compliance_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_server_compliance_details.go index a76a45ec7b..ae8fcb878d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_server_compliance_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_server_compliance_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_server_compliance_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_server_compliance_details_list.go index 6cb6ac621f..a6c445a249 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_server_compliance_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_server_compliance_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_server_compliance_details_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_server_compliance_details_relationship.go index e21c2c6b21..169125ecb4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_server_compliance_details_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_server_compliance_details_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_server_compliance_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_server_compliance_details_response.go index a73ab304c5..a5a624a6b1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_server_compliance_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_server_compliance_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_storage_compliance_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_storage_compliance_details.go index ab9021d840..6adf05ad65 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_storage_compliance_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_storage_compliance_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_storage_compliance_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_storage_compliance_details_list.go index b6c0c36d7e..0c459c9c98 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_storage_compliance_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_storage_compliance_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_storage_compliance_details_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_storage_compliance_details_relationship.go index f436179661..a53b92a360 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_storage_compliance_details_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_storage_compliance_details_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_storage_compliance_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_storage_compliance_details_response.go index cd72d8ced5..88e697d50a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_storage_compliance_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_storage_compliance_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_switch_compliance_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_switch_compliance_details.go index 914484449a..63604cfe54 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_switch_compliance_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_switch_compliance_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_switch_compliance_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_switch_compliance_details_list.go index d8bafbbf12..efef2b8c44 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_switch_compliance_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_switch_compliance_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_switch_compliance_details_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_switch_compliance_details_relationship.go index ba063fcb04..afc4e9d513 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_switch_compliance_details_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_switch_compliance_details_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_switch_compliance_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_switch_compliance_details_response.go index 4001cbe134..931608738b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_switch_compliance_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_convergedinfra_switch_compliance_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_crd_custom_resource.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_crd_custom_resource.go index e6e7147756..347adb2a5a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_crd_custom_resource.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_crd_custom_resource.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_crd_custom_resource_config_property.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_crd_custom_resource_config_property.go index 2fc2ba80a0..e528a44ead 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_crd_custom_resource_config_property.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_crd_custom_resource_config_property.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_crd_custom_resource_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_crd_custom_resource_list.go index fe13ed2420..024c7bd500 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_crd_custom_resource_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_crd_custom_resource_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_crd_custom_resource_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_crd_custom_resource_response.go index b865639524..04927ba041 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_crd_custom_resource_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_crd_custom_resource_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_deviceconnector_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_deviceconnector_policy.go index af2f095c03..7e00b2369d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_deviceconnector_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_deviceconnector_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_deviceconnector_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_deviceconnector_policy_list.go index ac1680de70..37f11fbcae 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_deviceconnector_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_deviceconnector_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_deviceconnector_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_deviceconnector_policy_response.go index d099b973ce..7c40978589 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_deviceconnector_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_deviceconnector_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_device.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_device.go index 152b3ab8dd..bb816b37d5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_device.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_device_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_device_interface.go index cfae4f35e5..d52a45257f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_device_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_device_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_device_interface_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_device_interface_list.go index 15896ff562..4c8a6ab2b8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_device_interface_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_device_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_device_interface_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_device_interface_response.go index df6c9f2eee..621fdbf0eb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_device_interface_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_device_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_device_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_device_list.go index 0db696b7cf..0c33337a1e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_device_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_device_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_device_response.go index e668836492..1706c00a7b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_device_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_external_border_node.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_external_border_node.go index 971a430a13..4426095eae 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_external_border_node.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_external_border_node.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_external_border_node_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_external_border_node_interface.go index 74fd161aa4..27b18628c5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_external_border_node_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_external_border_node_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_external_border_node_interface_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_external_border_node_interface_list.go index 2ab852c684..fdb380876c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_external_border_node_interface_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_external_border_node_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_external_border_node_interface_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_external_border_node_interface_response.go index 70bedbf778..71a3764e3d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_external_border_node_interface_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_external_border_node_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_external_border_node_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_external_border_node_list.go index 038edd6067..4a90d82f5d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_external_border_node_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_external_border_node_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_external_border_node_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_external_border_node_response.go index 4b35cc1e61..67e029612d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_external_border_node_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_external_border_node_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_fabric_site.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_fabric_site.go index 45c13e5549..22c5ecd709 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_fabric_site.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_fabric_site.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_fabric_site_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_fabric_site_list.go index cbd22401d9..8a48a4dbc2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_fabric_site_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_fabric_site_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_fabric_site_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_fabric_site_response.go index 5d6e463251..d91ac2d8f6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_fabric_site_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_fabric_site_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_inventory_entity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_inventory_entity.go index e21758c32f..ed11666a10 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_inventory_entity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_inventory_entity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_site.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_site.go index 670bef213f..3dc3c6d16e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_site.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_site.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_site_ip_pool.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_site_ip_pool.go index 524668a6e3..53f1a54980 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_site_ip_pool.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_site_ip_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_site_ip_pool_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_site_ip_pool_list.go index d1c42f9d70..f545ac3bb2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_site_ip_pool_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_site_ip_pool_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_site_ip_pool_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_site_ip_pool_response.go index dc124aaeca..fca1a71b20 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_site_ip_pool_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_site_ip_pool_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_site_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_site_list.go index bba6e712fd..17da77de99 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_site_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_site_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_site_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_site_response.go index c8948aec10..93e3ef9445 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_site_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_site_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_template.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_template.go index 4840bfa8a2..041fcf041c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_template.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_template.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_template_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_template_list.go index 945e916254..d480ef5b1f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_template_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_template_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_template_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_template_response.go index 8149cd7fcd..f592922a03 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_template_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_template_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_transit.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_transit.go index 95daf6cec2..555da323af 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_transit.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_transit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_transit_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_transit_list.go index 917cb88758..61310291c8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_transit_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_transit_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_transit_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_transit_response.go index b781ad25ef..514894c8f5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_transit_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_transit_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_virtual_network_fabric_site.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_virtual_network_fabric_site.go index 44071cc00f..823a719949 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_virtual_network_fabric_site.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_virtual_network_fabric_site.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_virtual_network_fabric_site_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_virtual_network_fabric_site_list.go index 1df328d0aa..20b83cc4a6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_virtual_network_fabric_site_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_virtual_network_fabric_site_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_virtual_network_fabric_site_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_virtual_network_fabric_site_response.go index 63f971ed27..a0e336d78d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_virtual_network_fabric_site_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_dnac_virtual_network_fabric_site_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_abstract_device.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_abstract_device.go index e293f15337..4363d304b3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_abstract_device.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_abstract_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -36,7 +36,7 @@ type EquipmentAbstractDevice struct { // Administrator defined name for the device. Name *string `json:"Name,omitempty"` // Unique identity of the device. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Current running software version of the device. Version *string `json:"Version,omitempty"` AdditionalProperties map[string]interface{} @@ -412,7 +412,7 @@ func (o *EquipmentAbstractDevice) UnmarshalJSON(data []byte) (err error) { // Administrator defined name for the device. Name *string `json:"Name,omitempty"` // Unique identity of the device. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Current running software version of the device. Version *string `json:"Version,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_base.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_base.go index 741565c79e..701b6a8819 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_base.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_base_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_base_relationship.go index d9a4c5c5e0..a75b233673 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_base_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_base_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_base_sensor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_base_sensor.go index 10e87cf3ef..dbe157c496 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_base_sensor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_base_sensor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis.go index e05dd00086..5e8f5b93d3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -58,7 +58,7 @@ type EquipmentChassis struct { // This field identifies the Stock Keeping Unit for the chassis enclosure. Sku *string `json:"Sku,omitempty"` // The user defined label assigned to the chassis. - UserLabel *string `json:"UserLabel,omitempty"` + UserLabel *string `json:"UserLabel,omitempty" validate:"regexp=^[ !#$%&\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}~a-zA-Z0-9]*$"` // This field identifies the Vendor ID for the chassis enclosure. Vid *string `json:"Vid,omitempty"` // An array of relationships to computeBlade resources. @@ -1539,7 +1539,7 @@ func (o *EquipmentChassis) UnmarshalJSON(data []byte) (err error) { // This field identifies the Stock Keeping Unit for the chassis enclosure. Sku *string `json:"Sku,omitempty"` // The user defined label assigned to the chassis. - UserLabel *string `json:"UserLabel,omitempty"` + UserLabel *string `json:"UserLabel,omitempty" validate:"regexp=^[ !#$%&\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}~a-zA-Z0-9]*$"` // This field identifies the Vendor ID for the chassis enclosure. Vid *string `json:"Vid,omitempty"` // An array of relationships to computeBlade resources. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_id_pool.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_id_pool.go index 8a4ef8f345..0ed2eec422 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_id_pool.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_id_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_id_pool_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_id_pool_list.go index 09bda07859..ed178e790f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_id_pool_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_id_pool_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_id_pool_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_id_pool_response.go index 7f2cab0cf0..45289749eb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_id_pool_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_id_pool_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_identity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_identity.go index be0f9ee0e8..05495a318b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_identity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_identity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_identity_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_identity_list.go index 49b757a742..9d0e236e05 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_identity_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_identity_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_identity_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_identity_response.go index 5148535a9e..558f853cd8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_identity_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_identity_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_list.go index 9eb3e1699a..5c628e0925 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_operation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_operation.go index f94d3637dd..5f97b4e5cf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_operation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_operation_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_operation_list.go index 9e2fc73eac..28937f352b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_operation_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_operation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_operation_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_operation_response.go index 1f758338cb..73205de594 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_operation_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_operation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_operation_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_operation_status.go index 48ed074f9d..a1f8b9c599 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_operation_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_operation_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_relationship.go index 677e8eec99..af9573bd4d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_response.go index 693723dbc2..7d1c945dd6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_chassis_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_device_location.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_device_location.go index 85ae71b8ea..edb28c12e4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_device_location.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_device_location.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_device_summary.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_device_summary.go index e70e5085d8..3bc959fb57 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_device_summary.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_device_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_device_summary_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_device_summary_list.go index 2287c4d0ef..cfd73f43be 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_device_summary_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_device_summary_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_device_summary_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_device_summary_response.go index 0447d0d357..b4fa903cdd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_device_summary_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_device_summary_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_end_point_log.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_end_point_log.go index 161392f5f3..44086f8ac4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_end_point_log.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_end_point_log.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_end_point_log_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_end_point_log_list.go index 0b14b1f5e3..1eb352d79e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_end_point_log_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_end_point_log_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_end_point_log_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_end_point_log_response.go index 0eb05e8d68..a8090bd1ff 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_end_point_log_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_end_point_log_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_expander_module.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_expander_module.go index 733d5a9f90..b32cb449e8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_expander_module.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_expander_module.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_expander_module_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_expander_module_list.go index d332aca290..769d2ae3ee 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_expander_module_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_expander_module_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_expander_module_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_expander_module_relationship.go index 14b3c66713..7d557b6e48 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_expander_module_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_expander_module_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_expander_module_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_expander_module_response.go index 9778d62784..10c956a842 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_expander_module_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_expander_module_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan.go index ff7c8fb195..70c8898200 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_control.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_control.go index 9068d936b2..16ab43847a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_control.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_control.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_control_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_control_list.go index 0a62f9e5c2..62cdfddb20 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_control_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_control_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_control_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_control_relationship.go index 83656e1338..76e9aee408 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_control_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_control_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_control_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_control_response.go index b475af5f60..d7fc831033 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_control_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_control_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_list.go index 72fd40d17c..8ff9d91c44 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_module.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_module.go index 4b52210d78..d294a298d4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_module.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_module.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_module_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_module_list.go index 7b80dda36e..dfe3313fdb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_module_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_module_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_module_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_module_relationship.go index 85fa538604..d3b2b3203f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_module_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_module_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_module_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_module_response.go index 03dbc055a0..ae10e97111 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_module_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_module_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_relationship.go index 1a35e25504..daacff717e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_response.go index 50ce6b4610..1421ba734f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fan_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex.go index 6e073f566b..65249476bd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_identity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_identity.go index a0d2d1beee..c54c7af030 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_identity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_identity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_identity_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_identity_list.go index d7b3928780..678b7f78dd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_identity_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_identity_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_identity_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_identity_response.go index 675c29cc7b..f5eb7f1ea7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_identity_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_identity_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_list.go index 52d41a92ad..509697e48b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_operation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_operation.go index 1b896d3b92..90f3715037 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_operation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_operation_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_operation_list.go index 4f4b968270..353a60bdcf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_operation_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_operation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_operation_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_operation_response.go index 8aa172d04b..ea2c646370 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_operation_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_operation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_relationship.go index 1009931494..4660a9bbb9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_response.go index a084fe8b87..e05389f91d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fex_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fru.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fru.go index 9d38661995..371f6cfd8a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fru.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fru.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fru_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fru_list.go index 1a9e4e5eb4..effcda753e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fru_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fru_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fru_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fru_relationship.go index b5a870ac98..e3a5b48fb0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fru_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fru_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fru_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fru_response.go index 196b01269a..ec57259952 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fru_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_fru_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_hybrid_drive_slot.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_hybrid_drive_slot.go index b1bc67b001..7929007178 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_hybrid_drive_slot.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_hybrid_drive_slot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_hybrid_drive_slot_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_hybrid_drive_slot_list.go index 144ea4606b..245bc28802 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_hybrid_drive_slot_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_hybrid_drive_slot_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_hybrid_drive_slot_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_hybrid_drive_slot_relationship.go index 56387d1da8..761d60dcdc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_hybrid_drive_slot_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_hybrid_drive_slot_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_hybrid_drive_slot_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_hybrid_drive_slot_response.go index 763234e546..4a706f20b8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_hybrid_drive_slot_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_hybrid_drive_slot_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_identity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_identity.go index 90e7fa3012..8d162bc106 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_identity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_identity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card.go index e8669e41fe..8499d6f2da 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_base.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_base.go index 85e718baa9..cfe7716622 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_base.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_base_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_base_relationship.go index 3143f471ed..46e332f548 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_base_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_base_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_identity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_identity.go index 0a66501349..7dba955144 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_identity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_identity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_list.go index 203f2d000b..9eac91e59a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_operation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_operation.go index 09a09bf8e2..019b093bc6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_operation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_operation_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_operation_list.go index 95c5748352..045fcb865e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_operation_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_operation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_operation_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_operation_response.go index 83fe7f82da..0bc9963640 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_operation_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_operation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_operation_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_operation_status.go index 8c81a58597..3d87d145ad 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_operation_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_operation_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_relationship.go index 63c9bcdb39..c52f6859ad 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_response.go index 11c1e9bc9f..531e96ed7e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_card_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_expander.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_expander.go index 0766fb0a61..6ec0e48400 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_expander.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_expander.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_expander_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_expander_list.go index d464dadf19..07a1838ba9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_expander_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_expander_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_expander_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_expander_relationship.go index ffeed9ebb4..73d7852cdc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_expander_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_expander_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_expander_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_expander_response.go index 99809e5da4..f953029282 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_expander_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_io_expander_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_locator_led.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_locator_led.go index 3593f0b9b8..5e9c47e0d6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_locator_led.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_locator_led.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_locator_led_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_locator_led_list.go index af98222981..77670b4aa4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_locator_led_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_locator_led_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_locator_led_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_locator_led_relationship.go index 1bd602b03c..7142fc9275 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_locator_led_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_locator_led_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_locator_led_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_locator_led_response.go index c6b2ae007f..768659695e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_locator_led_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_locator_led_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_log_download.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_log_download.go index 526ce19cbc..4fdeff3f18 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_log_download.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_log_download.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_log_download_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_log_download_list.go index 94a6f819f3..7daf5f7187 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_log_download_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_log_download_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_log_download_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_log_download_response.go index b85cc6992f..9e11f3a65a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_log_download_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_log_download_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_physical_identity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_physical_identity.go index 3a123e10c5..38c158e25e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_physical_identity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_physical_identity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_physical_identity_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_physical_identity_relationship.go index 6c5e6ceebd..4b6e28e909 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_physical_identity_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_physical_identity_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu.go index 6f4bb4ba4a..e9f26608fc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_control.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_control.go index 2adacaf1df..c93252f0b3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_control.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_control.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_control_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_control_list.go index 11457700cd..228e9b7945 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_control_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_control_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_control_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_control_relationship.go index 7a5cca9311..dc256b311e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_control_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_control_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_control_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_control_response.go index f398e2f329..6e31dff87d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_control_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_control_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_list.go index ecac3367e8..3b93b201aa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_relationship.go index 0c0ea32d48..75d715417b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_response.go index 6205205ecb..69c805f806 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_psu_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure.go index 729f68a6d1..92ed5d83d7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_list.go index 48ead411d3..294f9b58ff 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_relationship.go index 7bb7e0673f..08464be146 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_response.go index 2e2dbbbe53..c3801f9f5c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_slot.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_slot.go index 841adee832..0ee79d3383 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_slot.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_slot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_slot_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_slot_list.go index b8d9847ebb..995c010f45 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_slot_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_slot_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_slot_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_slot_relationship.go index 665a11459d..c967253c38 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_slot_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_slot_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_slot_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_slot_response.go index 64f00ff6f5..73e013ce31 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_slot_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_rack_enclosure_slot_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_reset_action.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_reset_action.go index 4528fd9b4f..36e11e21e7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_reset_action.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_reset_action.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_sensor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_sensor.go index c375268483..89e52cab56 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_sensor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_sensor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_sensor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_sensor_list.go index 55f8d635ec..eb6c05fcf8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_sensor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_sensor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_sensor_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_sensor_relationship.go index 2ce4e64710..38e8463141 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_sensor_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_sensor_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_sensor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_sensor_response.go index 4016b956e7..2a3422a0bf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_sensor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_sensor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_shared_io_module.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_shared_io_module.go index 83775ec7ac..6564d00254 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_shared_io_module.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_shared_io_module.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_shared_io_module_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_shared_io_module_list.go index 0b4142b745..5062d09ae3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_shared_io_module_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_shared_io_module_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_shared_io_module_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_shared_io_module_relationship.go index fb389ce2c3..cb62dc3b29 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_shared_io_module_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_shared_io_module_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_shared_io_module_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_shared_io_module_response.go index c66458bda8..6923d426a1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_shared_io_module_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_shared_io_module_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_slot.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_slot.go index bfaf64b006..dbc0392561 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_slot.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_slot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_card.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_card.go index 955533a42d..9b9155808c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_card.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_card.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_card_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_card_list.go index b74213168f..d04fe03f5e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_card_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_card_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_card_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_card_relationship.go index 5def4add37..75dc9faa3c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_card_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_card_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_card_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_card_response.go index 18a5bace3b..70ab881ed0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_card_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_card_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_operation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_operation.go index 7469fc418a..9bd012fbea 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_operation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_operation_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_operation_list.go index fe89def897..f12b88422c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_operation_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_operation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_operation_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_operation_response.go index a48d609d36..113d7d7128 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_operation_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_switch_operation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_system_io_controller.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_system_io_controller.go index bb83a10118..880f81144a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_system_io_controller.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_system_io_controller.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_system_io_controller_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_system_io_controller_list.go index ce7d72c2e7..a1b5808d95 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_system_io_controller_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_system_io_controller_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_system_io_controller_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_system_io_controller_relationship.go index 5ff9b0d215..0988b83032 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_system_io_controller_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_system_io_controller_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_system_io_controller_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_system_io_controller_response.go index f87efb9444..a6790fa561 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_system_io_controller_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_system_io_controller_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_tpm.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_tpm.go index 6534f07c00..0940e3cc1b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_tpm.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_tpm.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_tpm_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_tpm_list.go index eee578e788..57b8e9ab08 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_tpm_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_tpm_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_tpm_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_tpm_relationship.go index d72c9ef39c..9053eb421d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_tpm_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_tpm_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_tpm_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_tpm_response.go index 0e7282bf67..776b048e59 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_tpm_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_tpm_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_transceiver.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_transceiver.go index dd13af832d..6419f530ae 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_transceiver.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_transceiver.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_transceiver_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_transceiver_list.go index af3a0f51a0..793bbc40fc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_transceiver_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_transceiver_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_transceiver_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_transceiver_response.go index a454356f58..f1abe5bfa6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_transceiver_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_equipment_transceiver_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_error.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_error.go index 64555918cc..7d6eb0253c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_error.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_error.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_host_port.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_host_port.go index 4a58b4e711..66638153d2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_host_port.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_host_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_host_port_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_host_port_list.go index 016b9293c0..a3b14f8907 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_host_port_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_host_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_host_port_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_host_port_relationship.go index 623795f8b6..4545f7f915 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_host_port_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_host_port_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_host_port_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_host_port_response.go index 7c428b6868..179ab69a68 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_host_port_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_host_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_network_port.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_network_port.go index b61602dfa4..33779d31c9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_network_port.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_network_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_network_port_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_network_port_list.go index 3a376da531..2f20d49ba6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_network_port_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_network_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_network_port_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_network_port_relationship.go index c441df1eec..d0a65def20 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_network_port_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_network_port_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_network_port_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_network_port_response.go index 23223156c0..313d092dd4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_network_port_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_network_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_physical_port.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_physical_port.go index 33d9c8edd0..828eaab7a3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_physical_port.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_physical_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_physical_port_base.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_physical_port_base.go index 229f74038a..20ad9e056c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_physical_port_base.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_physical_port_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_physical_port_base_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_physical_port_base_relationship.go index 396b0ce31d..3c466e4ce4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_physical_port_base_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_physical_port_base_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_physical_port_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_physical_port_list.go index 1794612dc6..7d27eb6048 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_physical_port_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_physical_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_physical_port_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_physical_port_relationship.go index 8dc6e8cb37..248fe47a11 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_physical_port_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_physical_port_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_physical_port_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_physical_port_response.go index 9cc2e19815..101f32e415 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_physical_port_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_physical_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_port_channel.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_port_channel.go index 948102af20..ce5b068854 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_port_channel.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_port_channel.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_port_channel_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_port_channel_list.go index 2868ac2daa..352e6539a1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_port_channel_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_port_channel_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_port_channel_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_port_channel_relationship.go index 83f1b8c3a6..93748907d2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_port_channel_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_port_channel_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_port_channel_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_port_channel_response.go index e4bf200a50..f5aa80e491 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_port_channel_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ether_port_channel_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_externalsite_authorization.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_externalsite_authorization.go index ed7c70bf87..4848350bdd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_externalsite_authorization.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_externalsite_authorization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_externalsite_authorization_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_externalsite_authorization_list.go index b77060b1d5..4ff86b3f8b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_externalsite_authorization_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_externalsite_authorization_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_externalsite_authorization_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_externalsite_authorization_response.go index 8e4de542c9..bb5d65cba8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_externalsite_authorization_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_externalsite_authorization_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_interface_role.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_interface_role.go index c26aca4f51..ba1e9a0444 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_interface_role.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_interface_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_interface_role_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_interface_role_relationship.go index 5f9b4e3719..d01aa4b6e2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_interface_role_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_interface_role_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_dest_port.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_dest_port.go index 26c81b088a..7e389c3c55 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_dest_port.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_dest_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_dest_port_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_dest_port_relationship.go index 2cad32a4c9..cefaf44431 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_dest_port_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_dest_port_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_session.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_session.go index 36b8a55646..9f2bafe744 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_session.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_session.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type FabricAbstractSpanSession struct { // The configured state of SPAN configuration. If the configuration fails to deploy to the Fabric Interconnect, it can be redeployed by toggling the admin state. * `None` - Nil value when no action has been triggered by the user. * `Applied` - User configured settings are in applied state. * `Applying` - User settings are being applied on the target server. * `Failed` - User configured settings could not be applied. ConfigState *string `json:"ConfigState,omitempty"` // Name of the SPAN session. The name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // Operational state of the SPAN session. * `Unknown` - SPAN session operational state is Unknown. * `Up` - SPAN session operational state is Up. * `Down` - SPAN session operational state is Down. * `Error` - SPAN session operational state is Error. OperState *string `json:"OperState,omitempty"` // Operational state reason of the SPAN session. * `Unknown` - Unknown operational state. * `Active` - Active and operational SPAN session. * `NoHardwareResource` - No hardware resources available. * `NoOperationalSrcDst` - No operational SPAN source or destination. * `GenericError` - Generic operational error. * `NoSourcesConfigured` - No source interfaces configured. * `NoDestinationConfigured` - No destination port configured. * `NoSourceDestinationConfigured` - No source or destination interface configured. * `SessionAdminShut` - Session is administratively disabled. * `WrongDestinationMode` - Wrong Destination mode configured. * `WrongSourceMode` - Wrong Source mode configured. * `TunnelMisconfDown` - Tunnel Misconfigured or Down. * `NoFlowIdSpecified` - No Flow ID specified for ERSPAN. @@ -588,7 +588,7 @@ func (o *FabricAbstractSpanSession) UnmarshalJSON(data []byte) (err error) { // The configured state of SPAN configuration. If the configuration fails to deploy to the Fabric Interconnect, it can be redeployed by toggling the admin state. * `None` - Nil value when no action has been triggered by the user. * `Applied` - User configured settings are in applied state. * `Applying` - User settings are being applied on the target server. * `Failed` - User configured settings could not be applied. ConfigState *string `json:"ConfigState,omitempty"` // Name of the SPAN session. The name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // Operational state of the SPAN session. * `Unknown` - SPAN session operational state is Unknown. * `Up` - SPAN session operational state is Up. * `Down` - SPAN session operational state is Down. * `Error` - SPAN session operational state is Error. OperState *string `json:"OperState,omitempty"` // Operational state reason of the SPAN session. * `Unknown` - Unknown operational state. * `Active` - Active and operational SPAN session. * `NoHardwareResource` - No hardware resources available. * `NoOperationalSrcDst` - No operational SPAN source or destination. * `GenericError` - Generic operational error. * `NoSourcesConfigured` - No source interfaces configured. * `NoDestinationConfigured` - No destination port configured. * `NoSourceDestinationConfigured` - No source or destination interface configured. * `SessionAdminShut` - Session is administratively disabled. * `WrongDestinationMode` - Wrong Destination mode configured. * `WrongSourceMode` - Wrong Source mode configured. * `TunnelMisconfDown` - Tunnel Misconfigured or Down. * `NoFlowIdSpecified` - No Flow ID specified for ERSPAN. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source.go index 813ce6464b..b5a9ce61c0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source_port.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source_port.go index 7f0526a859..734c36d3d5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source_port.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source_port_channel.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source_port_channel.go index c8263f7fe4..8b4187a2c6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source_port_channel.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source_port_channel.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source_port_channel_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source_port_channel_relationship.go index 2317d84c33..6a3520694e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source_port_channel_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source_port_channel_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source_port_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source_port_relationship.go index 08932f0424..c6f44e0763 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source_port_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source_port_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source_virtual_if.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source_virtual_if.go index 9d523359a9..3e297647c2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source_virtual_if.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source_virtual_if.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source_virtual_if_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source_virtual_if_relationship.go index 7cd6997e82..16f50e0340 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source_virtual_if_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_abstract_span_source_virtual_if_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_appliance_pc_role.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_appliance_pc_role.go index 8074817206..e63ab8da43 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_appliance_pc_role.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_appliance_pc_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_appliance_pc_role_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_appliance_pc_role_list.go index 65c06a9a07..d0581f242a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_appliance_pc_role_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_appliance_pc_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_appliance_pc_role_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_appliance_pc_role_response.go index d9499ddd6d..3c5cb4b3d2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_appliance_pc_role_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_appliance_pc_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_appliance_role.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_appliance_role.go index a2cdb87c7d..2796895376 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_appliance_role.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_appliance_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_appliance_role_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_appliance_role_list.go index 03ebd9053e..d9a1e4c826 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_appliance_role_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_appliance_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_appliance_role_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_appliance_role_response.go index f65e16bd80..e89a99efb3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_appliance_role_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_appliance_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_base_cluster_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_base_cluster_profile.go index fdbfd732a3..0857fc9332 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_base_cluster_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_base_cluster_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_base_switch_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_base_switch_profile.go index 48107ebc1e..08b528fb95 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_base_switch_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_base_switch_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_base_switch_profile_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_base_switch_profile_relationship.go index 1742f49526..718cd9ba2c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_base_switch_profile_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_base_switch_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_cluster_assignment.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_cluster_assignment.go index 22da5a4bcf..d8e1175127 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_cluster_assignment.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_cluster_assignment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,7 +30,7 @@ type FabricClusterAssignment struct { ObjectType string `json:"ObjectType"` NetworkElement *MoMoRef `json:"NetworkElement,omitempty"` // Name of the source SwitchProfile or SwitchProfileTemplate whose clone has to be assigned to the network element mentioned in NetworkElement property under ClusterAssignments. - SourceSwitchProfileOrTemplateName *string `json:"SourceSwitchProfileOrTemplateName,omitempty"` + SourceSwitchProfileOrTemplateName *string `json:"SourceSwitchProfileOrTemplateName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_.-]{1,64}$"` AdditionalProperties map[string]interface{} } @@ -270,7 +270,7 @@ func (o *FabricClusterAssignment) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` NetworkElement *MoMoRef `json:"NetworkElement,omitempty"` // Name of the source SwitchProfile or SwitchProfileTemplate whose clone has to be assigned to the network element mentioned in NetworkElement property under ClusterAssignments. - SourceSwitchProfileOrTemplateName *string `json:"SourceSwitchProfileOrTemplateName,omitempty"` + SourceSwitchProfileOrTemplateName *string `json:"SourceSwitchProfileOrTemplateName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_.-]{1,64}$"` } varFabricClusterAssignmentWithoutEmbeddedStruct := FabricClusterAssignmentWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_change_detail.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_change_detail.go index 09c2468eab..8367aed950 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_change_detail.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_change_detail.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_change_detail_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_change_detail_list.go index 0384dd3b05..8a6a4c92e5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_change_detail_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_change_detail_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_change_detail_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_change_detail_relationship.go index 03530938dd..432d5a12e0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_change_detail_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_change_detail_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_change_detail_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_change_detail_response.go index d22ca9b70b..b11bcac47e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_change_detail_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_change_detail_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result.go index 0b56afba08..c0c081876d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_entry.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_entry.go index 5c898dd012..078a34250e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_entry.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_entry_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_entry_list.go index 36c66434a2..4be126fffd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_entry_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_entry_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_entry_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_entry_relationship.go index 0051d810a2..384236f19a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_entry_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_entry_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_entry_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_entry_response.go index 6c8fdbfe0b..a05bb6b620 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_entry_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_entry_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_list.go index 26b582a8b7..0d9d73a21f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_relationship.go index e178e64603..9faeb9fad0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_response.go index e3d0cdcb37..3db7b332d4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_config_result_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_element_identity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_element_identity.go index 6762f9164e..12449547fa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_element_identity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_element_identity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_element_identity_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_element_identity_list.go index 67ecfd2d4d..fb6a53b975 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_element_identity_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_element_identity_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_element_identity_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_element_identity_response.go index 295c3f941e..680e505fdf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_element_identity_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_element_identity_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_estimate_impact.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_estimate_impact.go index 5b71146d4e..2cc8a5d444 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_estimate_impact.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_estimate_impact.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy.go index e08e2694ea..b50a350136 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_inventory.go index 892de9aeb4..817e12668d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_inventory_list.go index 5ff51f41b8..0e69c2cd0d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_inventory_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_inventory_relationship.go index a9f2b220c1..c786fa16c3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_inventory_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_inventory_response.go index f63f84ca14..ca5cf2e754 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_list.go index e077a86b31..78f835926f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_relationship.go index 574dfd44f0..7a95c87f2c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_response.go index 4aebb0e291..ef8da42642 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_control_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy.go index be247ef202..04d5d08ee2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_inventory.go index 29374f48f7..4b8d7fb46e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_inventory_list.go index 9fb0b266a8..9fa9e86245 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_inventory_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_inventory_relationship.go index fc0d35ee76..8818343407 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_inventory_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_inventory_response.go index 29c6a1e9c8..76b6d9c23a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_list.go index 8740501856..45e51c8e26 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_relationship.go index c4a4336126..c06d7bc016 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_response.go index 3330a3d982..bda94ea028 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_group_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_policy.go index 5fd9503180..c4aab72679 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_policy_list.go index 2707e6dc0a..6d6df7118b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_policy_relationship.go index 58719c0092..c19c93f3a2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_policy_response.go index 88a378d05e..015ff9f785 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_eth_network_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_network_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_network_policy.go index 9eaafd252b..161e34d35e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_network_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_network_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_network_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_network_policy_list.go index 9a5e9c875e..1589fa1e1c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_network_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_network_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_network_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_network_policy_relationship.go index 45b999f4b4..9e6d71bc0c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_network_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_network_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_network_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_network_policy_response.go index 3ec1dc6aba..287a73699f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_network_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_network_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_storage_role.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_storage_role.go index b5510af835..b5bd701d8e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_storage_role.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_storage_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_storage_role_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_storage_role_list.go index 64214fa7ac..92c9e61fc1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_storage_role_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_storage_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_storage_role_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_storage_role_response.go index 276a8d944f..7847573987 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_storage_role_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_storage_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_uplink_pc_role.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_uplink_pc_role.go index 6b969680d2..915d1b315f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_uplink_pc_role.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_uplink_pc_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_uplink_pc_role_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_uplink_pc_role_list.go index 306568d12a..7081f18de9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_uplink_pc_role_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_uplink_pc_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_uplink_pc_role_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_uplink_pc_role_response.go index 49060e7db1..9b91d19746 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_uplink_pc_role_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_uplink_pc_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_uplink_role.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_uplink_role.go index c987f18af6..807f08efa0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_uplink_role.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_uplink_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_uplink_role_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_uplink_role_list.go index 5e3bc48497..a6528201d8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_uplink_role_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_uplink_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_uplink_role_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_uplink_role_response.go index 394f74d45e..2c1015a2c0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_uplink_role_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_uplink_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_zone_member.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_zone_member.go index ac533a87b1..53367149e0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_zone_member.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_zone_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type FabricFcZoneMember struct { // VSAN with scope defined as Storage in the VSAN policy. VsanId *int64 `json:"VsanId,omitempty"` // WWPN that is a member of the FC zone. - Wwpn *string `json:"Wwpn,omitempty"` + Wwpn *string `json:"Wwpn,omitempty" validate:"regexp=^$|([0-9a-fA-F]{2}:){7}[0-9a-fA-F]{2}$"` AdditionalProperties map[string]interface{} } @@ -354,7 +354,7 @@ func (o *FabricFcZoneMember) UnmarshalJSON(data []byte) (err error) { // VSAN with scope defined as Storage in the VSAN policy. VsanId *int64 `json:"VsanId,omitempty"` // WWPN that is a member of the FC zone. - Wwpn *string `json:"Wwpn,omitempty"` + Wwpn *string `json:"Wwpn,omitempty" validate:"regexp=^$|([0-9a-fA-F]{2}:){7}[0-9a-fA-F]{2}$"` } varFabricFcZoneMemberWithoutEmbeddedStruct := FabricFcZoneMemberWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_zone_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_zone_policy.go index b97e2fbbbc..e99caf1713 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_zone_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_zone_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_zone_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_zone_policy_list.go index 6f7a4bbda4..15d1c31c5e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_zone_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_zone_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_zone_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_zone_policy_relationship.go index 74de4032ec..8d946c3329 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_zone_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_zone_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_zone_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_zone_policy_response.go index 08f0d05760..bf700b4573 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_zone_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fc_zone_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fcoe_uplink_pc_role.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fcoe_uplink_pc_role.go index ffdece5390..7b5a50a8af 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fcoe_uplink_pc_role.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fcoe_uplink_pc_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fcoe_uplink_pc_role_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fcoe_uplink_pc_role_list.go index 10f30503f6..77a3b1b37c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fcoe_uplink_pc_role_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fcoe_uplink_pc_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fcoe_uplink_pc_role_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fcoe_uplink_pc_role_response.go index 80841b5c3a..600afb0bea 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fcoe_uplink_pc_role_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fcoe_uplink_pc_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fcoe_uplink_role.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fcoe_uplink_role.go index 1d1f715997..a727597687 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fcoe_uplink_role.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fcoe_uplink_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fcoe_uplink_role_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fcoe_uplink_role_list.go index 673a8e8b3f..d42d436101 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fcoe_uplink_role_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fcoe_uplink_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fcoe_uplink_role_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fcoe_uplink_role_response.go index b65c7bbbd7..f950fae785 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fcoe_uplink_role_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_fcoe_uplink_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_flow_control_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_flow_control_policy.go index be51935395..942b469061 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_flow_control_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_flow_control_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_flow_control_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_flow_control_policy_list.go index 8e0e9d9621..eeddd88e4c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_flow_control_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_flow_control_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_flow_control_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_flow_control_policy_relationship.go index e58c22ad89..9d29dfbc89 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_flow_control_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_flow_control_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_flow_control_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_flow_control_policy_response.go index e3e89e98e0..539b86f369 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_flow_control_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_flow_control_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_lan_pin_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_lan_pin_group.go index e114eb6a38..63799f7a28 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_lan_pin_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_lan_pin_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_lan_pin_group_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_lan_pin_group_list.go index 1fd5808612..6197368cef 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_lan_pin_group_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_lan_pin_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_lan_pin_group_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_lan_pin_group_response.go index b0db2fc01b..54f6266f73 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_lan_pin_group_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_lan_pin_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_aggregation_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_aggregation_policy.go index 4ee2a30c36..c0d58a8305 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_aggregation_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_aggregation_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_aggregation_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_aggregation_policy_list.go index b141e69904..2aa5e1d48a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_aggregation_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_aggregation_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_aggregation_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_aggregation_policy_relationship.go index 12312c23c9..ff4e310492 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_aggregation_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_aggregation_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_aggregation_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_aggregation_policy_response.go index 201ccebce6..915e1a8a28 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_aggregation_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_aggregation_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_control_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_control_policy.go index 423b6cba61..ecdd677ef2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_control_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_control_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_control_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_control_policy_list.go index 007812c5ba..401637f94b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_control_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_control_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_control_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_control_policy_relationship.go index 5546281967..7d39cc5e2e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_control_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_control_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_control_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_control_policy_response.go index 371efb5e79..cfba749f3a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_control_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_link_control_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_lldp_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_lldp_settings.go index 28cb50b3fb..832cd39fc3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_lldp_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_lldp_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_mac_aging_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_mac_aging_settings.go index d0080d2fd5..dda2f5cb99 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_mac_aging_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_mac_aging_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_multicast_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_multicast_policy.go index 6f1404fbbc..441e8cab1a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_multicast_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_multicast_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type FabricMulticastPolicy struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Used to define the IGMP Querier IP address. - QuerierIpAddress *string `json:"QuerierIpAddress,omitempty"` + QuerierIpAddress *string `json:"QuerierIpAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Used to define the IGMP Querier IP address of the peer switch. - QuerierIpAddressPeer *string `json:"QuerierIpAddressPeer,omitempty"` + QuerierIpAddressPeer *string `json:"QuerierIpAddressPeer,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Administrative state of the IGMP Querier for this VLAN. * `Disabled` - Admin configured Disabled State. * `Enabled` - Admin configured Enabled State. QuerierState *string `json:"QuerierState,omitempty"` // Administrative state of the IGMP Snooping for this VLAN. * `Enabled` - Admin configured Enabled State. * `Disabled` - Admin configured Disabled State. @@ -440,9 +440,9 @@ func (o *FabricMulticastPolicy) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Used to define the IGMP Querier IP address. - QuerierIpAddress *string `json:"QuerierIpAddress,omitempty"` + QuerierIpAddress *string `json:"QuerierIpAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Used to define the IGMP Querier IP address of the peer switch. - QuerierIpAddressPeer *string `json:"QuerierIpAddressPeer,omitempty"` + QuerierIpAddressPeer *string `json:"QuerierIpAddressPeer,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Administrative state of the IGMP Querier for this VLAN. * `Disabled` - Admin configured Disabled State. * `Enabled` - Admin configured Enabled State. QuerierState *string `json:"QuerierState,omitempty"` // Administrative state of the IGMP Snooping for this VLAN. * `Enabled` - Admin configured Enabled State. * `Disabled` - Admin configured Disabled State. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_multicast_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_multicast_policy_list.go index bf33fb6558..7ad379be33 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_multicast_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_multicast_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_multicast_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_multicast_policy_relationship.go index 8c568df262..7c0b184575 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_multicast_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_multicast_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_multicast_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_multicast_policy_response.go index 55ce1f8904..46da8ac7df 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_multicast_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_multicast_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pc_member.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pc_member.go index f9772d4d8c..70e90cd560 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pc_member.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pc_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pc_member_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pc_member_list.go index d95b339f40..61f142de9a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pc_member_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pc_member_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pc_member_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pc_member_response.go index fb22e7e441..d2eeba1131 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pc_member_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pc_member_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pc_operation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pc_operation.go index f36b23fea6..f35e7f0acf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pc_operation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pc_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pc_operation_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pc_operation_list.go index 298cc7c086..d61120fcac 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pc_operation_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pc_operation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pc_operation_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pc_operation_response.go index d28a79b219..a5a9c6ee83 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pc_operation_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pc_operation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pin_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pin_group.go index 28053c73c4..484186dd71 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pin_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_pin_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type FabricPinGroup struct { // 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. ObjectType string `json:"ObjectType"` // Name of the Pingroup for static pinning. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` PortPolicy NullableFabricPortPolicyRelationship `json:"PortPolicy,omitempty"` AdditionalProperties map[string]interface{} } @@ -257,7 +257,7 @@ func (o *FabricPinGroup) UnmarshalJSON(data []byte) (err error) { // 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. ObjectType string `json:"ObjectType"` // Name of the Pingroup for static pinning. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` PortPolicy NullableFabricPortPolicyRelationship `json:"PortPolicy,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_base.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_base.go index 3ec29944a3..2ada9243f9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_base.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_channel_role.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_channel_role.go index 288faf50dd..32c1eded78 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_channel_role.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_channel_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_identifier.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_identifier.go index e860a03423..0360991d07 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_identifier.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_identifier.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_mode.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_mode.go index 3095c62028..68089976df 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_mode.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_mode.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_mode_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_mode_list.go index 0d3a562f06..d1a6d17d71 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_mode_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_mode_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_mode_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_mode_response.go index 460b3a4b64..cf301595de 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_mode_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_mode_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_operation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_operation.go index 22376c6643..65f29dac38 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_operation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_operation_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_operation_list.go index bebfa01cbf..cc3996d2d4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_operation_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_operation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_operation_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_operation_response.go index ed538e89bb..995ac068a0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_operation_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_operation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_policy.go index e90c76fdbb..ca69904d60 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_policy_list.go index 8c8c6d96d3..cf29de9541 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_policy_relationship.go index 61ca280426..8be5ba01ca 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_policy_response.go index 9a261c3085..9b57f0e376 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_role.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_role.go index 3050ca6a0d..f2a0a0849a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_role.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_port_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_qos_class.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_qos_class.go index 723d66e739..efc28e672c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_qos_class.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_qos_class.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_san_pin_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_san_pin_group.go index f6e6184310..fa45fe60eb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_san_pin_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_san_pin_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_san_pin_group_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_san_pin_group_list.go index ac02e4b801..1c32fd5b2f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_san_pin_group_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_san_pin_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_san_pin_group_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_san_pin_group_response.go index 20af8b0601..d1eb85da60 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_san_pin_group_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_san_pin_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_server_role.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_server_role.go index 341b3aef30..d7611d18cc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_server_role.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_server_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_server_role_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_server_role_list.go index 0eb2c7bc0e..94377958b5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_server_role_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_server_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_server_role_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_server_role_response.go index 42c3361088..8ad937cbf6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_server_role_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_server_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_dest_eth_port.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_dest_eth_port.go index 4367dad48c..2c23f178be 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_dest_eth_port.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_dest_eth_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_dest_eth_port_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_dest_eth_port_list.go index 1198903cb9..5dd04ed99c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_dest_eth_port_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_dest_eth_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_dest_eth_port_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_dest_eth_port_response.go index c56e820b09..c77786acea 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_dest_eth_port_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_dest_eth_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_session.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_session.go index b0259a8513..d157c8ccf0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_session.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_session.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_session_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_session_list.go index 0a6e28e3b0..5d106dbb69 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_session_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_session_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_session_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_session_relationship.go index 8d0b0100c7..e41e7f96a6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_session_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_session_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_session_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_session_response.go index 257006b557..833663da0c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_session_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_session_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_eth_port.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_eth_port.go index d14d44f7a7..463c56bb65 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_eth_port.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_eth_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_eth_port_channel.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_eth_port_channel.go index 383dc3eb07..e9b8039228 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_eth_port_channel.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_eth_port_channel.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_eth_port_channel_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_eth_port_channel_list.go index 81bbc1de14..015778d6dd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_eth_port_channel_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_eth_port_channel_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_eth_port_channel_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_eth_port_channel_response.go index 842abcc534..1f49196e1e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_eth_port_channel_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_eth_port_channel_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_eth_port_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_eth_port_list.go index a17584ec65..c39727f8e1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_eth_port_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_eth_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_eth_port_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_eth_port_response.go index 2517bda10d..d2d4f9aa46 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_eth_port_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_eth_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vlan.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vlan.go index 74982fbfc8..43e273b974 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vlan.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vlan.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vlan_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vlan_list.go index 0dde4a3e5c..9f9955b91a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vlan_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vlan_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vlan_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vlan_relationship.go index 756aec55e9..facc04eaff 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vlan_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vlan_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vlan_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vlan_response.go index 293efe8e9d..c36080fc7e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vlan_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vlan_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vnic_eth_if.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vnic_eth_if.go index d9218f9fd1..a6d3324181 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vnic_eth_if.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vnic_eth_if.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vnic_eth_if_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vnic_eth_if_list.go index e1753a8068..bdc8c5bc99 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vnic_eth_if_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vnic_eth_if_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vnic_eth_if_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vnic_eth_if_response.go index 17396959f9..36bc323edb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vnic_eth_if_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_span_source_vnic_eth_if_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile.go index dcf785e0f1..0b76bd8775 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type FabricSwitchClusterProfile struct { // Values indicating the switches on which the cluster profile has been deployed. 0 indicates that the profile has not been deployed on any switch, 1 indicates that the profile has been deployed on A, 2 indicates that it is deployed on B and 3 indicates that it is deployed on both. * `None` - Switch profiles not deployed on either of the fabric interconnects. * `A` - Switch profiles deployed only on fabric interconnect A. * `B` - Switch profiles deployed only on fabric interconnect B. * `AB` - Switch profiles deployed on both fabric interconnect A and B. DeployedSwitches *string `json:"DeployedSwitches,omitempty"` // The user defined label assigned to the switch profile. - UserLabel *string `json:"UserLabel,omitempty"` + UserLabel *string `json:"UserLabel,omitempty" validate:"regexp=^[ !#$%&\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}~a-zA-Z0-9]*$"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` // An array of relationships to fabricSwitchProfile resources. SwitchProfiles []FabricSwitchProfileRelationship `json:"SwitchProfiles,omitempty"` @@ -484,7 +484,7 @@ func (o *FabricSwitchClusterProfile) UnmarshalJSON(data []byte) (err error) { // Values indicating the switches on which the cluster profile has been deployed. 0 indicates that the profile has not been deployed on any switch, 1 indicates that the profile has been deployed on A, 2 indicates that it is deployed on B and 3 indicates that it is deployed on both. * `None` - Switch profiles not deployed on either of the fabric interconnects. * `A` - Switch profiles deployed only on fabric interconnect A. * `B` - Switch profiles deployed only on fabric interconnect B. * `AB` - Switch profiles deployed on both fabric interconnect A and B. DeployedSwitches *string `json:"DeployedSwitches,omitempty"` // The user defined label assigned to the switch profile. - UserLabel *string `json:"UserLabel,omitempty"` + UserLabel *string `json:"UserLabel,omitempty" validate:"regexp=^[ !#$%&\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}~a-zA-Z0-9]*$"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` // An array of relationships to fabricSwitchProfile resources. SwitchProfiles []FabricSwitchProfileRelationship `json:"SwitchProfiles,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_list.go index fbd802939d..6dd59456d9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_relationship.go index 63f578879c..639bb3697f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_response.go index 698e5448da..0169229900 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_template.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_template.go index cdcfa70979..b86eba4c22 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_template.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_template.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_template_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_template_list.go index 00cd818ab0..60cc2c7f82 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_template_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_template_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_template_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_template_relationship.go index d93ff8674d..8b33047812 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_template_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_template_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_template_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_template_response.go index f7726478a6..da06997678 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_template_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_cluster_profile_template_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_control_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_control_policy.go index 6c38b6ae6f..c0faf7431f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_control_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_control_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_control_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_control_policy_list.go index 6adb2f06d6..ea9063826e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_control_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_control_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_control_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_control_policy_response.go index 9d00b34dea..71167ec466 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_control_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_control_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile.go index 00e6760835..f1b5fa1b1a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_list.go index e69d9375bf..8802859ecc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_relationship.go index b530c813d3..f5e6b7b012 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_response.go index b832fd081d..f7f1c4c56d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_template.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_template.go index 7283c40fc3..179b95d7a1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_template.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_template.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_template_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_template_list.go index ea9c423b85..bd97741298 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_template_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_template_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_template_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_template_relationship.go index 6b3f8b9046..8b46fe844f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_template_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_template_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_template_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_template_response.go index 2a4dcc3de2..be8ac2a5f3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_template_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_switch_profile_template_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_system_qos_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_system_qos_policy.go index 09e7f19e88..b840ebff6c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_system_qos_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_system_qos_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_system_qos_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_system_qos_policy_list.go index b5e527496e..7426e05733 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_system_qos_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_system_qos_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_system_qos_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_system_qos_policy_response.go index bee3f21875..01585ebe8c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_system_qos_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_system_qos_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_transceiver_role.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_transceiver_role.go index eb5fea06b5..67f3a842fa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_transceiver_role.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_transceiver_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_udld_global_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_udld_global_settings.go index 72cd506f24..88803cd875 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_udld_global_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_udld_global_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_udld_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_udld_settings.go index 0418dcb7ab..aef3139c48 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_udld_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_udld_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_uplink_pc_role.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_uplink_pc_role.go index 1ce26e1210..f8dd60e129 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_uplink_pc_role.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_uplink_pc_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_uplink_pc_role_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_uplink_pc_role_list.go index c06ce7bd35..b5794b56e6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_uplink_pc_role_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_uplink_pc_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_uplink_pc_role_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_uplink_pc_role_response.go index 93a0b91e00..c038d90623 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_uplink_pc_role_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_uplink_pc_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_uplink_role.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_uplink_role.go index c1ef8405b1..d88e824bcc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_uplink_role.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_uplink_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_uplink_role_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_uplink_role_list.go index ac69c98e3f..1dfa4f007f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_uplink_role_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_uplink_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_uplink_role_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_uplink_role_response.go index b658f5aca3..623fe5166e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_uplink_role_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_uplink_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan.go index 876ecf2cc8..715521be73 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_inventory.go index b6f22a0978..f5b91f9ae7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_inventory_list.go index f7cb72829f..99f3a239ad 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_inventory_response.go index 1a50749500..c3001c2e46 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_list.go index e199beab06..d874fae7c4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_response.go index 7044096808..6eea2cc22d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_set.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_set.go index d0d3640682..16f4bf355e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_set.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_set.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -39,7 +39,7 @@ type FabricVlanSet struct { // The sharing type of this VLAN. * `None` - This represents a regular VLAN. * `Primary` - This represents a primary VLAN. * `Isolated` - This represents an isolated VLAN. * `Community` - This represents a community VLAN. SharingType *string `json:"SharingType,omitempty"` // Set of VLANs defined by VLAN object with identical configuration. - Vlans *string `json:"Vlans,omitempty"` + Vlans *string `json:"Vlans,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` EthNetworkPolicy NullableFabricEthNetworkPolicyRelationship `json:"EthNetworkPolicy,omitempty"` MulticastPolicy NullableFabricMulticastPolicyRelationship `json:"MulticastPolicy,omitempty"` AdditionalProperties map[string]interface{} @@ -522,7 +522,7 @@ func (o *FabricVlanSet) UnmarshalJSON(data []byte) (err error) { // The sharing type of this VLAN. * `None` - This represents a regular VLAN. * `Primary` - This represents a primary VLAN. * `Isolated` - This represents an isolated VLAN. * `Community` - This represents a community VLAN. SharingType *string `json:"SharingType,omitempty"` // Set of VLANs defined by VLAN object with identical configuration. - Vlans *string `json:"Vlans,omitempty"` + Vlans *string `json:"Vlans,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` EthNetworkPolicy NullableFabricEthNetworkPolicyRelationship `json:"EthNetworkPolicy,omitempty"` MulticastPolicy NullableFabricMulticastPolicyRelationship `json:"MulticastPolicy,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_set_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_set_list.go index b776aaee2c..829fa31690 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_set_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_set_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_set_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_set_relationship.go index b7dc11c3e4..a79d2982a5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_set_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_set_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_set_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_set_response.go index 45964bb0eb..773d5bbdb2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_set_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_set_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_settings.go index 8d9370ddcd..d1450f1bb2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vlan_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type FabricVlanSettings struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Allowed VLAN IDs of the virtual interface. A list of comma separated VLAN ids and/or VLAN id ranges. - AllowedVlans *string `json:"AllowedVlans,omitempty"` + AllowedVlans *string `json:"AllowedVlans,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // Native VLAN ID of the virtual interface or the corresponding vethernet on the peer Fabric Interconnect to which the virtual interface is connected. If the native VLAN is not a part of the allowed VLANs, it will automatically be added to the list of allowed VLANs. NativeVlan *int64 `json:"NativeVlan,omitempty"` // Enable QinQ (802.1Q-in-802.1Q) Tunneling on the vNIC. @@ -356,7 +356,7 @@ func (o *FabricVlanSettings) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Allowed VLAN IDs of the virtual interface. A list of comma separated VLAN ids and/or VLAN id ranges. - AllowedVlans *string `json:"AllowedVlans,omitempty"` + AllowedVlans *string `json:"AllowedVlans,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // Native VLAN ID of the virtual interface or the corresponding vethernet on the peer Fabric Interconnect to which the virtual interface is connected. If the native VLAN is not a part of the allowed VLANs, it will automatically be added to the list of allowed VLANs. NativeVlan *int64 `json:"NativeVlan,omitempty"` // Enable QinQ (802.1Q-in-802.1Q) Tunneling on the vNIC. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vsan.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vsan.go index f77a7106d5..59e5297703 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vsan.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vsan.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vsan_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vsan_inventory.go index f11c52522a..5ec879ee14 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vsan_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vsan_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vsan_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vsan_inventory_list.go index 7efb3c7e8e..f71fcfcd4b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vsan_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vsan_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vsan_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vsan_inventory_response.go index 336e6a6858..18ab9bc422 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vsan_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vsan_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vsan_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vsan_list.go index a314a260bb..fa5a217f0e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vsan_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vsan_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vsan_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vsan_response.go index 45cbf3feca..cb26eb2eb1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vsan_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fabric_vsan_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fault_instance.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fault_instance.go index 9923d06929..bbeebf1204 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fault_instance.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fault_instance.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fault_instance_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fault_instance_list.go index e0d34b3909..6469ad617c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fault_instance_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fault_instance_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fault_instance_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fault_instance_response.go index fa355d36e7..0f1bab67b8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fault_instance_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fault_instance_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_neighbor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_neighbor.go index f032391ac3..ac8eadfbb8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_neighbor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_neighbor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_neighbor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_neighbor_list.go index c5a5742e34..61f0d1688e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_neighbor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_neighbor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_neighbor_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_neighbor_relationship.go index 6f98e90204..3e517acb46 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_neighbor_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_neighbor_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_neighbor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_neighbor_response.go index 019f3fac4f..461270a2e7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_neighbor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_neighbor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_physical_port.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_physical_port.go index 5ded3af42f..4cc70a905a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_physical_port.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_physical_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_physical_port_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_physical_port_list.go index b90aa435e5..6129f12816 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_physical_port_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_physical_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_physical_port_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_physical_port_relationship.go index cbf4ba811f..f5229ffbd3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_physical_port_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_physical_port_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_physical_port_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_physical_port_response.go index f4266420db..39e0d5193d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_physical_port_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_physical_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_port_channel.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_port_channel.go index 5bf7078b34..f5a501aed5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_port_channel.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_port_channel.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_port_channel_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_port_channel_list.go index 257220e6b8..400c84c141 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_port_channel_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_port_channel_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_port_channel_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_port_channel_relationship.go index fd9e4adabc..4cf4f84717 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_port_channel_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_port_channel_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_port_channel_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_port_channel_response.go index 8aedc2bb09..499321d412 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_port_channel_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fc_port_channel_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_block.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_block.go index 374e7fbabc..ab6467ab17 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_block.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type FcpoolBlock struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Starting WWN identifier of the block must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF. To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the following WWN prefix; 20:00:00:25:B5:xx:xx:xx. - From *string `json:"From,omitempty"` + From *string `json:"From,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` // Ending WWN identifier of the block must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. - To *string `json:"To,omitempty"` + To *string `json:"To,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` AdditionalProperties map[string]interface{} } @@ -270,9 +270,9 @@ func (o *FcpoolBlock) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Starting WWN identifier of the block must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF. To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the following WWN prefix; 20:00:00:25:B5:xx:xx:xx. - From *string `json:"From,omitempty"` + From *string `json:"From,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` // Ending WWN identifier of the block must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. - To *string `json:"To,omitempty"` + To *string `json:"To,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` } varFcpoolBlockWithoutEmbeddedStruct := FcpoolBlockWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_fc_block.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_fc_block.go index 997623124a..951d1d7e6f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_fc_block.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_fc_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_fc_block_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_fc_block_list.go index d4757a04cb..12bc2510f2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_fc_block_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_fc_block_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_fc_block_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_fc_block_relationship.go index 95a820cd50..92f8261a57 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_fc_block_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_fc_block_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_fc_block_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_fc_block_response.go index 3f5fd7396d..e8f422f862 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_fc_block_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_fc_block_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_lease.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_lease.go index a812ee08cc..0019f344b0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_lease.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_lease.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -32,7 +32,7 @@ type FcpoolLease struct { PoolPurpose *string `json:"PoolPurpose,omitempty"` Reservation *FcpoolReservationReference `json:"Reservation,omitempty"` // WWN ID allocated for pool based allocation. - WwnId *string `json:"WwnId,omitempty"` + WwnId *string `json:"WwnId,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` AssignedToEntity NullableMoBaseMoRelationship `json:"AssignedToEntity,omitempty"` Pool NullableFcpoolPoolRelationship `json:"Pool,omitempty"` PoolMember NullableFcpoolPoolMemberRelationship `json:"PoolMember,omitempty"` @@ -501,7 +501,7 @@ func (o *FcpoolLease) UnmarshalJSON(data []byte) (err error) { PoolPurpose *string `json:"PoolPurpose,omitempty"` Reservation *FcpoolReservationReference `json:"Reservation,omitempty"` // WWN ID allocated for pool based allocation. - WwnId *string `json:"WwnId,omitempty"` + WwnId *string `json:"WwnId,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` AssignedToEntity NullableMoBaseMoRelationship `json:"AssignedToEntity,omitempty"` Pool NullableFcpoolPoolRelationship `json:"Pool,omitempty"` PoolMember NullableFcpoolPoolMemberRelationship `json:"PoolMember,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_lease_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_lease_list.go index bbcf3e8e2f..8dcd07a2a9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_lease_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_lease_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_lease_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_lease_relationship.go index d263bb419f..5032d24e9c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_lease_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_lease_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_lease_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_lease_response.go index 0dded807c8..dd5e54df7e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_lease_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_lease_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool.go index 07ee9e97d3..f35dd5993c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_list.go index ac5fd0dadb..29072499a0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_member.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_member.go index 45736cbe50..62e0a64662 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_member.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type FcpoolPoolMember struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // WWN ID of this pool member. - WwnId *string `json:"WwnId,omitempty"` + WwnId *string `json:"WwnId,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` AssignedToEntity NullableMoBaseMoRelationship `json:"AssignedToEntity,omitempty"` BlockHead NullableFcpoolFcBlockRelationship `json:"BlockHead,omitempty"` Peer NullableFcpoolLeaseRelationship `json:"Peer,omitempty"` @@ -474,7 +474,7 @@ func (o *FcpoolPoolMember) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // WWN ID of this pool member. - WwnId *string `json:"WwnId,omitempty"` + WwnId *string `json:"WwnId,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` AssignedToEntity NullableMoBaseMoRelationship `json:"AssignedToEntity,omitempty"` BlockHead NullableFcpoolFcBlockRelationship `json:"BlockHead,omitempty"` Peer NullableFcpoolLeaseRelationship `json:"Peer,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_member_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_member_list.go index f761ca58a8..ed9805a4bb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_member_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_member_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_member_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_member_relationship.go index e021d0d506..cd89110c46 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_member_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_member_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_member_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_member_response.go index 107bc8610d..fdf7f032b4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_member_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_member_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_relationship.go index 6b4d8ce04f..32e69e3bbb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_response.go index 4928dbae17..4fe2cb887e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_pool_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_reservation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_reservation.go index cdc3d9115c..f533f46e42 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_reservation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_reservation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type FcpoolReservation struct { // Purpose of this WWN ID. Purpose can be WWPN or WWNN. IdPurpose *string `json:"IdPurpose,omitempty"` // WWN ID that needs to be reserved. - Identity *string `json:"Identity,omitempty"` + Identity *string `json:"Identity,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` Block NullableFcpoolFcBlockRelationship `json:"Block,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` Pool NullableFcpoolPoolRelationship `json:"Pool,omitempty"` @@ -509,7 +509,7 @@ func (o *FcpoolReservation) UnmarshalJSON(data []byte) (err error) { // Purpose of this WWN ID. Purpose can be WWPN or WWNN. IdPurpose *string `json:"IdPurpose,omitempty"` // WWN ID that needs to be reserved. - Identity *string `json:"Identity,omitempty"` + Identity *string `json:"Identity,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` Block NullableFcpoolFcBlockRelationship `json:"Block,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` Pool NullableFcpoolPoolRelationship `json:"Pool,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_reservation_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_reservation_list.go index d6b20c11f9..2a694ae593 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_reservation_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_reservation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_reservation_reference.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_reservation_reference.go index 65bb6356d8..c8de2eb9a5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_reservation_reference.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_reservation_reference.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_reservation_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_reservation_relationship.go index fdf5309cf3..37169bbd20 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_reservation_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_reservation_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_reservation_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_reservation_response.go index 6ee8a2d0b6..ca835947cc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_reservation_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_reservation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_universe.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_universe.go index 49507e4682..83e4b0a26f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_universe.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_universe.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_universe_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_universe_list.go index dd88f801d8..d6ac740d04 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_universe_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_universe_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_universe_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_universe_relationship.go index e029b3bf83..7662d5c23a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_universe_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_universe_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_universe_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_universe_response.go index 4438d3b553..f4f18909fb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_universe_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fcpool_universe_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_feedback_feedback_data.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_feedback_feedback_data.go index ac3cc1bcea..d639e86abe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_feedback_feedback_data.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_feedback_feedback_data.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_feedback_feedback_post.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_feedback_feedback_post.go index dd7bc1d2b7..9ec066af5a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_feedback_feedback_post.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_feedback_feedback_post.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_base_distributable.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_base_distributable.go index 7882dda2ac..daa32c0510 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_base_distributable.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_base_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_base_distributable_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_base_distributable_relationship.go index 539d923d19..8b1f38b3a6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_base_distributable_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_base_distributable_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_base_impact.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_base_impact.go index d1cd63958f..4fe8316018 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_base_impact.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_base_impact.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_bios_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_bios_descriptor.go index a9b9777ce2..2d1be7d236 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_bios_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_bios_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_bios_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_bios_descriptor_list.go index ffe99c3e9a..896066961a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_bios_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_bios_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_bios_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_bios_descriptor_response.go index 4b6f19ea21..8b73990774 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_bios_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_bios_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_board_controller_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_board_controller_descriptor.go index da4d602680..ad2bf82576 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_board_controller_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_board_controller_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_board_controller_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_board_controller_descriptor_list.go index a347b25821..4458b4b5f2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_board_controller_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_board_controller_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_board_controller_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_board_controller_descriptor_response.go index bb8cbea443..19b1bf14b2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_board_controller_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_board_controller_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_chassis_upgrade.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_chassis_upgrade.go index 4cc4f85d21..fc723d89fa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_chassis_upgrade.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_chassis_upgrade.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_chassis_upgrade_impact.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_chassis_upgrade_impact.go index 53f20c7850..34759c6ca1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_chassis_upgrade_impact.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_chassis_upgrade_impact.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_chassis_upgrade_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_chassis_upgrade_list.go index ee59de6a83..4d3957ebce 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_chassis_upgrade_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_chassis_upgrade_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_chassis_upgrade_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_chassis_upgrade_response.go index 78d2a6225e..da97a55927 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_chassis_upgrade_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_chassis_upgrade_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_cifs_server.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_cifs_server.go index e1ab78f1fb..7b074ce1fc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_cifs_server.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_cifs_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_cimc_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_cimc_descriptor.go index b7abf8a46a..a1090c3e07 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_cimc_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_cimc_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_cimc_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_cimc_descriptor_list.go index ba2e296fcd..62fda7bb20 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_cimc_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_cimc_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_cimc_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_cimc_descriptor_response.go index 0ed62215dd..19a67c6179 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_cimc_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_cimc_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_component_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_component_descriptor.go index eeb4ec93f3..87322adc59 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_component_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_component_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_component_impact.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_component_impact.go index ace1b55d0b..668d328bb4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_component_impact.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_component_impact.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_component_meta.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_component_meta.go index c38b0e194f..e42612208b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_component_meta.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_component_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_dimm_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_dimm_descriptor.go index 3110e7fd72..d4d6bcfc56 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_dimm_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_dimm_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_dimm_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_dimm_descriptor_list.go index cf2d83573c..42967d7ecd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_dimm_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_dimm_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_dimm_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_dimm_descriptor_response.go index 55635680dd..a110a8a756 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_dimm_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_dimm_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_direct_download.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_direct_download.go index b075e1343e..f46677887b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_direct_download.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_direct_download.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable.go index 39056ed267..29f4948b6d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_list.go index c0fd789ba8..536c314e7b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_meta.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_meta.go index 6d5fb7f967..0ef119e6be 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_meta.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_meta_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_meta_list.go index 49030dfb82..7d55791810 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_meta_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_meta_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_meta_relationship.go index 1f48a9a74a..3d9c174e23 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_meta_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_meta_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_meta_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_meta_response.go index 86d6f8b866..607b41c6dc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_meta_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_relationship.go index 9a3ebb9c36..4c52351b89 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_response.go index 6a3bfb780b..822fa4526d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_distributable_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_drive_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_drive_descriptor.go index 58b951ae32..ff3a4236d9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_drive_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_drive_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_drive_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_drive_descriptor_list.go index b12948fcea..a277a930ee 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_drive_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_drive_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_drive_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_drive_descriptor_response.go index c45cd95226..7132c53b90 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_drive_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_drive_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_driver_distributable.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_driver_distributable.go index a0a4bf8140..40bc250f2f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_driver_distributable.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_driver_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_driver_distributable_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_driver_distributable_list.go index 2f91e9c276..8924df6e67 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_driver_distributable_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_driver_distributable_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_driver_distributable_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_driver_distributable_response.go index 3adb90203a..6105f9f6dc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_driver_distributable_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_driver_distributable_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_eula.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_eula.go index 24f0041228..648f2e55c8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_eula.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_eula.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_eula_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_eula_list.go index 1bf8252609..c88742d611 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_eula_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_eula_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_eula_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_eula_response.go index f361afe5a7..288d3585d5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_eula_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_eula_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_exclude_component_pid_list_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_exclude_component_pid_list_type.go index 0ed596202f..a87f785109 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_exclude_component_pid_list_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_exclude_component_pid_list_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_fabric_upgrade_impact.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_fabric_upgrade_impact.go index d6a0c0018c..c81eb6fbb8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_fabric_upgrade_impact.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_fabric_upgrade_impact.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_firmware_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_firmware_inventory.go index a426f4c370..3503aa3cac 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_firmware_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_firmware_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_firmware_summary.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_firmware_summary.go index e8155b9b7f..2357e6fad4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_firmware_summary.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_firmware_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_firmware_summary_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_firmware_summary_list.go index 16313e5e64..55b6e776d9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_firmware_summary_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_firmware_summary_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_firmware_summary_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_firmware_summary_response.go index 1c48cfc07e..ce7f64d77b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_firmware_summary_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_firmware_summary_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_gpu_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_gpu_descriptor.go index e2e58e9e4e..77d77e9e38 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_gpu_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_gpu_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_gpu_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_gpu_descriptor_list.go index 6fd541005f..cf20e8bd65 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_gpu_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_gpu_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_gpu_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_gpu_descriptor_response.go index 808f62505e..0032170396 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_gpu_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_gpu_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_hba_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_hba_descriptor.go index a5b918feae..d9ea70bd20 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_hba_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_hba_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_hba_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_hba_descriptor_list.go index 379633967d..673dc5ff6f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_hba_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_hba_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_hba_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_hba_descriptor_response.go index 34999b0165..ec6fb9e716 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_hba_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_hba_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_http_server.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_http_server.go index 4ac6403af8..8155ad6d19 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_http_server.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_http_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_iom_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_iom_descriptor.go index 066d4ebbd5..6916c43049 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_iom_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_iom_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_iom_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_iom_descriptor_list.go index 078398c55f..1cb88f920e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_iom_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_iom_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_iom_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_iom_descriptor_response.go index 4038593ed5..14fb4ebafa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_iom_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_iom_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_model_bundle_version.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_model_bundle_version.go index c52956aa4d..56d5a87457 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_model_bundle_version.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_model_bundle_version.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_mswitch_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_mswitch_descriptor.go index 7520c2fde3..d574e84c1a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_mswitch_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_mswitch_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_mswitch_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_mswitch_descriptor_list.go index 4ec3d6973f..55a991808e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_mswitch_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_mswitch_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_mswitch_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_mswitch_descriptor_response.go index 61b71e84ed..929121a523 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_mswitch_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_mswitch_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_network_share.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_network_share.go index e88ebcf5af..2b1b107800 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_network_share.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_network_share.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_nfs_server.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_nfs_server.go index 2064dad69d..f1bd17e857 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_nfs_server.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_nfs_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_nxos_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_nxos_descriptor.go index b430f42811..101393a0ea 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_nxos_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_nxos_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_nxos_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_nxos_descriptor_list.go index bfbea2f043..793e507181 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_nxos_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_nxos_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_nxos_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_nxos_descriptor_response.go index 1bf4efcd68..18e101a6dd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_nxos_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_nxos_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_pcie_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_pcie_descriptor.go index b1a5f6d258..3b976f4bb5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_pcie_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_pcie_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_pcie_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_pcie_descriptor_list.go index 700abe446d..e2a3427a2e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_pcie_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_pcie_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_pcie_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_pcie_descriptor_response.go index 9ee517725a..cb2e775826 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_pcie_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_pcie_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_policy.go index a5d1f9ebea..84f704b026 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_policy_list.go index 3e416194ac..9bf56ed460 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_policy_response.go index 46565b9ea9..5ceea26488 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_psu_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_psu_descriptor.go index 6d5d3a2914..6daab08fce 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_psu_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_psu_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_psu_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_psu_descriptor_list.go index 5782c9356d..be1ba2b573 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_psu_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_psu_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_psu_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_psu_descriptor_response.go index f61e4140a2..93f6a6fa0d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_psu_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_psu_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_running_firmware.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_running_firmware.go index 26380d3a36..26c25915d1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_running_firmware.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_running_firmware.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_running_firmware_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_running_firmware_list.go index 1ef1fcdb06..79c308b33a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_running_firmware_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_running_firmware_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_running_firmware_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_running_firmware_relationship.go index dc43b204db..3053b709d2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_running_firmware_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_running_firmware_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_running_firmware_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_running_firmware_response.go index 4d767b45d6..9763da4e26 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_running_firmware_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_running_firmware_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_sas_expander_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_sas_expander_descriptor.go index 5a2d7a7565..654c00bd7f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_sas_expander_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_sas_expander_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_sas_expander_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_sas_expander_descriptor_list.go index 3bc83eb3ca..be469f1bf1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_sas_expander_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_sas_expander_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_sas_expander_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_sas_expander_descriptor_response.go index 1f55b0a6a3..8bfd6bcc4d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_sas_expander_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_sas_expander_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_server_configuration_utility_distributable.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_server_configuration_utility_distributable.go index a264fa5a7f..850f54b4cb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_server_configuration_utility_distributable.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_server_configuration_utility_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_server_configuration_utility_distributable_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_server_configuration_utility_distributable_list.go index 43cdfe9433..c7b3ff7872 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_server_configuration_utility_distributable_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_server_configuration_utility_distributable_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_server_configuration_utility_distributable_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_server_configuration_utility_distributable_relationship.go index 58c983f4f1..93981f446c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_server_configuration_utility_distributable_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_server_configuration_utility_distributable_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_server_configuration_utility_distributable_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_server_configuration_utility_distributable_response.go index fa34106e84..8171a4867d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_server_configuration_utility_distributable_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_server_configuration_utility_distributable_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_server_upgrade_impact.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_server_upgrade_impact.go index 9e8f6a9323..d9ae7543e0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_server_upgrade_impact.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_server_upgrade_impact.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_storage_controller_descriptor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_storage_controller_descriptor.go index 1b2a188bcb..c694c6a1e8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_storage_controller_descriptor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_storage_controller_descriptor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_storage_controller_descriptor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_storage_controller_descriptor_list.go index 93873863b5..a61396c0a0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_storage_controller_descriptor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_storage_controller_descriptor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_storage_controller_descriptor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_storage_controller_descriptor_response.go index 7e103c8b5f..19bff52a1a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_storage_controller_descriptor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_storage_controller_descriptor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_switch_upgrade.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_switch_upgrade.go index 619eecc9d4..9bf1075b09 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_switch_upgrade.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_switch_upgrade.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_switch_upgrade_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_switch_upgrade_list.go index 6480545376..634233a7f7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_switch_upgrade_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_switch_upgrade_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_switch_upgrade_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_switch_upgrade_response.go index f10a5bfeef..7d9b5f1521 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_switch_upgrade_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_switch_upgrade_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_unsupported_version_upgrade.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_unsupported_version_upgrade.go index 3163855009..3e91985e7d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_unsupported_version_upgrade.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_unsupported_version_upgrade.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_unsupported_version_upgrade_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_unsupported_version_upgrade_list.go index fec9a0f6c9..2753c4eb7a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_unsupported_version_upgrade_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_unsupported_version_upgrade_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_unsupported_version_upgrade_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_unsupported_version_upgrade_response.go index 4a6ae949ff..eba7ecec7b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_unsupported_version_upgrade_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_unsupported_version_upgrade_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade.go index 0eecc5ff91..5628a71a3f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_base.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_base.go index 5e08f4dfd1..6d7353776c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_base.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_base_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_base_relationship.go index 769031180a..62f9e5b4c9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_base_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_base_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_impact.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_impact.go index 3d5adca77c..286963848d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_impact.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_impact.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_impact_base.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_impact_base.go index 60a9281d0e..25a4b61abf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_impact_base.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_impact_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_impact_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_impact_status.go index a14289da01..01c57c7c67 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_impact_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_impact_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_impact_status_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_impact_status_list.go index b3a17c69f4..68f4759194 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_impact_status_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_impact_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_impact_status_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_impact_status_relationship.go index c79b515768..b3d28babbf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_impact_status_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_impact_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_impact_status_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_impact_status_response.go index 66cccd5c11..f52d70b54f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_impact_status_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_impact_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_list.go index 2ba325aca7..19f4273dea 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_response.go index e112f4d110..b5e9823bc7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_status.go index 47273e3cd9..127f9e4a19 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_status_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_status_list.go index 4ffa2cf495..62d698f28c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_status_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_status_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_status_relationship.go index 23a5d24bf4..cb9adb08e9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_status_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_status_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_status_response.go index c2a6361faa..822a70cdb6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_status_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_validity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_validity.go index 74621c2968..6629971f85 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_validity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_upgrade_validity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_version_map.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_version_map.go index f3f057de98..adbe997f72 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_version_map.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_firmware_version_map.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_device.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_device.go index 5d5783a33e..6892ea73c3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_device.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_device_ha_pair.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_device_ha_pair.go index 2c1981b30a..f19cdb5445 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_device_ha_pair.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_device_ha_pair.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_device_ha_pair_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_device_ha_pair_list.go index 6dbaa8b871..2d25067445 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_device_ha_pair_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_device_ha_pair_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_device_ha_pair_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_device_ha_pair_response.go index 5eb38e9aeb..b8e6b70478 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_device_ha_pair_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_device_ha_pair_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_device_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_device_list.go index f891b6cf37..02aeb5d363 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_device_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_device_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_device_response.go index b795871a2b..ce872dd3d9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_device_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_domain.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_domain.go index c8a10b932d..1a19c4ab2c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_domain.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_domain.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_domain_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_domain_list.go index 41e675718e..33706309ab 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_domain_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_domain_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_domain_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_domain_response.go index faef663b4d..ee4c17f2d8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_domain_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_domain_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_inventory_entity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_inventory_entity.go index c2179b010f..66eaf60544 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_inventory_entity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_inventory_entity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_physical_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_physical_interface.go index 94bfc789fe..a22b8841b4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_physical_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_physical_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_physical_interface_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_physical_interface_list.go index f89f95e156..f2b7a16d04 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_physical_interface_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_physical_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_physical_interface_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_physical_interface_response.go index f134384d51..a62ea2b90f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_physical_interface_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_fmc_physical_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_catalog.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_catalog.go index 2bc00e70b1..946e5897e2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_catalog.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_catalog.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type ForecastCatalog struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The time at which the regression model needs to run for all the metrics specified in catalog. - SchedTime *string `json:"SchedTime,omitempty"` + SchedTime *string `json:"SchedTime,omitempty" validate:"regexp=^$|^[0-9]{2}:[0-9]{2}:[0-9]{2}"` // The catalog version used in forecast configuration service. Version *string `json:"Version,omitempty"` // An array of relationships to forecastDefinition resources. @@ -308,7 +308,7 @@ func (o *ForecastCatalog) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The time at which the regression model needs to run for all the metrics specified in catalog. - SchedTime *string `json:"SchedTime,omitempty"` + SchedTime *string `json:"SchedTime,omitempty" validate:"regexp=^$|^[0-9]{2}:[0-9]{2}:[0-9]{2}"` // The catalog version used in forecast configuration service. Version *string `json:"Version,omitempty"` // An array of relationships to forecastDefinition resources. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_catalog_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_catalog_list.go index 1c909552df..7304e4d99d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_catalog_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_catalog_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_catalog_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_catalog_relationship.go index 306636e7df..e2ab770141 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_catalog_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_catalog_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_catalog_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_catalog_response.go index b823eee8ea..4565635ed3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_catalog_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_catalog_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_definition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_definition.go index ecf41b9af1..852301c5b3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_definition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_definition_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_definition_list.go index 058fc2700c..8f6baffbaf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_definition_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_definition_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_definition_relationship.go index ce3da08867..a84fd02e71 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_definition_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_definition_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_definition_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_definition_response.go index da228342f4..00b142a8c9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_definition_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_instance.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_instance.go index 3d2aa91da7..af8f4bdc2c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_instance.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_instance.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_instance_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_instance_list.go index fe378c04f0..fbb89e6170 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_instance_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_instance_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_instance_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_instance_relationship.go index be9939dc10..f43df681bc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_instance_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_instance_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_instance_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_instance_response.go index ceaab93fdc..2b00d4da17 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_instance_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_instance_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_model.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_model.go index e7bec88fdd..fb3938ebb9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_model.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_forecast_model.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_card.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_card.go index 095f953ff2..2fdb44e1dd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_card.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_card.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_card_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_card_list.go index 8242a3bebf..94df337852 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_card_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_card_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_card_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_card_relationship.go index a3b582f36a..639bda19a9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_card_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_card_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_card_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_card_response.go index be3a95b599..806661eed6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_card_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_card_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_controller.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_controller.go index 2137a17313..3c5519c0a4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_controller.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_controller.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_controller_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_controller_list.go index 4b91e95fc5..3d16b9f636 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_controller_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_controller_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_controller_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_controller_relationship.go index 76730f4d5b..6dab36ae64 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_controller_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_controller_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_controller_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_controller_response.go index 1446464cb6..d3e603750a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_controller_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_graphics_controller_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_compatibility_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_compatibility_status.go index 45072b32b4..dcc6ea734e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_compatibility_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_compatibility_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_constraint.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_constraint.go index 205f325cec..34de7e80da 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_constraint.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_constraint.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_driver_image.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_driver_image.go index 5164565629..115b2244c3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_driver_image.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_driver_image.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_driver_image_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_driver_image_list.go index 10c9e82ad7..34b9d627bc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_driver_image_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_driver_image_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_driver_image_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_driver_image_response.go index fd85652c16..3926d0c142 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_driver_image_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_driver_image_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_exempted_catalog.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_exempted_catalog.go index 66aa486668..be5e80336b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_exempted_catalog.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_exempted_catalog.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_exempted_catalog_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_exempted_catalog_list.go index 72dc63dc11..88966c369f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_exempted_catalog_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_exempted_catalog_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_exempted_catalog_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_exempted_catalog_response.go index 97d1e0c93f..b802281797 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_exempted_catalog_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_exempted_catalog_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_firmware.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_firmware.go index 2ffee84a86..865000ed0b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_firmware.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_firmware.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hardware_compatibility_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hardware_compatibility_profile.go index 9199cc18b9..4081df944a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hardware_compatibility_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hardware_compatibility_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hw_catalog_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hw_catalog_info.go index b4ea64a5de..1ed3c18fd8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hw_catalog_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hw_catalog_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hw_catalog_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hw_catalog_info_list.go index 23bb45b4d4..d142d347c7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hw_catalog_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hw_catalog_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hw_catalog_info_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hw_catalog_info_relationship.go index 398852ef51..fb54786105 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hw_catalog_info_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hw_catalog_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hw_catalog_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hw_catalog_info_response.go index 6752ef0197..626a05416b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hw_catalog_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hw_catalog_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info.go index fd7315ddef..f50af61d2b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info_list.go index 4431611c27..93cb9765de 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info_relationship.go index c1d215cbef..de0e781584 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info_response.go index af4c50538d..c26c7ab1a0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_hyperflex_software_compatibility_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system.go index 8c049fb13b..197f091d23 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_list.go index be3a0e1600..7b36691705 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_relationship.go index b4f42b6001..6a876e89c6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_response.go index c26fe9a11d..5482a7f5b6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_vendor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_vendor.go index 9401e7daec..cd6cdc8f87 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_vendor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_vendor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_vendor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_vendor_list.go index dedadb9ae6..a8e36eb744 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_vendor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_vendor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_vendor_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_vendor_relationship.go index 6ceff77cee..63970fb1ba 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_vendor_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_vendor_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_vendor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_vendor_response.go index 5725261f14..8b84ebc097 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_vendor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_operating_system_vendor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_product.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_product.go index ab8f3e6139..634cfad74d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_product.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_product.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_server_hw_catalog_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_server_hw_catalog_info.go index 533b702279..1ae447565b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_server_hw_catalog_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_server_hw_catalog_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_server_hw_catalog_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_server_hw_catalog_info_list.go index b7d737f969..3e949f2d6d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_server_hw_catalog_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_server_hw_catalog_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_server_hw_catalog_info_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_server_hw_catalog_info_relationship.go index 2fcfc1724e..fabd48eb42 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_server_hw_catalog_info_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_server_hw_catalog_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_server_hw_catalog_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_server_hw_catalog_info_response.go index 79f1df7f76..68a216ec91 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_server_hw_catalog_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_server_hw_catalog_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_supported_driver_name.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_supported_driver_name.go index 9baa250eb6..145d2bbd81 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_supported_driver_name.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hcl_supported_driver_name.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_abstract_app_setting.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_abstract_app_setting.go index ad75d52ac8..7b8ccf33ed 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_abstract_app_setting.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_abstract_app_setting.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_alarm.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_alarm.go index c265103149..e2ee56dec8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_alarm.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_alarm.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_alarm_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_alarm_list.go index 1747d23122..a86d54ae78 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_alarm_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_alarm_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_alarm_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_alarm_relationship.go index 03a6d70ee9..d52476e803 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_alarm_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_alarm_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_alarm_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_alarm_response.go index 486b0df852..88f2045459 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_alarm_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_alarm_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_alarm_summary.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_alarm_summary.go index 317f1af01c..94076ec8c9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_alarm_summary.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_alarm_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_app_catalog.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_app_catalog.go index bf07ab036e..23d28e27d7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_app_catalog.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_app_catalog.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_app_catalog_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_app_catalog_list.go index 9febc4e4c0..93cf4e1f78 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_app_catalog_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_app_catalog_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_app_catalog_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_app_catalog_relationship.go index 6b94df4377..9b579c9f26 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_app_catalog_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_app_catalog_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_app_catalog_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_app_catalog_response.go index d76d91baf7..30c5213c0d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_app_catalog_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_app_catalog_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_app_setting_constraint.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_app_setting_constraint.go index be367a4039..b8cd998644 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_app_setting_constraint.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_app_setting_constraint.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_auto_support_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_auto_support_policy.go index d86ad026b2..6006205821 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_auto_support_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_auto_support_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type HyperflexAutoSupportPolicy struct { // Enable or disable Auto-Support. AdminState *bool `json:"AdminState,omitempty"` // The recipient email address for support tickets. - ServiceTicketReceipient *string `json:"ServiceTicketReceipient,omitempty"` + ServiceTicketReceipient *string "json:\"ServiceTicketReceipient,omitempty\" validate:\"regexp=^$|^[a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$\"" // An array of relationships to hyperflexClusterProfile resources. ClusterProfiles []HyperflexClusterProfileRelationship `json:"ClusterProfiles,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` @@ -361,7 +361,7 @@ func (o *HyperflexAutoSupportPolicy) UnmarshalJSON(data []byte) (err error) { // Enable or disable Auto-Support. AdminState *bool `json:"AdminState,omitempty"` // The recipient email address for support tickets. - ServiceTicketReceipient *string `json:"ServiceTicketReceipient,omitempty"` + ServiceTicketReceipient *string "json:\"ServiceTicketReceipient,omitempty\" validate:\"regexp=^$|^[a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$\"" // An array of relationships to hyperflexClusterProfile resources. ClusterProfiles []HyperflexClusterProfileRelationship `json:"ClusterProfiles,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_auto_support_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_auto_support_policy_list.go index 0749382301..f7e3dfca52 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_auto_support_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_auto_support_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_auto_support_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_auto_support_policy_relationship.go index 67d57b21e7..013464e4c9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_auto_support_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_auto_support_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_auto_support_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_auto_support_policy_response.go index 204af6ba7e..d433006256 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_auto_support_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_auto_support_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_backup_cluster.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_backup_cluster.go index f8bff2e757..0d991a1593 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_backup_cluster.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_backup_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_backup_cluster_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_backup_cluster_list.go index f075c29546..50eb6a935b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_backup_cluster_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_backup_cluster_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_backup_cluster_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_backup_cluster_relationship.go index 25fbb540b1..ea8a8dfec6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_backup_cluster_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_backup_cluster_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_backup_cluster_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_backup_cluster_response.go index 0953db0f4b..ecc21a65c1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_backup_cluster_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_backup_cluster_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_backup_policy_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_backup_policy_settings.go index 54bba529a7..060490251a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_backup_policy_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_backup_policy_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_base_cluster.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_base_cluster.go index e5104b8053..b47a3be3ea 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_base_cluster.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_base_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_base_cluster_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_base_cluster_relationship.go index 923b68e2c5..ca48545b74 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_base_cluster_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_base_cluster_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_capability.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_capability.go index 1e1e9ee7bf..2867d364dd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_capability.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_capability.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_capability_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_capability_info.go index 62ffaf2c40..506ee2ec3c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_capability_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_capability_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_capability_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_capability_info_list.go index 845f880c6d..63b967e289 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_capability_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_capability_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_capability_info_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_capability_info_relationship.go index 08f8ab7568..099a802d2e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_capability_info_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_capability_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_capability_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_capability_info_response.go index 2f112c4a4f..75966440cd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_capability_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_capability_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster.go index 53391572fd..e824b4757d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy.go index 168688e6b1..e71ab39d84 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_deployment.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_deployment.go index c3ec594126..835e4e39f8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_deployment.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_deployment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_deployment_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_deployment_list.go index 7542a085ee..99a3923b46 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_deployment_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_deployment_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_deployment_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_deployment_response.go index 3ca6f45eb4..1ac2f29120 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_deployment_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_deployment_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory.go index 614749c437..c41c30e949 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory_list.go index f1902b0d54..bc1165210a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory_relationship.go index 282e23fa98..62fa0f7223 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory_response.go index 7db91058a4..99d091805c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_list.go index 235e1bbbf6..795ed13975 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_response.go index b6c45c2e87..b7a490093d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_backup_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_health_check_execution_snapshot.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_health_check_execution_snapshot.go index a12575ae18..db7035ff98 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_health_check_execution_snapshot.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_health_check_execution_snapshot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_health_check_execution_snapshot_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_health_check_execution_snapshot_list.go index 90f3d8e4e3..ad68878ed9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_health_check_execution_snapshot_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_health_check_execution_snapshot_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_health_check_execution_snapshot_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_health_check_execution_snapshot_response.go index cd5fcbff04..51672c357c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_health_check_execution_snapshot_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_health_check_execution_snapshot_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_list.go index a619303da8..a388fa1ba7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_network_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_network_policy.go index dc7284d597..616aa99493 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_network_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_network_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_network_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_network_policy_list.go index de3959bcae..43f5089e99 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_network_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_network_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_network_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_network_policy_relationship.go index 6f46ca4399..acf81ad440 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_network_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_network_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_network_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_network_policy_response.go index 823b285bd4..730ba965b3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_network_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_network_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_profile.go index c2ae5e95df..78d82bdcb8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,35 +30,35 @@ type HyperflexClusterProfile struct { ObjectType string `json:"ObjectType"` ClusterInternalSubnet NullableCommIpV4Interface `json:"ClusterInternalSubnet,omitempty"` // The storage data IP address for the HyperFlex cluster. - DataIpAddress *string `json:"DataIpAddress,omitempty"` + DataIpAddress *string `json:"DataIpAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The node name prefix that is used to automatically generate the default hostname for each server. A dash (-) will be appended to the prefix followed by the node number to form a hostname. This default naming scheme can be manually overridden in the node configuration. The maximum length of a prefix is 60, must only contain alphanumeric characters or dash (-), and must start with an alphanumeric character. - HostNamePrefix *string `json:"HostNamePrefix,omitempty"` + HostNamePrefix *string `json:"HostNamePrefix,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-]{1,59}$"` // The hypervisor control virtual IP address for the HyperFlex compute cluster that is used for node/pod management. - HypervisorControlIpAddress *string `json:"HypervisorControlIpAddress,omitempty"` + HypervisorControlIpAddress *string `json:"HypervisorControlIpAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The hypervisor type for the HyperFlex cluster. * `ESXi` - The hypervisor running on the HyperFlex cluster is a Vmware ESXi hypervisor of any version. * `Hyper-V` - The hypervisor running on the HyperFlex cluster is Microsoft Hyper-V. * `Unknown` - The hypervisor running on the HyperFlex cluster is not known. HypervisorType *string `json:"HypervisorType,omitempty"` // The NIC based setup being set/unset determined by inventory. IsNicBased *bool `json:"IsNicBased,omitempty"` // The MAC address prefix in the form of 00:25:B5:XX. - MacAddressPrefix *string `json:"MacAddressPrefix,omitempty"` + MacAddressPrefix *string `json:"MacAddressPrefix,omitempty" validate:"regexp=^$|^00:25:B5:[0-9a-fA-F]{2}$"` // The management IP address for the HyperFlex cluster. - MgmtIpAddress *string `json:"MgmtIpAddress,omitempty"` + MgmtIpAddress *string `json:"MgmtIpAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The management platform for the HyperFlex cluster. * `FI` - The host servers used in the cluster deployment are managed by a UCS Fabric Interconnect. * `EDGE` - The host servers used in the cluster deployment are standalone severs. * `DC-No-FI` - The host servers used in the cluster deployment are standalone servers with the DC Advantage license. MgmtPlatform *string `json:"MgmtPlatform,omitempty"` // The number of copies of each data block written. Replication *int64 `json:"Replication,omitempty"` // The storage data IP address for the HyperFlex cluster. - StorageClientIpAddress *string `json:"StorageClientIpAddress,omitempty"` + StorageClientIpAddress *string `json:"StorageClientIpAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The netmask for the Storage client network IP address. StorageClientNetmask *string `json:"StorageClientNetmask,omitempty"` StorageClientVlan NullableHyperflexNamedVlan `json:"StorageClientVlan,omitempty"` // The auxiliary storage IP address for the HyperFlex cluster. For two node clusters, this is the IP address of the auxiliary ZK controller. - StorageClusterAuxiliaryIp *string `json:"StorageClusterAuxiliaryIp,omitempty"` + StorageClusterAuxiliaryIp *string `json:"StorageClusterAuxiliaryIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` StorageDataVlan NullableHyperflexNamedVlan `json:"StorageDataVlan,omitempty"` // The storage type used for the HyperFlex cluster (HyperFlex Storage or 3rd party). * `HyperFlexDp` - The type of storage is HyperFlex Data Platform. * `ThirdParty` - The type of storage is 3rd Party Storage (PureStorage, etc..). StorageType *string `json:"StorageType,omitempty"` // The WWxN prefix in the form of 20:00:00:25:B5:XX. - WwxnPrefix *string `json:"WwxnPrefix,omitempty"` + WwxnPrefix *string `json:"WwxnPrefix,omitempty" validate:"regexp=^$|^20:00:00:25:B5:[0-9a-fA-F]{2}$"` AssociatedCluster NullableHyperflexClusterRelationship `json:"AssociatedCluster,omitempty"` AutoSupport NullableHyperflexAutoSupportPolicyRelationship `json:"AutoSupport,omitempty"` ClusterNetwork NullableHyperflexClusterNetworkPolicyRelationship `json:"ClusterNetwork,omitempty"` @@ -1700,35 +1700,35 @@ func (o *HyperflexClusterProfile) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` ClusterInternalSubnet NullableCommIpV4Interface `json:"ClusterInternalSubnet,omitempty"` // The storage data IP address for the HyperFlex cluster. - DataIpAddress *string `json:"DataIpAddress,omitempty"` + DataIpAddress *string `json:"DataIpAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The node name prefix that is used to automatically generate the default hostname for each server. A dash (-) will be appended to the prefix followed by the node number to form a hostname. This default naming scheme can be manually overridden in the node configuration. The maximum length of a prefix is 60, must only contain alphanumeric characters or dash (-), and must start with an alphanumeric character. - HostNamePrefix *string `json:"HostNamePrefix,omitempty"` + HostNamePrefix *string `json:"HostNamePrefix,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-]{1,59}$"` // The hypervisor control virtual IP address for the HyperFlex compute cluster that is used for node/pod management. - HypervisorControlIpAddress *string `json:"HypervisorControlIpAddress,omitempty"` + HypervisorControlIpAddress *string `json:"HypervisorControlIpAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The hypervisor type for the HyperFlex cluster. * `ESXi` - The hypervisor running on the HyperFlex cluster is a Vmware ESXi hypervisor of any version. * `Hyper-V` - The hypervisor running on the HyperFlex cluster is Microsoft Hyper-V. * `Unknown` - The hypervisor running on the HyperFlex cluster is not known. HypervisorType *string `json:"HypervisorType,omitempty"` // The NIC based setup being set/unset determined by inventory. IsNicBased *bool `json:"IsNicBased,omitempty"` // The MAC address prefix in the form of 00:25:B5:XX. - MacAddressPrefix *string `json:"MacAddressPrefix,omitempty"` + MacAddressPrefix *string `json:"MacAddressPrefix,omitempty" validate:"regexp=^$|^00:25:B5:[0-9a-fA-F]{2}$"` // The management IP address for the HyperFlex cluster. - MgmtIpAddress *string `json:"MgmtIpAddress,omitempty"` + MgmtIpAddress *string `json:"MgmtIpAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The management platform for the HyperFlex cluster. * `FI` - The host servers used in the cluster deployment are managed by a UCS Fabric Interconnect. * `EDGE` - The host servers used in the cluster deployment are standalone severs. * `DC-No-FI` - The host servers used in the cluster deployment are standalone servers with the DC Advantage license. MgmtPlatform *string `json:"MgmtPlatform,omitempty"` // The number of copies of each data block written. Replication *int64 `json:"Replication,omitempty"` // The storage data IP address for the HyperFlex cluster. - StorageClientIpAddress *string `json:"StorageClientIpAddress,omitempty"` + StorageClientIpAddress *string `json:"StorageClientIpAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The netmask for the Storage client network IP address. StorageClientNetmask *string `json:"StorageClientNetmask,omitempty"` StorageClientVlan NullableHyperflexNamedVlan `json:"StorageClientVlan,omitempty"` // The auxiliary storage IP address for the HyperFlex cluster. For two node clusters, this is the IP address of the auxiliary ZK controller. - StorageClusterAuxiliaryIp *string `json:"StorageClusterAuxiliaryIp,omitempty"` + StorageClusterAuxiliaryIp *string `json:"StorageClusterAuxiliaryIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` StorageDataVlan NullableHyperflexNamedVlan `json:"StorageDataVlan,omitempty"` // The storage type used for the HyperFlex cluster (HyperFlex Storage or 3rd party). * `HyperFlexDp` - The type of storage is HyperFlex Data Platform. * `ThirdParty` - The type of storage is 3rd Party Storage (PureStorage, etc..). StorageType *string `json:"StorageType,omitempty"` // The WWxN prefix in the form of 20:00:00:25:B5:XX. - WwxnPrefix *string `json:"WwxnPrefix,omitempty"` + WwxnPrefix *string `json:"WwxnPrefix,omitempty" validate:"regexp=^$|^20:00:00:25:B5:[0-9a-fA-F]{2}$"` AssociatedCluster NullableHyperflexClusterRelationship `json:"AssociatedCluster,omitempty"` AutoSupport NullableHyperflexAutoSupportPolicyRelationship `json:"AutoSupport,omitempty"` ClusterNetwork NullableHyperflexClusterNetworkPolicyRelationship `json:"ClusterNetwork,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_profile_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_profile_list.go index ef96182f1d..c782562434 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_profile_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_profile_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_profile_relationship.go index 0ed8a9a376..705b7cbffb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_profile_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_profile_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_profile_response.go index 1f0b879419..5e66fb1774 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_profile_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_relationship.go index e4d014402a..6888fd5f56 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_replication_network_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_replication_network_policy.go index 5fefead046..c6d4997f0e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_replication_network_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_replication_network_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_deployment.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_deployment.go index a22e7b6313..a507831f8b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_deployment.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_deployment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_deployment_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_deployment_list.go index 39a4025b56..0095605f84 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_deployment_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_deployment_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_deployment_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_deployment_response.go index 28973c6c1c..5b15187259 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_deployment_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_deployment_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_list.go index 664ae10508..a394d27156 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_response.go index 5442cdd51d..4bcf8211fb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_replication_network_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_response.go index 3003b91339..43d1fa96d1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_storage_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_storage_policy.go index 0b7b76ed33..d63a549676 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_storage_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_storage_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_storage_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_storage_policy_list.go index 03da237714..c0558194ed 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_storage_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_storage_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_storage_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_storage_policy_relationship.go index a92bd5e3ff..15ef11945a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_storage_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_storage_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_storage_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_storage_policy_response.go index 305c637911..bd787d5b95 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_storage_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_cluster_storage_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result.go index 676253fd97..a35a82275a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_entry.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_entry.go index 61d7247762..4f1f8581ef 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_entry.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_entry_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_entry_list.go index d4d28947c3..bda2b39de4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_entry_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_entry_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_entry_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_entry_relationship.go index cdb751f3eb..208e8eb032 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_entry_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_entry_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_entry_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_entry_response.go index 3d8f3dceaf..05bceec73f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_entry_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_entry_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_list.go index e51dccd7b2..17b0054f1e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_relationship.go index b9b1030d9f..41a4151ce0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_response.go index 196d4529b8..fb9b7c5346 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_config_result_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_data_protection_peer.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_data_protection_peer.go index f9734112e9..619c81753c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_data_protection_peer.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_data_protection_peer.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_data_protection_peer_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_data_protection_peer_list.go index a9931af961..d948ce4864 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_data_protection_peer_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_data_protection_peer_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_data_protection_peer_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_data_protection_peer_relationship.go index 9c886b1c3a..19700b30d4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_data_protection_peer_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_data_protection_peer_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_data_protection_peer_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_data_protection_peer_response.go index 983b6c313d..46293555a7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_data_protection_peer_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_data_protection_peer_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_datastore_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_datastore_info.go index 592d72d12c..0c06d3a6db 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_datastore_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_datastore_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_datastore_statistic.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_datastore_statistic.go index 36fd85eb4e..43d743382d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_datastore_statistic.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_datastore_statistic.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_datastore_statistic_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_datastore_statistic_list.go index 5ec34dc6ef..0d2335a7d9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_datastore_statistic_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_datastore_statistic_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_datastore_statistic_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_datastore_statistic_relationship.go index bc85bcc887..e26c450ee9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_datastore_statistic_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_datastore_statistic_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_datastore_statistic_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_datastore_statistic_response.go index 369a2896ed..b7f5da023a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_datastore_statistic_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_datastore_statistic_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_device_package_download_state.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_device_package_download_state.go index 237bb543f3..fa3641028c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_device_package_download_state.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_device_package_download_state.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_device_package_download_state_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_device_package_download_state_list.go index e3998c9fda..bc9ccf1692 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_device_package_download_state_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_device_package_download_state_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_device_package_download_state_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_device_package_download_state_response.go index 9bfa4f5d2c..d1a3a7983e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_device_package_download_state_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_device_package_download_state_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_drive.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_drive.go index 68ff67a713..ac687e24fc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_drive.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_drive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_drive_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_drive_list.go index c0a1f1df53..455bef61d8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_drive_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_drive_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_drive_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_drive_relationship.go index 78ea4e0d58..f3f0e3f8ed 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_drive_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_drive_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_drive_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_drive_response.go index 325bb516ba..302f567e98 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_drive_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_drive_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_encryption.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_encryption.go index 738137585e..840add55dd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_encryption.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_encryption.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_encryption_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_encryption_list.go index acba87e4b5..b781208cfd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_encryption_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_encryption_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_encryption_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_encryption_relationship.go index e224321ad5..95a95ba677 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_encryption_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_encryption_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_encryption_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_encryption_response.go index 20d5237e9c..533dfb3bf7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_encryption_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_encryption_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_entity_reference.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_entity_reference.go index 55bb66b63e..0d2068d611 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_entity_reference.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_entity_reference.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_error_stack.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_error_stack.go index d5c2d74a13..8a7aaf8f3b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_error_stack.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_error_stack.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_fc_storage_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_fc_storage_policy.go index 56553dce89..041394162b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_fc_storage_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_fc_storage_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_fc_storage_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_fc_storage_policy_list.go index d927690b5c..ce1d9f7ea5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_fc_storage_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_fc_storage_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_fc_storage_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_fc_storage_policy_relationship.go index b788ce5dd2..7fb282598d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_fc_storage_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_fc_storage_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_fc_storage_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_fc_storage_policy_response.go index 96ecc0a7cd..1430bc2184 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_fc_storage_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_fc_storage_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy.go index 4c08047950..4737691203 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy_list.go index bcf7b29cd2..e3efd42b36 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy_relationship.go index 7a4d184eda..f395914160 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy_response.go index 0b53345e1e..00127fa77c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ext_iscsi_storage_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_entry.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_entry.go index fd6babca49..27c96cb644 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_entry.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_external.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_external.go index c87818e31f..a4f3334aef 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_external.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_external.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_external_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_external_list.go index 189a4b0bc8..8c963424f6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_external_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_external_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_external_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_external_relationship.go index 017aff1801..deceece5dd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_external_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_external_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_external_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_external_response.go index 2dce456994..ae76992349 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_external_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_external_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_internal.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_internal.go index 670866670a..29f490a2be 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_internal.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_internal.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_internal_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_internal_list.go index e0555e7355..770cf2327e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_internal_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_internal_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_internal_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_internal_relationship.go index b951ed0682..601be1be63 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_internal_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_internal_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_internal_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_internal_response.go index 25d138d7e6..369e05f9d4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_internal_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_feature_limit_internal_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_file_path.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_file_path.go index c170b813d8..492734658a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_file_path.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_file_path.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health.go index d4efc4439f..375919c42c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_definition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_definition.go index 5c28a059a1..025a4d2a4a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_definition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_definition_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_definition_list.go index 8c2cf21cf2..3c2c6cb27d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_definition_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_definition_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_definition_relationship.go index a1716f3d6e..58dd50d819 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_definition_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_definition_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_definition_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_definition_response.go index 9ef3989266..6f0337f09c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_definition_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_execution.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_execution.go index a121ac8cc6..6db9cc76ff 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_execution.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_execution.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_execution_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_execution_list.go index 806cb5e921..f7e78fbc56 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_execution_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_execution_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_execution_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_execution_response.go index f3b34d7d52..fb87fb4ad8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_execution_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_execution_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_execution_snapshot.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_execution_snapshot.go index 556a297635..5e03e3073a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_execution_snapshot.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_execution_snapshot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_execution_snapshot_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_execution_snapshot_list.go index 04bff75132..b5c0a14371 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_execution_snapshot_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_execution_snapshot_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_execution_snapshot_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_execution_snapshot_response.go index 3ea2e0ec88..f66bb8d2ff 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_execution_snapshot_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_execution_snapshot_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_node_level_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_node_level_info.go index 9d79ac953c..6c34cf2a86 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_node_level_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_node_level_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_package_checksum.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_package_checksum.go index 51fefdcc92..5b2100ce65 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_package_checksum.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_package_checksum.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_package_checksum_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_package_checksum_list.go index c2da25216a..87699088e3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_package_checksum_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_package_checksum_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_package_checksum_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_package_checksum_response.go index 7a4411856c..5671a7b87f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_package_checksum_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_package_checksum_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_schedule_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_schedule_policy.go index 6cca5c4c06..ac358ea8e4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_schedule_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_schedule_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_schedule_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_schedule_policy_list.go index e2421724d6..4786ed0f5e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_schedule_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_schedule_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_schedule_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_schedule_policy_response.go index 37216e814c..4b20464f67 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_schedule_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_schedule_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_script_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_script_info.go index 6a41f5905f..2c7afd031e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_script_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_check_script_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_list.go index 67fbf75449..e4e0169f6c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_relationship.go index eac280673e..69c553e0a6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_response.go index d8f205f74e..4f0c4173d5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_health_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hw_catalog.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hw_catalog.go index 835d945fca..1556d607ca 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hw_catalog.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hw_catalog.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hw_catalog_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hw_catalog_list.go index 081c96070b..2ae97ff990 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hw_catalog_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hw_catalog_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hw_catalog_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hw_catalog_response.go index a06616c464..093af96cbd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hw_catalog_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hw_catalog_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_host_mount_status_dt.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_host_mount_status_dt.go index 9101fc6bf3..065edd8452 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_host_mount_status_dt.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_host_mount_status_dt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_license_authorization_details_dt.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_license_authorization_details_dt.go index 74236f7b36..b98d5421c3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_license_authorization_details_dt.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_license_authorization_details_dt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_link_dt.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_link_dt.go index b30b0532df..90f8adf8dd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_link_dt.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_link_dt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_network_address_dt.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_network_address_dt.go index 502e2bf432..1865902cc4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_network_address_dt.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_network_address_dt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_platform_datastore_config_dt.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_platform_datastore_config_dt.go index f20996ed36..b5e4718c5a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_platform_datastore_config_dt.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_platform_datastore_config_dt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_registration_details_dt.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_registration_details_dt.go index 9870e46f8d..1e4afca92c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_registration_details_dt.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_registration_details_dt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_resiliency_info_dt.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_resiliency_info_dt.go index ed4d5db0ed..da1aeb8c44 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_resiliency_info_dt.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_resiliency_info_dt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_site_dt.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_site_dt.go index 1111569e66..0229bc9310 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_site_dt.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_site_dt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_uu_id_dt.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_uu_id_dt.go index cb0b02dc88..6cdaa6592e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_uu_id_dt.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_uu_id_dt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_zone_info_dt.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_zone_info_dt.go index c71eae947b..b5590d2cc1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_zone_info_dt.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_zone_info_dt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_zone_resiliency_info_dt.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_zone_resiliency_info_dt.go index 64f7b63b16..982f3be0fa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_zone_resiliency_info_dt.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hx_zone_resiliency_info_dt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hxdp_version.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hxdp_version.go index 4a904d200d..aa8ec93abf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hxdp_version.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hxdp_version.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hxdp_version_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hxdp_version_list.go index e910196572..cf807e4c38 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hxdp_version_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hxdp_version_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hxdp_version_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hxdp_version_relationship.go index 4fa9da9a3b..c753f44b69 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hxdp_version_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hxdp_version_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hxdp_version_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hxdp_version_response.go index c7983f586d..0bd3629de1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hxdp_version_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hxdp_version_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_host.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_host.go index 814a0de0ea..3e544700b5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_host.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_host.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_host_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_host_list.go index 2b9c20f447..b1a6bdf61c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_host_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_host_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_host_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_host_relationship.go index 281bf9a563..605b764251 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_host_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_host_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_host_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_host_response.go index 8b953f24b3..bc8df65a49 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_host_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_host_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_virtual_machine.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_virtual_machine.go index 092ef82cb0..f3d99c1c99 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_virtual_machine.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_virtual_machine.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_virtual_machine_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_virtual_machine_list.go index 3972d0afb6..7a5be8b131 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_virtual_machine_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_virtual_machine_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_virtual_machine_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_virtual_machine_response.go index e44ab6ba56..d16930d4ff 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_virtual_machine_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_hypervisor_virtual_machine_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_initiator_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_initiator_group.go index 9a448323e8..4848d9f675 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_initiator_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_initiator_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_initiator_group_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_initiator_group_list.go index a120627222..462347e343 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_initiator_group_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_initiator_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_initiator_group_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_initiator_group_relationship.go index 94282467ec..ea1b5740ef 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_initiator_group_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_initiator_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_initiator_group_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_initiator_group_response.go index c54f564551..381d3ba7f6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_initiator_group_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_initiator_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ip_addr_range.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ip_addr_range.go index 3979118c04..141d8bc6b2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ip_addr_range.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ip_addr_range.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,15 +30,15 @@ type HyperflexIpAddrRange struct { ObjectType string `json:"ObjectType"` // The end IPv4 address of the range. // Deprecated - EndAddr *string `json:"EndAddr,omitempty"` + EndAddr *string `json:"EndAddr,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The default gateway for the start and end IPv4 addresses. - Gateway *string `json:"Gateway,omitempty"` + Gateway *string `json:"Gateway,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` IpAddrBlocks []CommIpV4AddressBlock `json:"IpAddrBlocks,omitempty"` // The netmask specified in dot decimal notation. The start address, end address, and gateway must all be within the network specified by this netmask. - Netmask *string `json:"Netmask,omitempty"` + Netmask *string `json:"Netmask,omitempty" validate:"regexp=^$|^(((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}))$"` // The start IPv4 address of the range. // Deprecated - StartAddr *string `json:"StartAddr,omitempty"` + StartAddr *string `json:"StartAddr,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` AdditionalProperties map[string]interface{} } @@ -390,15 +390,15 @@ func (o *HyperflexIpAddrRange) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` // The end IPv4 address of the range. // Deprecated - EndAddr *string `json:"EndAddr,omitempty"` + EndAddr *string `json:"EndAddr,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The default gateway for the start and end IPv4 addresses. - Gateway *string `json:"Gateway,omitempty"` + Gateway *string `json:"Gateway,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` IpAddrBlocks []CommIpV4AddressBlock `json:"IpAddrBlocks,omitempty"` // The netmask specified in dot decimal notation. The start address, end address, and gateway must all be within the network specified by this netmask. - Netmask *string `json:"Netmask,omitempty"` + Netmask *string `json:"Netmask,omitempty" validate:"regexp=^$|^(((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}))$"` // The start IPv4 address of the range. // Deprecated - StartAddr *string `json:"StartAddr,omitempty"` + StartAddr *string `json:"StartAddr,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` } varHyperflexIpAddrRangeWithoutEmbeddedStruct := HyperflexIpAddrRangeWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_iscsi_network.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_iscsi_network.go index 6546e80cab..9b67da6042 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_iscsi_network.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_iscsi_network.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_iscsi_network_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_iscsi_network_list.go index d54f6de775..a545c19eb8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_iscsi_network_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_iscsi_network_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_iscsi_network_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_iscsi_network_response.go index c2e32349a9..c382ad82ae 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_iscsi_network_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_iscsi_network_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_key_encryption_key.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_key_encryption_key.go index 805881566f..8fc941110d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_key_encryption_key.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_key_encryption_key.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_key_encryption_key_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_key_encryption_key_list.go index 9480ee7d53..490712b694 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_key_encryption_key_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_key_encryption_key_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_key_encryption_key_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_key_encryption_key_response.go index e5b7cd78a5..8c42e66ce3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_key_encryption_key_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_key_encryption_key_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_license.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_license.go index cbe0ef749b..50388a5f03 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_license.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_license.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_license_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_license_list.go index 41386d8101..6f6d46feda 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_license_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_license_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_license_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_license_relationship.go index cb95a11892..e97f9bcd5d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_license_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_license_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_license_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_license_response.go index e2fa77c972..61797bcf23 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_license_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_license_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_local_credential_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_local_credential_policy.go index 0b49a72a84..a19c62632f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_local_credential_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_local_credential_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,11 +31,11 @@ type HyperflexLocalCredentialPolicy struct { // Indicates if Hypervisor password is the factory set default password. For HyperFlex Data Platform versions 3.0 or higher, enable this if the default password was not changed on the Hypervisor. It is required to supply a new custom Hypervisor password that will be applied to the Hypervisor during deployment. For HyperFlex Data Platform versions prior to 3.0 release, this setting has no effect and the default password will be used for initial install. The Hypervisor password should be changed after deployment. FactoryHypervisorPassword *bool `json:"FactoryHypervisorPassword,omitempty"` // HyperFlex storage controller VM password must contain a minimum of 10 characters, with at least 1 lowercase, 1 uppercase, 1 numeric, and 1 of these -_@#$%^&*! special characters. - HxdpRootPwd *string `json:"HxdpRootPwd,omitempty"` + HxdpRootPwd *string `json:"HxdpRootPwd,omitempty" validate:"regexp=^[a-zA-Z0-9!@#$%^&*_-]{10,}$"` // Hypervisor administrator username must contain only alphanumeric characters. - HypervisorAdmin *string `json:"HypervisorAdmin,omitempty"` + HypervisorAdmin *string `json:"HypervisorAdmin,omitempty" validate:"regexp=^[a-zA-Z0-9]{1,}$"` // The Hypervisor root password. For HyperFlex Data Platform 3.0 or later, if the factory default password was not manually changed, you must set a new custom password. If the password was manually changed, you must not enable the factory default password property and provide the current hypervisor password. Note - All HyperFlex nodes require the same hypervisor password for installation. For HyperFlex Data Platform prior to 3.0, use the default password \"Cisco123\" for newly manufactured HyperFlex servers. A custom password should only be entered if hypervisor credentials were manually changed prior to deployment. - HypervisorAdminPwd *string `json:"HypervisorAdminPwd,omitempty"` + HypervisorAdminPwd *string `json:"HypervisorAdminPwd,omitempty" validate:"regexp=^.{7,40}$"` // Indicates whether the value of the 'deploymentPrivateKey' property has been set. IsDeploymentPrivateKeySet *bool `json:"IsDeploymentPrivateKeySet,omitempty"` // Indicates whether the value of the 'hxdpRootPwd' property has been set. @@ -546,11 +546,11 @@ func (o *HyperflexLocalCredentialPolicy) UnmarshalJSON(data []byte) (err error) // Indicates if Hypervisor password is the factory set default password. For HyperFlex Data Platform versions 3.0 or higher, enable this if the default password was not changed on the Hypervisor. It is required to supply a new custom Hypervisor password that will be applied to the Hypervisor during deployment. For HyperFlex Data Platform versions prior to 3.0 release, this setting has no effect and the default password will be used for initial install. The Hypervisor password should be changed after deployment. FactoryHypervisorPassword *bool `json:"FactoryHypervisorPassword,omitempty"` // HyperFlex storage controller VM password must contain a minimum of 10 characters, with at least 1 lowercase, 1 uppercase, 1 numeric, and 1 of these -_@#$%^&*! special characters. - HxdpRootPwd *string `json:"HxdpRootPwd,omitempty"` + HxdpRootPwd *string `json:"HxdpRootPwd,omitempty" validate:"regexp=^[a-zA-Z0-9!@#$%^&*_-]{10,}$"` // Hypervisor administrator username must contain only alphanumeric characters. - HypervisorAdmin *string `json:"HypervisorAdmin,omitempty"` + HypervisorAdmin *string `json:"HypervisorAdmin,omitempty" validate:"regexp=^[a-zA-Z0-9]{1,}$"` // The Hypervisor root password. For HyperFlex Data Platform 3.0 or later, if the factory default password was not manually changed, you must set a new custom password. If the password was manually changed, you must not enable the factory default password property and provide the current hypervisor password. Note - All HyperFlex nodes require the same hypervisor password for installation. For HyperFlex Data Platform prior to 3.0, use the default password \"Cisco123\" for newly manufactured HyperFlex servers. A custom password should only be entered if hypervisor credentials were manually changed prior to deployment. - HypervisorAdminPwd *string `json:"HypervisorAdminPwd,omitempty"` + HypervisorAdminPwd *string `json:"HypervisorAdminPwd,omitempty" validate:"regexp=^.{7,40}$"` // Indicates whether the value of the 'deploymentPrivateKey' property has been set. IsDeploymentPrivateKeySet *bool `json:"IsDeploymentPrivateKeySet,omitempty"` // Indicates whether the value of the 'hxdpRootPwd' property has been set. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_local_credential_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_local_credential_policy_list.go index 62f5efe347..22c539e041 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_local_credential_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_local_credential_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_local_credential_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_local_credential_policy_relationship.go index 72717d1e44..62329c6dae 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_local_credential_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_local_credential_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_local_credential_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_local_credential_policy_response.go index 84ccbe51bf..e352e5c787 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_local_credential_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_local_credential_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_logical_availability_zone.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_logical_availability_zone.go index 926e71f7a7..680cff4061 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_logical_availability_zone.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_logical_availability_zone.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_lun.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_lun.go index a4f1a988a8..98471067aa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_lun.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_lun.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_lun_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_lun_list.go index ec02acee3e..1ffda85334 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_lun_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_lun_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_lun_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_lun_relationship.go index 0e6f0abf03..29584247c4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_lun_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_lun_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_lun_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_lun_response.go index 62f521f9f0..6501a99d67 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_lun_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_lun_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_mac_addr_prefix_range.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_mac_addr_prefix_range.go index c509fe4e98..5b32eec580 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_mac_addr_prefix_range.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_mac_addr_prefix_range.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type HyperflexMacAddrPrefixRange struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The end MAC address prefix of a MAC address prefix range in the form of 00:25:B5:XX. - EndAddr *string `json:"EndAddr,omitempty"` + EndAddr *string `json:"EndAddr,omitempty" validate:"regexp=^$|^00:25:B5:[0-9a-fA-F]{2}$"` // The start MAC address prefix of a MAC address prefix range in the form of 00:25:B5:XX. - StartAddr *string `json:"StartAddr,omitempty"` + StartAddr *string `json:"StartAddr,omitempty" validate:"regexp=^$|^00:25:B5:[0-9a-fA-F]{2}$"` AdditionalProperties map[string]interface{} } @@ -270,9 +270,9 @@ func (o *HyperflexMacAddrPrefixRange) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The end MAC address prefix of a MAC address prefix range in the form of 00:25:B5:XX. - EndAddr *string `json:"EndAddr,omitempty"` + EndAddr *string `json:"EndAddr,omitempty" validate:"regexp=^$|^00:25:B5:[0-9a-fA-F]{2}$"` // The start MAC address prefix of a MAC address prefix range in the form of 00:25:B5:XX. - StartAddr *string `json:"StartAddr,omitempty"` + StartAddr *string `json:"StartAddr,omitempty" validate:"regexp=^$|^00:25:B5:[0-9a-fA-F]{2}$"` } varHyperflexMacAddrPrefixRangeWithoutEmbeddedStruct := HyperflexMacAddrPrefixRangeWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_map_cluster_id_to_protection_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_map_cluster_id_to_protection_info.go index 9e296131c4..77f4d897f8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_map_cluster_id_to_protection_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_map_cluster_id_to_protection_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_map_cluster_id_to_st_snapshot_point.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_map_cluster_id_to_st_snapshot_point.go index 41ee44111f..c80227ab29 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_map_cluster_id_to_st_snapshot_point.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_map_cluster_id_to_st_snapshot_point.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_map_uuid_to_tracked_disk.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_map_uuid_to_tracked_disk.go index 34266a4ccd..f494a7f2b1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_map_uuid_to_tracked_disk.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_map_uuid_to_tracked_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_named_vlan.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_named_vlan.go index c7b9e8c406..6a97a8eea6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_named_vlan.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_named_vlan.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type HyperflexNamedVlan struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The name of the VLAN. The name can be from 1 to 32 characters long and can contain a combination of alphanumeric characters, underscores, and hyphens. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^$|^[a-zA-Z0-9-_.]{1,32}$"` // The ID of the named VLAN. An ID of 0 means the traffic is untagged. The ID can be any number between 0 and 4095, inclusive. VlanId *int64 `json:"VlanId,omitempty"` AdditionalProperties map[string]interface{} @@ -270,7 +270,7 @@ func (o *HyperflexNamedVlan) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The name of the VLAN. The name can be from 1 to 32 characters long and can contain a combination of alphanumeric characters, underscores, and hyphens. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^$|^[a-zA-Z0-9-_.]{1,32}$"` // The ID of the named VLAN. An ID of 0 means the traffic is untagged. The ID can be any number between 0 and 4095, inclusive. VlanId *int64 `json:"VlanId,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_named_vsan.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_named_vsan.go index cbfe2637fd..a95070d881 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_named_vsan.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_named_vsan.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type HyperflexNamedVsan struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The name of the VSAN. The name can be from 1 to 32 characters long and can contain a combination of alphanumeric characters, underscores, and hyphens. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^$|^[a-zA-Z0-9-_.]{1,32}$"` // The ID of the named VSAN. The ID can be any number between 1 and 4093, inclusive. VsanId *int64 `json:"VsanId,omitempty"` AdditionalProperties map[string]interface{} @@ -270,7 +270,7 @@ func (o *HyperflexNamedVsan) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The name of the VSAN. The name can be from 1 to 32 characters long and can contain a combination of alphanumeric characters, underscores, and hyphens. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^$|^[a-zA-Z0-9-_.]{1,32}$"` // The ID of the named VSAN. The ID can be any number between 1 and 4093, inclusive. VsanId *int64 `json:"VsanId,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_network_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_network_configuration.go index a6ad443215..95f4b1241e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_network_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_network_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type HyperflexNetworkConfiguration struct { // The data IP of the HyperFlex cluster. DataIpAddress *string `json:"DataIpAddress,omitempty"` // The data subnet mask of the HyperFlex cluster. - DataNetmask *string `json:"DataNetmask,omitempty"` + DataNetmask *string `json:"DataNetmask,omitempty" validate:"regexp=^$|^(((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}))$"` // The data VLAN of the HyperFlex cluster. DataVlan *int64 `json:"DataVlan,omitempty"` // The DNS domain suffix configured for the HyperFlex Cluster. @@ -47,7 +47,7 @@ type HyperflexNetworkConfiguration struct { // The management IP or the hostname of the HyperFlex cluster. MgmtIpAddress *string `json:"MgmtIpAddress,omitempty"` // The management subnet mask of the HyperFlex cluster. - MgmtNetmask *string `json:"MgmtNetmask,omitempty"` + MgmtNetmask *string `json:"MgmtNetmask,omitempty" validate:"regexp=^$|^(((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}))$"` // The management VLAN ID of the HyperFlex cluster. MgmtVlan *int64 `json:"MgmtVlan,omitempty"` // The timezone configured on the HyperFlex Cluster. @@ -681,7 +681,7 @@ func (o *HyperflexNetworkConfiguration) UnmarshalJSON(data []byte) (err error) { // The data IP of the HyperFlex cluster. DataIpAddress *string `json:"DataIpAddress,omitempty"` // The data subnet mask of the HyperFlex cluster. - DataNetmask *string `json:"DataNetmask,omitempty"` + DataNetmask *string `json:"DataNetmask,omitempty" validate:"regexp=^$|^(((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}))$"` // The data VLAN of the HyperFlex cluster. DataVlan *int64 `json:"DataVlan,omitempty"` // The DNS domain suffix configured for the HyperFlex Cluster. @@ -695,7 +695,7 @@ func (o *HyperflexNetworkConfiguration) UnmarshalJSON(data []byte) (err error) { // The management IP or the hostname of the HyperFlex cluster. MgmtIpAddress *string `json:"MgmtIpAddress,omitempty"` // The management subnet mask of the HyperFlex cluster. - MgmtNetmask *string `json:"MgmtNetmask,omitempty"` + MgmtNetmask *string `json:"MgmtNetmask,omitempty" validate:"regexp=^$|^(((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}))$"` // The management VLAN ID of the HyperFlex cluster. MgmtVlan *int64 `json:"MgmtVlan,omitempty"` // The timezone configured on the HyperFlex Cluster. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node.go index 6c68830f95..3b4016f29a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_config_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_config_policy.go index 7eb6392482..e880ba01c0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_config_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_config_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -34,7 +34,7 @@ type HyperflexNodeConfigPolicy struct { MgmtIpRange NullableHyperflexIpAddrRange `json:"MgmtIpRange,omitempty"` // The node name prefix that is used to automatically generate the default hostname for each server. A dash (-) will be appended to the prefix followed by the node number to form a hostname. This default naming scheme can be manually overridden in the node configuration. The maximum length of a prefix is 60, must only contain alphanumeric characters or dash (-), and must start with an alphanumeric character. // Deprecated - NodeNamePrefix *string `json:"NodeNamePrefix,omitempty"` + NodeNamePrefix *string `json:"NodeNamePrefix,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-]{1,59}$"` // An array of relationships to hyperflexClusterProfile resources. ClusterProfiles []HyperflexClusterProfileRelationship `json:"ClusterProfiles,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` @@ -515,7 +515,7 @@ func (o *HyperflexNodeConfigPolicy) UnmarshalJSON(data []byte) (err error) { MgmtIpRange NullableHyperflexIpAddrRange `json:"MgmtIpRange,omitempty"` // The node name prefix that is used to automatically generate the default hostname for each server. A dash (-) will be appended to the prefix followed by the node number to form a hostname. This default naming scheme can be manually overridden in the node configuration. The maximum length of a prefix is 60, must only contain alphanumeric characters or dash (-), and must start with an alphanumeric character. // Deprecated - NodeNamePrefix *string `json:"NodeNamePrefix,omitempty"` + NodeNamePrefix *string `json:"NodeNamePrefix,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-]{1,59}$"` // An array of relationships to hyperflexClusterProfile resources. ClusterProfiles []HyperflexClusterProfileRelationship `json:"ClusterProfiles,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_config_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_config_policy_list.go index 3a511b8741..e5c15cadaa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_config_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_config_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_config_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_config_policy_relationship.go index de63ba2cd4..bf774786b1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_config_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_config_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_config_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_config_policy_response.go index 2c6228dc9a..622f6975bb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_config_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_config_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_list.go index e6d7747ab0..1abfb47b92 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_profile.go index 32549689aa..f842a34b76 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,17 +29,17 @@ type HyperflexNodeProfile struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IP address for storage data network (Controller VM interface). - HxdpDataIp *string `json:"HxdpDataIp,omitempty"` + HxdpDataIp *string `json:"HxdpDataIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP address for HyperFlex management network. - HxdpMgmtIp *string `json:"HxdpMgmtIp,omitempty"` + HxdpMgmtIp *string `json:"HxdpMgmtIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP address for storage client network (Controller VM interface). - HxdpStorageClientIp *string `json:"HxdpStorageClientIp,omitempty"` + HxdpStorageClientIp *string `json:"HxdpStorageClientIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP address for hypervisor control such as VM migration or pod management. - HypervisorControlIp *string `json:"HypervisorControlIp,omitempty"` + HypervisorControlIp *string `json:"HypervisorControlIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP address for storage data network (Hypervisor interface). - HypervisorDataIp *string `json:"HypervisorDataIp,omitempty"` + HypervisorDataIp *string `json:"HypervisorDataIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP address for Hypervisor management network. - HypervisorMgmtIp *string `json:"HypervisorMgmtIp,omitempty"` + HypervisorMgmtIp *string `json:"HypervisorMgmtIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The role that this node performs in the HyperFlex cluster. * `Unknown` - The node role is not available. * `Storage` - The node persists data and contributes to the storage capacity of a cluster. * `Compute` - The node contributes to the compute capacity of a cluster. NodeRole *string `json:"NodeRole,omitempty"` AssignedServer NullableComputePhysicalRelationship `json:"AssignedServer,omitempty"` @@ -604,17 +604,17 @@ func (o *HyperflexNodeProfile) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IP address for storage data network (Controller VM interface). - HxdpDataIp *string `json:"HxdpDataIp,omitempty"` + HxdpDataIp *string `json:"HxdpDataIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP address for HyperFlex management network. - HxdpMgmtIp *string `json:"HxdpMgmtIp,omitempty"` + HxdpMgmtIp *string `json:"HxdpMgmtIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP address for storage client network (Controller VM interface). - HxdpStorageClientIp *string `json:"HxdpStorageClientIp,omitempty"` + HxdpStorageClientIp *string `json:"HxdpStorageClientIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP address for hypervisor control such as VM migration or pod management. - HypervisorControlIp *string `json:"HypervisorControlIp,omitempty"` + HypervisorControlIp *string `json:"HypervisorControlIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP address for storage data network (Hypervisor interface). - HypervisorDataIp *string `json:"HypervisorDataIp,omitempty"` + HypervisorDataIp *string `json:"HypervisorDataIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP address for Hypervisor management network. - HypervisorMgmtIp *string `json:"HypervisorMgmtIp,omitempty"` + HypervisorMgmtIp *string `json:"HypervisorMgmtIp,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The role that this node performs in the HyperFlex cluster. * `Unknown` - The node role is not available. * `Storage` - The node persists data and contributes to the storage capacity of a cluster. * `Compute` - The node contributes to the compute capacity of a cluster. NodeRole *string `json:"NodeRole,omitempty"` AssignedServer NullableComputePhysicalRelationship `json:"AssignedServer,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_profile_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_profile_list.go index a4f33f20a5..c50a1c96ae 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_profile_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_profile_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_profile_relationship.go index 1a332e1bb3..37286b5ccc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_profile_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_profile_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_profile_response.go index 3d8d1405fe..9eb7dccc4f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_profile_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_relationship.go index e077ba55c8..2ec54c1b2f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_response.go index ff7894968e..74c84ae373 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_node_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_port_type_to_port_number_map.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_port_type_to_port_number_map.go index 1fc6d7ead0..59f910540f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_port_type_to_port_number_map.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_port_type_to_port_number_map.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_protected_cluster.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_protected_cluster.go index 1ac0a53c0c..8eddf7dc12 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_protected_cluster.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_protected_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_protected_cluster_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_protected_cluster_list.go index 6352fc1990..72119b2f9a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_protected_cluster_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_protected_cluster_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_protected_cluster_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_protected_cluster_response.go index 76d91637d4..bacbec80cf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_protected_cluster_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_protected_cluster_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_protection_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_protection_info.go index d434dfd87f..300546cd44 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_protection_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_protection_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_proxy_setting_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_proxy_setting_policy.go index e67c259b4b..8fe14430d2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_proxy_setting_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_proxy_setting_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type HyperflexProxySettingPolicy struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // HTTP Proxy server FQDN or IP. - Hostname *string `json:"Hostname,omitempty"` + Hostname *string `json:"Hostname,omitempty" validate:"regexp=^[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?$|^[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?(\\\\.[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?)*(\\\\.[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?)$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password for the HTTP Proxy. @@ -466,7 +466,7 @@ func (o *HyperflexProxySettingPolicy) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // HTTP Proxy server FQDN or IP. - Hostname *string `json:"Hostname,omitempty"` + Hostname *string `json:"Hostname,omitempty" validate:"regexp=^[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?$|^[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?(\\\\.[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?)*(\\\\.[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?)$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password for the HTTP Proxy. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_proxy_setting_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_proxy_setting_policy_list.go index 5aa02d4a6f..3375a74788 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_proxy_setting_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_proxy_setting_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_proxy_setting_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_proxy_setting_policy_relationship.go index 71609e81fb..e027c44adc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_proxy_setting_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_proxy_setting_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_proxy_setting_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_proxy_setting_policy_response.go index 40140b06b2..b85c6c7087 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_proxy_setting_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_proxy_setting_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_re_sync_cluster_mo_ids.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_re_sync_cluster_mo_ids.go index ee2fcc7f47..4263b5cb0a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_re_sync_cluster_mo_ids.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_re_sync_cluster_mo_ids.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_reduce_re_sync.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_reduce_re_sync.go index 7a1d6c032b..5b4f2e067d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_reduce_re_sync.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_reduce_re_sync.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_reduce_re_sync_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_reduce_re_sync_list.go index 7e15545f20..c206004814 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_reduce_re_sync_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_reduce_re_sync_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_reduce_re_sync_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_reduce_re_sync_response.go index cf41521202..a2d85630c5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_reduce_re_sync_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_reduce_re_sync_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_replication_cluster_reference_to_schedule.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_replication_cluster_reference_to_schedule.go index 4ae5b4a907..c08913d44e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_replication_cluster_reference_to_schedule.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_replication_cluster_reference_to_schedule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_replication_peer_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_replication_peer_info.go index 2996830a4b..afab44a84d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_replication_peer_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_replication_peer_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_replication_plat_datastore.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_replication_plat_datastore.go index 34996be026..a26f58f675 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_replication_plat_datastore.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_replication_plat_datastore.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_replication_plat_datastore_pair.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_replication_plat_datastore_pair.go index a6769464d3..0fadda2dd7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_replication_plat_datastore_pair.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_replication_plat_datastore_pair.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_replication_schedule.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_replication_schedule.go index 80582b9942..e9c8d095c6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_replication_schedule.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_replication_schedule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_replication_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_replication_status.go index a19e029cb8..d230f6da46 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_replication_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_replication_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_rpo_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_rpo_status.go index e854acce6e..186c20763a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_rpo_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_rpo_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version.go index 0f36013878..02d7ebc6fe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_entry.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_entry.go index 863c42eaff..7646fc1cad 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_entry.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -32,7 +32,7 @@ type HyperflexServerFirmwareVersionEntry struct { // The server platform type that is applicable for the server firmware bundle version. * `M5` - M5 generation of UCS server. * `M3` - M3 generation of UCS server. * `M4` - M4 generation of UCS server. * `M6` - M6 generation of UCS server. ServerPlatform *string `json:"ServerPlatform,omitempty"` // The server firmware bundle version. - Version *string `json:"Version,omitempty"` + Version *string `json:"Version,omitempty" validate:"regexp=(^3\\\\.[1-9]\\\\([1-9][a-z]\\\\)$|^[4-9]\\\\.[0-9]\\\\([1-9][a-z]\\\\)$)"` ServerFirmwareVersion NullableHyperflexServerFirmwareVersionRelationship `json:"ServerFirmwareVersion,omitempty"` AdditionalProperties map[string]interface{} } @@ -371,7 +371,7 @@ func (o *HyperflexServerFirmwareVersionEntry) UnmarshalJSON(data []byte) (err er // The server platform type that is applicable for the server firmware bundle version. * `M5` - M5 generation of UCS server. * `M3` - M3 generation of UCS server. * `M4` - M4 generation of UCS server. * `M6` - M6 generation of UCS server. ServerPlatform *string `json:"ServerPlatform,omitempty"` // The server firmware bundle version. - Version *string `json:"Version,omitempty"` + Version *string `json:"Version,omitempty" validate:"regexp=(^3\\\\.[1-9]\\\\([1-9][a-z]\\\\)$|^[4-9]\\\\.[0-9]\\\\([1-9][a-z]\\\\)$)"` ServerFirmwareVersion NullableHyperflexServerFirmwareVersionRelationship `json:"ServerFirmwareVersion,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_entry_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_entry_list.go index 8ddeb1f31f..61136a68e7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_entry_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_entry_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_entry_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_entry_relationship.go index ce28a7e745..0e231c397a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_entry_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_entry_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_entry_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_entry_response.go index 52956f5b30..f52d377e36 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_entry_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_entry_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_info.go index b451ec9f1d..c9a428b789 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type HyperflexServerFirmwareVersionInfo struct { // The platform type for UCS server. * `M5` - M5 generation of UCS server. * `M3` - M3 generation of UCS server. * `M4` - M4 generation of UCS server. * `M6` - M6 generation of UCS server. ServerPlatform *string `json:"ServerPlatform,omitempty"` // The server firmware bundle version. - Version *string `json:"Version,omitempty"` + Version *string `json:"Version,omitempty" validate:"regexp=(^3\\\\.[1-9]\\\\([1-9][a-z]\\\\)$|^[4-9]\\\\.[0-9]\\\\([1-9][a-z]\\\\)$|^[4-9]\\\\.[0-9]\\\\([0-9](\\\\.[0-9]+|[a-z]).*\\\\)$)"` AdditionalProperties map[string]interface{} } @@ -276,7 +276,7 @@ func (o *HyperflexServerFirmwareVersionInfo) UnmarshalJSON(data []byte) (err err // The platform type for UCS server. * `M5` - M5 generation of UCS server. * `M3` - M3 generation of UCS server. * `M4` - M4 generation of UCS server. * `M6` - M6 generation of UCS server. ServerPlatform *string `json:"ServerPlatform,omitempty"` // The server firmware bundle version. - Version *string `json:"Version,omitempty"` + Version *string `json:"Version,omitempty" validate:"regexp=(^3\\\\.[1-9]\\\\([1-9][a-z]\\\\)$|^[4-9]\\\\.[0-9]\\\\([1-9][a-z]\\\\)$|^[4-9]\\\\.[0-9]\\\\([0-9](\\\\.[0-9]+|[a-z]).*\\\\)$)"` } varHyperflexServerFirmwareVersionInfoWithoutEmbeddedStruct := HyperflexServerFirmwareVersionInfoWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_list.go index 88f1266404..bb35e79d9b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_relationship.go index c3fc81db42..f52db84962 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_response.go index 634d5dbe9b..3224ea3843 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_firmware_version_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_model.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_model.go index 8217fd232f..41e4311d54 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_model.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_model.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_model_entry.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_model_entry.go index f6b45f382e..702cbf8ce5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_model_entry.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_model_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_model_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_model_list.go index d98110f730..1f11ac5fb1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_model_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_model_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_model_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_model_relationship.go index a692af7152..cdaa4baeb0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_model_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_model_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_model_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_model_response.go index dbd64921a4..c06c6a1ff7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_model_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_server_model_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_service_auth_token.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_service_auth_token.go index ad8d2ff0dc..74541b5aa7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_service_auth_token.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_service_auth_token.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_service_auth_token_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_service_auth_token_list.go index 41335b44a0..e1f71e7e44 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_service_auth_token_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_service_auth_token_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_service_auth_token_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_service_auth_token_response.go index 0bf87781b6..a1147da907 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_service_auth_token_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_service_auth_token_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_site_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_site_details.go index d4471fc8b9..7701a0bcf7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_site_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_site_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_snapshot_files.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_snapshot_files.go index 2b48137770..16402966f2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_snapshot_files.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_snapshot_files.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_snapshot_info_brief.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_snapshot_info_brief.go index 7c29b8ae89..fc3646522a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_snapshot_info_brief.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_snapshot_info_brief.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_snapshot_point.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_snapshot_point.go index 1e47c009ae..0cb1598563 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_snapshot_point.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_snapshot_point.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_snapshot_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_snapshot_status.go index b846639ded..d8845d85b8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_snapshot_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_snapshot_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_component.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_component.go index bc40fc7525..185e391caa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_component.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_component.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_component_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_component_list.go index 726145d1dd..f2df037a2e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_component_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_component_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_component_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_component_relationship.go index 8dfc3f353f..4169c0fa5a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_component_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_component_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_component_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_component_response.go index fbbce34c72..0ba9dca311 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_component_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_component_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_entry.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_entry.go index fdf4135b36..6d2df56b2f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_entry.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_entry_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_entry_list.go index 479b1b12e4..fb1ffcd3bd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_entry_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_entry_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_entry_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_entry_relationship.go index fba762725f..93264fba15 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_entry_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_entry_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_entry_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_entry_response.go index ea92e0a679..3b5d6d1dd4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_entry_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_entry_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_version.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_version.go index 53cd7f983c..1f90d51cc2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_version.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_version.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_version_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_version_list.go index e347332196..3b7c69c32d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_version_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_version_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_version_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_version_relationship.go index d993cfa8b3..ef89482064 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_version_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_version_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_version_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_version_response.go index c93c69bf29..a80f4c54e9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_version_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_distribution_version_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_version_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_version_policy.go index c04bcdc77f..31215e20c5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_version_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_version_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type HyperflexSoftwareVersionPolicy struct { // Desired hypervisor version to apply for all the nodes on the HyperFlex cluster. HypervisorVersion *string `json:"HypervisorVersion,omitempty"` // Desired server firmware version to apply on the HyperFlex Cluster. - ServerFirmwareVersion *string `json:"ServerFirmwareVersion,omitempty"` + ServerFirmwareVersion *string `json:"ServerFirmwareVersion,omitempty" validate:"regexp=^$|(^3\\\\.[0-9]\\\\([1-9][a-z]\\\\)$|^[4-9]\\\\.[1-9]\\\\([1-9][a-z]\\\\)$|^4\\\\.0\\\\([1-3][a-z]\\\\)$|^4\\\\.0\\\\(4[d-z]\\\\)$|4\\\\.0\\\\([5-9][a-z]\\\\)$|^[4-9]\\\\.[0-9]\\\\([0-9](\\\\.[0-9]+|[a-z]).*\\\\)$)"` ServerFirmwareVersions []HyperflexServerFirmwareVersionInfo `json:"ServerFirmwareVersions,omitempty"` UpgradeTypes []string `json:"UpgradeTypes,omitempty"` // An array of relationships to hyperflexClusterProfile resources. @@ -611,7 +611,7 @@ func (o *HyperflexSoftwareVersionPolicy) UnmarshalJSON(data []byte) (err error) // Desired hypervisor version to apply for all the nodes on the HyperFlex cluster. HypervisorVersion *string `json:"HypervisorVersion,omitempty"` // Desired server firmware version to apply on the HyperFlex Cluster. - ServerFirmwareVersion *string `json:"ServerFirmwareVersion,omitempty"` + ServerFirmwareVersion *string `json:"ServerFirmwareVersion,omitempty" validate:"regexp=^$|(^3\\\\.[0-9]\\\\([1-9][a-z]\\\\)$|^[4-9]\\\\.[1-9]\\\\([1-9][a-z]\\\\)$|^4\\\\.0\\\\([1-3][a-z]\\\\)$|^4\\\\.0\\\\(4[d-z]\\\\)$|4\\\\.0\\\\([5-9][a-z]\\\\)$|^[4-9]\\\\.[0-9]\\\\([0-9](\\\\.[0-9]+|[a-z]).*\\\\)$)"` ServerFirmwareVersions []HyperflexServerFirmwareVersionInfo `json:"ServerFirmwareVersions,omitempty"` UpgradeTypes []string `json:"UpgradeTypes,omitempty"` // An array of relationships to hyperflexClusterProfile resources. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_version_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_version_policy_list.go index b5aabcd5a1..dafb21be4d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_version_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_version_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_version_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_version_policy_relationship.go index db1ecfc298..56559a897b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_version_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_version_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_version_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_version_policy_response.go index 1c2781fe78..73cb62602f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_version_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_software_version_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_st_platform_cluster_healing_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_st_platform_cluster_healing_info.go index 4603e35b86..6de2fb269b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_st_platform_cluster_healing_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_st_platform_cluster_healing_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_st_platform_cluster_resiliency_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_st_platform_cluster_resiliency_info.go index e24b38c115..b2f9edc179 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_st_platform_cluster_resiliency_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_st_platform_cluster_resiliency_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_start_reduce_re_sync.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_start_reduce_re_sync.go index 37a29266ea..762e08ac10 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_start_reduce_re_sync.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_start_reduce_re_sync.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_start_reduce_re_sync_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_start_reduce_re_sync_list.go index ec84606b22..62218d80d0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_start_reduce_re_sync_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_start_reduce_re_sync_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_start_reduce_re_sync_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_start_reduce_re_sync_response.go index 96ce87a186..4ff19673c7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_start_reduce_re_sync_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_start_reduce_re_sync_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_storage_container.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_storage_container.go index c9d15f2b2e..e2735fd03a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_storage_container.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_storage_container.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_storage_container_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_storage_container_list.go index c248da7f67..abf1b3a129 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_storage_container_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_storage_container_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_storage_container_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_storage_container_relationship.go index c833b54771..a8e34bdffc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_storage_container_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_storage_container_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_storage_container_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_storage_container_response.go index 48e3a75a2c..d335b1e615 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_storage_container_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_storage_container_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_summary.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_summary.go index 705e68cdb4..1efbb3db72 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_summary.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_sys_config_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_sys_config_policy.go index 4959726b49..84946881b1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_sys_config_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_sys_config_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type HyperflexSysConfigPolicy struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The DNS Search Domain Name. This setting applies to HyperFlex Data Platform 3.0 or later only. - DnsDomainName *string `json:"DnsDomainName,omitempty"` + DnsDomainName *string `json:"DnsDomainName,omitempty" validate:"regexp=^$|^([a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\\\\.)*[a-zA-Z]{2,63}$"` DnsServers []string `json:"DnsServers,omitempty"` NtpServers []string `json:"NtpServers,omitempty"` // The timezone of the HyperFlex cluster's system clock. * `Pacific/Niue` - * `Africa/Abidjan` - * `Africa/Accra` - * `Africa/Addis_Ababa` - * `Africa/Algiers` - * `Africa/Asmara` - * `Africa/Bamako` - * `Africa/Bangui` - * `Africa/Banjul` - * `Africa/Bissau` - * `Africa/Blantyre` - * `Africa/Brazzaville` - * `Africa/Bujumbura` - * `Africa/Cairo` - * `Africa/Casablanca` - * `Africa/Ceuta` - * `Africa/Conakry` - * `Africa/Dakar` - * `Africa/Dar_es_Salaam` - * `Africa/Djibouti` - * `Africa/Douala` - * `Africa/El_Aaiun` - * `Africa/Freetown` - * `Africa/Gaborone` - * `Africa/Harare` - * `Africa/Johannesburg` - * `Africa/Juba` - * `Africa/Kampala` - * `Africa/Khartoum` - * `Africa/Kigali` - * `Africa/Kinshasa` - * `Africa/Lagos` - * `Africa/Libreville` - * `Africa/Lome` - * `Africa/Luanda` - * `Africa/Lubumbashi` - * `Africa/Lusaka` - * `Africa/Malabo` - * `Africa/Maputo` - * `Africa/Maseru` - * `Africa/Mbabane` - * `Africa/Mogadishu` - * `Africa/Monrovia` - * `Africa/Nairobi` - * `Africa/Ndjamena` - * `Africa/Niamey` - * `Africa/Nouakchott` - * `Africa/Ouagadougou` - * `Africa/Porto-Novo` - * `Africa/Sao_Tome` - * `Africa/Tripoli` - * `Africa/Tunis` - * `Africa/Windhoek` - * `America/Adak` - * `America/Anchorage` - * `America/Anguilla` - * `America/Antigua` - * `America/Araguaina` - * `America/Argentina/Buenos_Aires` - * `America/Argentina/Catamarca` - * `America/Argentina/Cordoba` - * `America/Argentina/Jujuy` - * `America/Argentina/La_Rioja` - * `America/Argentina/Mendoza` - * `America/Argentina/Rio_Gallegos` - * `America/Argentina/Salta` - * `America/Argentina/San_Juan` - * `America/Argentina/San_Luis` - * `America/Argentina/Tucuman` - * `America/Argentina/Ushuaia` - * `America/Aruba` - * `America/Asuncion` - * `America/Atikokan` - * `America/Bahia` - * `America/Bahia_Banderas` - * `America/Barbados` - * `America/Belem` - * `America/Belize` - * `America/Blanc-Sablon` - * `America/Boa_Vista` - * `America/Bogota` - * `America/Boise` - * `America/Cambridge_Bay` - * `America/Campo_Grande` - * `America/Cancun` - * `America/Caracas` - * `America/Cayenne` - * `America/Cayman` - * `America/Chicago` - * `America/Chihuahua` - * `America/Costa_Rica` - * `America/Creston` - * `America/Cuiaba` - * `America/Curacao` - * `America/Danmarkshavn` - * `America/Dawson` - * `America/Dawson_Creek` - * `America/Denver` - * `America/Detroit` - * `America/Dominica` - * `America/Edmonton` - * `America/Eirunepe` - * `America/El_Salvador` - * `America/Fortaleza` - * `America/Glace_Bay` - * `America/Godthab` - * `America/Goose_Bay` - * `America/Grand_Turk` - * `America/Grenada` - * `America/Guadeloupe` - * `America/Guatemala` - * `America/Guayaquil` - * `America/Guyana` - * `America/Halifax` - * `America/Havana` - * `America/Hermosillo` - * `America/Indiana/Indianapolis` - * `America/Indiana/Knox` - * `America/Indiana/Marengo` - * `America/Indiana/Petersburg` - * `America/Indiana/Tell_City` - * `America/Indiana/Vevay` - * `America/Indiana/Vincennes` - * `America/Indiana/Winamac` - * `America/Inuvik` - * `America/Iqaluit` - * `America/Jamaica` - * `America/Juneau` - * `America/Kentucky/Louisville` - * `America/Kentucky/Monticello` - * `America/Kralendijk` - * `America/La_Paz` - * `America/Lima` - * `America/Los_Angeles` - * `America/Lower_Princes` - * `America/Maceio` - * `America/Managua` - * `America/Manaus` - * `America/Marigot` - * `America/Martinique` - * `America/Matamoros` - * `America/Mazatlan` - * `America/Menominee` - * `America/Merida` - * `America/Metlakatla` - * `America/Mexico_City` - * `America/Miquelon` - * `America/Moncton` - * `America/Monterrey` - * `America/Montevideo` - * `America/Montreal` - * `America/Montserrat` - * `America/Nassau` - * `America/New_York` - * `America/Nipigon` - * `America/Nome` - * `America/Noronha` - * `America/North_Dakota/Beulah` - * `America/North_Dakota/Center` - * `America/North_Dakota/New_Salem` - * `America/Ojinaga` - * `America/Panama` - * `America/Pangnirtung` - * `America/Paramaribo` - * `America/Phoenix` - * `America/Port-au-Prince` - * `America/Port_of_Spain` - * `America/Porto_Velho` - * `America/Puerto_Rico` - * `America/Rainy_River` - * `America/Rankin_Inlet` - * `America/Recife` - * `America/Regina` - * `America/Resolute` - * `America/Rio_Branco` - * `America/Santa_Isabel` - * `America/Santarem` - * `America/Santiago` - * `America/Santo_Domingo` - * `America/Sao_Paulo` - * `America/Scoresbysund` - * `America/Shiprock` - * `America/Sitka` - * `America/St_Barthelemy` - * `America/St_Johns` - * `America/St_Kitts` - * `America/St_Lucia` - * `America/St_Thomas` - * `America/St_Vincent` - * `America/Swift_Current` - * `America/Tegucigalpa` - * `America/Thule` - * `America/Thunder_Bay` - * `America/Tijuana` - * `America/Toronto` - * `America/Tortola` - * `America/Vancouver` - * `America/Whitehorse` - * `America/Winnipeg` - * `America/Yakutat` - * `America/Yellowknife` - * `Antarctica/Casey` - * `Antarctica/Davis` - * `Antarctica/DumontDUrville` - * `Antarctica/Macquarie` - * `Antarctica/Mawson` - * `Antarctica/McMurdo` - * `Antarctica/Palmer` - * `Antarctica/Rothera` - * `Antarctica/South_Pole` - * `Antarctica/Syowa` - * `Antarctica/Troll` - * `Antarctica/Vostok` - * `Arctic/Longyearbyen` - * `Asia/Aden` - * `Asia/Almaty` - * `Asia/Amman` - * `Asia/Anadyr` - * `Asia/Aqtau` - * `Asia/Aqtobe` - * `Asia/Ashgabat` - * `Asia/Baghdad` - * `Asia/Bahrain` - * `Asia/Baku` - * `Asia/Bangkok` - * `Asia/Beirut` - * `Asia/Bishkek` - * `Asia/Brunei` - * `Asia/Calcutta` - * `Asia/Choibalsan` - * `Asia/Chongqing` - * `Asia/Colombo` - * `Asia/Damascus` - * `Asia/Dhaka` - * `Asia/Dili` - * `Asia/Dubai` - * `Asia/Dushanbe` - * `Asia/Gaza` - * `Asia/Harbin` - * `Asia/Hebron` - * `Asia/Ho_Chi_Minh` - * `Asia/Hong_Kong` - * `Asia/Hovd` - * `Asia/Irkutsk` - * `Asia/Jakarta` - * `Asia/Jayapura` - * `Asia/Jerusalem` - * `Asia/Kabul` - * `Asia/Kamchatka` - * `Asia/Karachi` - * `Asia/Kashgar` - * `Asia/Kathmandu` - * `Asia/Katmandu` - * `Asia/Khandyga` - * `Asia/Kolkata` - * `Asia/Krasnoyarsk` - * `Asia/Kuala_Lumpur` - * `Asia/Kuching` - * `Asia/Kuwait` - * `Asia/Macau` - * `Asia/Magadan` - * `Asia/Makassar` - * `Asia/Manila` - * `Asia/Muscat` - * `Asia/Nicosia` - * `Asia/Novokuznetsk` - * `Asia/Novosibirsk` - * `Asia/Omsk` - * `Asia/Oral` - * `Asia/Phnom_Penh` - * `Asia/Pontianak` - * `Asia/Pyongyang` - * `Asia/Qatar` - * `Asia/Qyzylorda` - * `Asia/Rangoon` - * `Asia/Riyadh` - * `Asia/Saigon` - * `Asia/Sakhalin` - * `Asia/Samarkand` - * `Asia/Seoul` - * `Asia/Shanghai` - * `Asia/Singapore` - * `Asia/Taipei` - * `Asia/Tashkent` - * `Asia/Tbilisi` - * `Asia/Tehran` - * `Asia/Thimphu` - * `Asia/Tokyo` - * `Asia/Ulaanbaatar` - * `Asia/Urumqi` - * `Asia/Ust-Nera` - * `Asia/Vientiane` - * `Asia/Vladivostok` - * `Asia/Yakutsk` - * `Asia/Yekaterinburg` - * `Asia/Yerevan` - * `Atlantic/Azores` - * `Atlantic/Bermuda` - * `Atlantic/Canary` - * `Atlantic/Cape_Verde` - * `Atlantic/Faroe` - * `Atlantic/Madeira` - * `Atlantic/Reykjavik` - * `Atlantic/South_Georgia` - * `Atlantic/St_Helena` - * `Atlantic/Stanley` - * `Australia/Adelaide` - * `Australia/Brisbane` - * `Australia/Broken_Hill` - * `Australia/Currie` - * `Australia/Darwin` - * `Australia/Eucla` - * `Australia/Hobart` - * `Australia/Lindeman` - * `Australia/Lord_Howe` - * `Australia/Melbourne` - * `Australia/Perth` - * `Australia/Sydney` - * `Etc/GMT` - * `Europe/Amsterdam` - * `Europe/Andorra` - * `Europe/Athens` - * `Europe/Belgrade` - * `Europe/Berlin` - * `Europe/Bratislava` - * `Europe/Brussels` - * `Europe/Bucharest` - * `Europe/Budapest` - * `Europe/Busingen` - * `Europe/Chisinau` - * `Europe/Copenhagen` - * `Europe/Dublin` - * `Europe/Gibraltar` - * `Europe/Guernsey` - * `Europe/Helsinki` - * `Europe/Isle_of_Man` - * `Europe/Istanbul` - * `Europe/Jersey` - * `Europe/Kaliningrad` - * `Europe/Kiev` - * `Europe/Lisbon` - * `Europe/Ljubljana` - * `Europe/London` - * `Europe/Luxembourg` - * `Europe/Madrid` - * `Europe/Malta` - * `Europe/Mariehamn` - * `Europe/Minsk` - * `Europe/Monaco` - * `Europe/Moscow` - * `Europe/Oslo` - * `Europe/Paris` - * `Europe/Podgorica` - * `Europe/Prague` - * `Europe/Riga` - * `Europe/Rome` - * `Europe/Samara` - * `Europe/San_Marino` - * `Europe/Sarajevo` - * `Europe/Simferopol` - * `Europe/Skopje` - * `Europe/Sofia` - * `Europe/Stockholm` - * `Europe/Tallinn` - * `Europe/Tirane` - * `Europe/Uzhgorod` - * `Europe/Vaduz` - * `Europe/Vatican` - * `Europe/Vienna` - * `Europe/Vilnius` - * `Europe/Volgograd` - * `Europe/Warsaw` - * `Europe/Zagreb` - * `Europe/Zaporozhye` - * `Europe/Zurich` - * `Indian/Antananarivo` - * `Indian/Chagos` - * `Indian/Christmas` - * `Indian/Cocos` - * `Indian/Comoro` - * `Indian/Kerguelen` - * `Indian/Mahe` - * `Indian/Maldives` - * `Indian/Mauritius` - * `Indian/Mayotte` - * `Indian/Reunion` - * `Pacific/Apia` - * `Pacific/Auckland` - * `Pacific/Chatham` - * `Pacific/Chuuk` - * `Pacific/Easter` - * `Pacific/Efate` - * `Pacific/Enderbury` - * `Pacific/Fakaofo` - * `Pacific/Fiji` - * `Pacific/Funafuti` - * `Pacific/Galapagos` - * `Pacific/Gambier` - * `Pacific/Guadalcanal` - * `Pacific/Guam` - * `Pacific/Honolulu` - * `Pacific/Johnston` - * `Pacific/Kiritimati` - * `Pacific/Kosrae` - * `Pacific/Kwajalein` - * `Pacific/Majuro` - * `Pacific/Marquesas` - * `Pacific/Midway` - * `Pacific/Nauru` - * `Pacific/Norfolk` - * `Pacific/Noumea` - * `Pacific/Pago_Pago` - * `Pacific/Palau` - * `Pacific/Pitcairn` - * `Pacific/Pohnpei` - * `Pacific/Port_Moresby` - * `Pacific/Rarotonga` - * `Pacific/Saipan` - * `Pacific/Tahiti` - * `Pacific/Tarawa` - * `Pacific/Tongatapu` - * `Pacific/Wake` - * `Pacific/Wallis` - * `UTC` - @@ -433,7 +433,7 @@ func (o *HyperflexSysConfigPolicy) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The DNS Search Domain Name. This setting applies to HyperFlex Data Platform 3.0 or later only. - DnsDomainName *string `json:"DnsDomainName,omitempty"` + DnsDomainName *string `json:"DnsDomainName,omitempty" validate:"regexp=^$|^([a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\\\\.)*[a-zA-Z]{2,63}$"` DnsServers []string `json:"DnsServers,omitempty"` NtpServers []string `json:"NtpServers,omitempty"` // The timezone of the HyperFlex cluster's system clock. * `Pacific/Niue` - * `Africa/Abidjan` - * `Africa/Accra` - * `Africa/Addis_Ababa` - * `Africa/Algiers` - * `Africa/Asmara` - * `Africa/Bamako` - * `Africa/Bangui` - * `Africa/Banjul` - * `Africa/Bissau` - * `Africa/Blantyre` - * `Africa/Brazzaville` - * `Africa/Bujumbura` - * `Africa/Cairo` - * `Africa/Casablanca` - * `Africa/Ceuta` - * `Africa/Conakry` - * `Africa/Dakar` - * `Africa/Dar_es_Salaam` - * `Africa/Djibouti` - * `Africa/Douala` - * `Africa/El_Aaiun` - * `Africa/Freetown` - * `Africa/Gaborone` - * `Africa/Harare` - * `Africa/Johannesburg` - * `Africa/Juba` - * `Africa/Kampala` - * `Africa/Khartoum` - * `Africa/Kigali` - * `Africa/Kinshasa` - * `Africa/Lagos` - * `Africa/Libreville` - * `Africa/Lome` - * `Africa/Luanda` - * `Africa/Lubumbashi` - * `Africa/Lusaka` - * `Africa/Malabo` - * `Africa/Maputo` - * `Africa/Maseru` - * `Africa/Mbabane` - * `Africa/Mogadishu` - * `Africa/Monrovia` - * `Africa/Nairobi` - * `Africa/Ndjamena` - * `Africa/Niamey` - * `Africa/Nouakchott` - * `Africa/Ouagadougou` - * `Africa/Porto-Novo` - * `Africa/Sao_Tome` - * `Africa/Tripoli` - * `Africa/Tunis` - * `Africa/Windhoek` - * `America/Adak` - * `America/Anchorage` - * `America/Anguilla` - * `America/Antigua` - * `America/Araguaina` - * `America/Argentina/Buenos_Aires` - * `America/Argentina/Catamarca` - * `America/Argentina/Cordoba` - * `America/Argentina/Jujuy` - * `America/Argentina/La_Rioja` - * `America/Argentina/Mendoza` - * `America/Argentina/Rio_Gallegos` - * `America/Argentina/Salta` - * `America/Argentina/San_Juan` - * `America/Argentina/San_Luis` - * `America/Argentina/Tucuman` - * `America/Argentina/Ushuaia` - * `America/Aruba` - * `America/Asuncion` - * `America/Atikokan` - * `America/Bahia` - * `America/Bahia_Banderas` - * `America/Barbados` - * `America/Belem` - * `America/Belize` - * `America/Blanc-Sablon` - * `America/Boa_Vista` - * `America/Bogota` - * `America/Boise` - * `America/Cambridge_Bay` - * `America/Campo_Grande` - * `America/Cancun` - * `America/Caracas` - * `America/Cayenne` - * `America/Cayman` - * `America/Chicago` - * `America/Chihuahua` - * `America/Costa_Rica` - * `America/Creston` - * `America/Cuiaba` - * `America/Curacao` - * `America/Danmarkshavn` - * `America/Dawson` - * `America/Dawson_Creek` - * `America/Denver` - * `America/Detroit` - * `America/Dominica` - * `America/Edmonton` - * `America/Eirunepe` - * `America/El_Salvador` - * `America/Fortaleza` - * `America/Glace_Bay` - * `America/Godthab` - * `America/Goose_Bay` - * `America/Grand_Turk` - * `America/Grenada` - * `America/Guadeloupe` - * `America/Guatemala` - * `America/Guayaquil` - * `America/Guyana` - * `America/Halifax` - * `America/Havana` - * `America/Hermosillo` - * `America/Indiana/Indianapolis` - * `America/Indiana/Knox` - * `America/Indiana/Marengo` - * `America/Indiana/Petersburg` - * `America/Indiana/Tell_City` - * `America/Indiana/Vevay` - * `America/Indiana/Vincennes` - * `America/Indiana/Winamac` - * `America/Inuvik` - * `America/Iqaluit` - * `America/Jamaica` - * `America/Juneau` - * `America/Kentucky/Louisville` - * `America/Kentucky/Monticello` - * `America/Kralendijk` - * `America/La_Paz` - * `America/Lima` - * `America/Los_Angeles` - * `America/Lower_Princes` - * `America/Maceio` - * `America/Managua` - * `America/Manaus` - * `America/Marigot` - * `America/Martinique` - * `America/Matamoros` - * `America/Mazatlan` - * `America/Menominee` - * `America/Merida` - * `America/Metlakatla` - * `America/Mexico_City` - * `America/Miquelon` - * `America/Moncton` - * `America/Monterrey` - * `America/Montevideo` - * `America/Montreal` - * `America/Montserrat` - * `America/Nassau` - * `America/New_York` - * `America/Nipigon` - * `America/Nome` - * `America/Noronha` - * `America/North_Dakota/Beulah` - * `America/North_Dakota/Center` - * `America/North_Dakota/New_Salem` - * `America/Ojinaga` - * `America/Panama` - * `America/Pangnirtung` - * `America/Paramaribo` - * `America/Phoenix` - * `America/Port-au-Prince` - * `America/Port_of_Spain` - * `America/Porto_Velho` - * `America/Puerto_Rico` - * `America/Rainy_River` - * `America/Rankin_Inlet` - * `America/Recife` - * `America/Regina` - * `America/Resolute` - * `America/Rio_Branco` - * `America/Santa_Isabel` - * `America/Santarem` - * `America/Santiago` - * `America/Santo_Domingo` - * `America/Sao_Paulo` - * `America/Scoresbysund` - * `America/Shiprock` - * `America/Sitka` - * `America/St_Barthelemy` - * `America/St_Johns` - * `America/St_Kitts` - * `America/St_Lucia` - * `America/St_Thomas` - * `America/St_Vincent` - * `America/Swift_Current` - * `America/Tegucigalpa` - * `America/Thule` - * `America/Thunder_Bay` - * `America/Tijuana` - * `America/Toronto` - * `America/Tortola` - * `America/Vancouver` - * `America/Whitehorse` - * `America/Winnipeg` - * `America/Yakutat` - * `America/Yellowknife` - * `Antarctica/Casey` - * `Antarctica/Davis` - * `Antarctica/DumontDUrville` - * `Antarctica/Macquarie` - * `Antarctica/Mawson` - * `Antarctica/McMurdo` - * `Antarctica/Palmer` - * `Antarctica/Rothera` - * `Antarctica/South_Pole` - * `Antarctica/Syowa` - * `Antarctica/Troll` - * `Antarctica/Vostok` - * `Arctic/Longyearbyen` - * `Asia/Aden` - * `Asia/Almaty` - * `Asia/Amman` - * `Asia/Anadyr` - * `Asia/Aqtau` - * `Asia/Aqtobe` - * `Asia/Ashgabat` - * `Asia/Baghdad` - * `Asia/Bahrain` - * `Asia/Baku` - * `Asia/Bangkok` - * `Asia/Beirut` - * `Asia/Bishkek` - * `Asia/Brunei` - * `Asia/Calcutta` - * `Asia/Choibalsan` - * `Asia/Chongqing` - * `Asia/Colombo` - * `Asia/Damascus` - * `Asia/Dhaka` - * `Asia/Dili` - * `Asia/Dubai` - * `Asia/Dushanbe` - * `Asia/Gaza` - * `Asia/Harbin` - * `Asia/Hebron` - * `Asia/Ho_Chi_Minh` - * `Asia/Hong_Kong` - * `Asia/Hovd` - * `Asia/Irkutsk` - * `Asia/Jakarta` - * `Asia/Jayapura` - * `Asia/Jerusalem` - * `Asia/Kabul` - * `Asia/Kamchatka` - * `Asia/Karachi` - * `Asia/Kashgar` - * `Asia/Kathmandu` - * `Asia/Katmandu` - * `Asia/Khandyga` - * `Asia/Kolkata` - * `Asia/Krasnoyarsk` - * `Asia/Kuala_Lumpur` - * `Asia/Kuching` - * `Asia/Kuwait` - * `Asia/Macau` - * `Asia/Magadan` - * `Asia/Makassar` - * `Asia/Manila` - * `Asia/Muscat` - * `Asia/Nicosia` - * `Asia/Novokuznetsk` - * `Asia/Novosibirsk` - * `Asia/Omsk` - * `Asia/Oral` - * `Asia/Phnom_Penh` - * `Asia/Pontianak` - * `Asia/Pyongyang` - * `Asia/Qatar` - * `Asia/Qyzylorda` - * `Asia/Rangoon` - * `Asia/Riyadh` - * `Asia/Saigon` - * `Asia/Sakhalin` - * `Asia/Samarkand` - * `Asia/Seoul` - * `Asia/Shanghai` - * `Asia/Singapore` - * `Asia/Taipei` - * `Asia/Tashkent` - * `Asia/Tbilisi` - * `Asia/Tehran` - * `Asia/Thimphu` - * `Asia/Tokyo` - * `Asia/Ulaanbaatar` - * `Asia/Urumqi` - * `Asia/Ust-Nera` - * `Asia/Vientiane` - * `Asia/Vladivostok` - * `Asia/Yakutsk` - * `Asia/Yekaterinburg` - * `Asia/Yerevan` - * `Atlantic/Azores` - * `Atlantic/Bermuda` - * `Atlantic/Canary` - * `Atlantic/Cape_Verde` - * `Atlantic/Faroe` - * `Atlantic/Madeira` - * `Atlantic/Reykjavik` - * `Atlantic/South_Georgia` - * `Atlantic/St_Helena` - * `Atlantic/Stanley` - * `Australia/Adelaide` - * `Australia/Brisbane` - * `Australia/Broken_Hill` - * `Australia/Currie` - * `Australia/Darwin` - * `Australia/Eucla` - * `Australia/Hobart` - * `Australia/Lindeman` - * `Australia/Lord_Howe` - * `Australia/Melbourne` - * `Australia/Perth` - * `Australia/Sydney` - * `Etc/GMT` - * `Europe/Amsterdam` - * `Europe/Andorra` - * `Europe/Athens` - * `Europe/Belgrade` - * `Europe/Berlin` - * `Europe/Bratislava` - * `Europe/Brussels` - * `Europe/Bucharest` - * `Europe/Budapest` - * `Europe/Busingen` - * `Europe/Chisinau` - * `Europe/Copenhagen` - * `Europe/Dublin` - * `Europe/Gibraltar` - * `Europe/Guernsey` - * `Europe/Helsinki` - * `Europe/Isle_of_Man` - * `Europe/Istanbul` - * `Europe/Jersey` - * `Europe/Kaliningrad` - * `Europe/Kiev` - * `Europe/Lisbon` - * `Europe/Ljubljana` - * `Europe/London` - * `Europe/Luxembourg` - * `Europe/Madrid` - * `Europe/Malta` - * `Europe/Mariehamn` - * `Europe/Minsk` - * `Europe/Monaco` - * `Europe/Moscow` - * `Europe/Oslo` - * `Europe/Paris` - * `Europe/Podgorica` - * `Europe/Prague` - * `Europe/Riga` - * `Europe/Rome` - * `Europe/Samara` - * `Europe/San_Marino` - * `Europe/Sarajevo` - * `Europe/Simferopol` - * `Europe/Skopje` - * `Europe/Sofia` - * `Europe/Stockholm` - * `Europe/Tallinn` - * `Europe/Tirane` - * `Europe/Uzhgorod` - * `Europe/Vaduz` - * `Europe/Vatican` - * `Europe/Vienna` - * `Europe/Vilnius` - * `Europe/Volgograd` - * `Europe/Warsaw` - * `Europe/Zagreb` - * `Europe/Zaporozhye` - * `Europe/Zurich` - * `Indian/Antananarivo` - * `Indian/Chagos` - * `Indian/Christmas` - * `Indian/Cocos` - * `Indian/Comoro` - * `Indian/Kerguelen` - * `Indian/Mahe` - * `Indian/Maldives` - * `Indian/Mauritius` - * `Indian/Mayotte` - * `Indian/Reunion` - * `Pacific/Apia` - * `Pacific/Auckland` - * `Pacific/Chatham` - * `Pacific/Chuuk` - * `Pacific/Easter` - * `Pacific/Efate` - * `Pacific/Enderbury` - * `Pacific/Fakaofo` - * `Pacific/Fiji` - * `Pacific/Funafuti` - * `Pacific/Galapagos` - * `Pacific/Gambier` - * `Pacific/Guadalcanal` - * `Pacific/Guam` - * `Pacific/Honolulu` - * `Pacific/Johnston` - * `Pacific/Kiritimati` - * `Pacific/Kosrae` - * `Pacific/Kwajalein` - * `Pacific/Majuro` - * `Pacific/Marquesas` - * `Pacific/Midway` - * `Pacific/Nauru` - * `Pacific/Norfolk` - * `Pacific/Noumea` - * `Pacific/Pago_Pago` - * `Pacific/Palau` - * `Pacific/Pitcairn` - * `Pacific/Pohnpei` - * `Pacific/Port_Moresby` - * `Pacific/Rarotonga` - * `Pacific/Saipan` - * `Pacific/Tahiti` - * `Pacific/Tarawa` - * `Pacific/Tongatapu` - * `Pacific/Wake` - * `Pacific/Wallis` - * `UTC` - diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_sys_config_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_sys_config_policy_list.go index 1badb24e20..89719a558a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_sys_config_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_sys_config_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_sys_config_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_sys_config_policy_relationship.go index cdb3280226..33bf77f3e3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_sys_config_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_sys_config_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_sys_config_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_sys_config_policy_response.go index 96f98120f8..8d1808f9f8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_sys_config_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_sys_config_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_target.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_target.go index 6f904d387a..3a81ab2dce 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_target.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_target.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_target_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_target_list.go index 4f8a12ee15..16e2531219 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_target_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_target_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_target_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_target_relationship.go index 1e48e899d4..dc0e5a9e30 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_target_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_target_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_target_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_target_response.go index 7a22806d7c..bb7cb70d94 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_target_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_target_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_tracked_disk.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_tracked_disk.go index bcfa8c0d8b..4bd390f8c1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_tracked_disk.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_tracked_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_tracked_file.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_tracked_file.go index a718b061a2..f367856210 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_tracked_file.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_tracked_file.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ucsm_config_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ucsm_config_policy.go index 840cbc50fb..172a7d8a4c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ucsm_config_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ucsm_config_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type HyperflexUcsmConfigPolicy struct { KvmIpRange NullableHyperflexIpAddrRange `json:"KvmIpRange,omitempty"` MacPrefixRange NullableHyperflexMacAddrPrefixRange `json:"MacPrefixRange,omitempty"` // The server firmware bundle version used for server components such as CIMC, adapters, BIOS, etc. - ServerFirmwareVersion *string `json:"ServerFirmwareVersion,omitempty"` + ServerFirmwareVersion *string `json:"ServerFirmwareVersion,omitempty" validate:"regexp=(^3\\\\.[1-9]\\\\([1-9][a-z]\\\\)$|^[4-9]\\\\.[0-9]\\\\([1-9][a-z]\\\\)$)"` // An array of relationships to hyperflexClusterProfile resources. ClusterProfiles []HyperflexClusterProfileRelationship `json:"ClusterProfiles,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` @@ -414,7 +414,7 @@ func (o *HyperflexUcsmConfigPolicy) UnmarshalJSON(data []byte) (err error) { KvmIpRange NullableHyperflexIpAddrRange `json:"KvmIpRange,omitempty"` MacPrefixRange NullableHyperflexMacAddrPrefixRange `json:"MacPrefixRange,omitempty"` // The server firmware bundle version used for server components such as CIMC, adapters, BIOS, etc. - ServerFirmwareVersion *string `json:"ServerFirmwareVersion,omitempty"` + ServerFirmwareVersion *string `json:"ServerFirmwareVersion,omitempty" validate:"regexp=(^3\\\\.[1-9]\\\\([1-9][a-z]\\\\)$|^[4-9]\\\\.[0-9]\\\\([1-9][a-z]\\\\)$)"` // An array of relationships to hyperflexClusterProfile resources. ClusterProfiles []HyperflexClusterProfileRelationship `json:"ClusterProfiles,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ucsm_config_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ucsm_config_policy_list.go index 9600a50286..2d764581f6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ucsm_config_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ucsm_config_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ucsm_config_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ucsm_config_policy_relationship.go index 9033e80faf..d8c55a0f09 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ucsm_config_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ucsm_config_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ucsm_config_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ucsm_config_policy_response.go index 0fdeeadbcd..5aceec9d98 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ucsm_config_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_ucsm_config_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vcenter_config_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vcenter_config_policy.go index 8ee51c49c3..4532e1a848 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vcenter_config_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vcenter_config_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type HyperflexVcenterConfigPolicy struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The vCenter datacenter name. - DataCenter *string `json:"DataCenter,omitempty"` + DataCenter *string `json:"DataCenter,omitempty" validate:"regexp=^[a-zA-Z0-9~!@#$%&*()-_][a-zA-Z0-9~!@#$%&* ()-_]{0,79}$"` // The vCenter server FQDN or IP. - Hostname *string `json:"Hostname,omitempty"` + Hostname *string `json:"Hostname,omitempty" validate:"regexp=^[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?$|^[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?(\\\\.[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?)*(\\\\.[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?)$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password for authenticating with vCenter. Follow the corresponding password policy governed by vCenter. @@ -39,7 +39,7 @@ type HyperflexVcenterConfigPolicy struct { // Overrides the default vCenter Single Sign-On URL. Do not specify unless instructed by Cisco TAC. SsoUrl *string `json:"SsoUrl,omitempty"` // The vCenter username (e.g. administrator@vsphere.local). - Username *string `json:"Username,omitempty"` + Username *string `json:"Username,omitempty" validate:"regexp=^$|^([a-zA-Z0-9._-]+)@([a-zA-Z0-9._-]+)$"` // An array of relationships to hyperflexClusterProfile resources. ClusterProfiles []HyperflexClusterProfileRelationship `json:"ClusterProfiles,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` @@ -503,9 +503,9 @@ func (o *HyperflexVcenterConfigPolicy) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The vCenter datacenter name. - DataCenter *string `json:"DataCenter,omitempty"` + DataCenter *string `json:"DataCenter,omitempty" validate:"regexp=^[a-zA-Z0-9~!@#$%&*()-_][a-zA-Z0-9~!@#$%&* ()-_]{0,79}$"` // The vCenter server FQDN or IP. - Hostname *string `json:"Hostname,omitempty"` + Hostname *string `json:"Hostname,omitempty" validate:"regexp=^[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?$|^[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?(\\\\.[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?)*(\\\\.[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?)$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password for authenticating with vCenter. Follow the corresponding password policy governed by vCenter. @@ -513,7 +513,7 @@ func (o *HyperflexVcenterConfigPolicy) UnmarshalJSON(data []byte) (err error) { // Overrides the default vCenter Single Sign-On URL. Do not specify unless instructed by Cisco TAC. SsoUrl *string `json:"SsoUrl,omitempty"` // The vCenter username (e.g. administrator@vsphere.local). - Username *string `json:"Username,omitempty"` + Username *string `json:"Username,omitempty" validate:"regexp=^$|^([a-zA-Z0-9._-]+)@([a-zA-Z0-9._-]+)$"` // An array of relationships to hyperflexClusterProfile resources. ClusterProfiles []HyperflexClusterProfileRelationship `json:"ClusterProfiles,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vcenter_config_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vcenter_config_policy_list.go index 79ea491323..c13a35c3ee 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vcenter_config_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vcenter_config_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vcenter_config_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vcenter_config_policy_relationship.go index 843402df42..46f5e207c2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vcenter_config_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vcenter_config_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vcenter_config_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vcenter_config_policy_response.go index 3d75f55c91..c2ef5effc7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vcenter_config_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vcenter_config_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vcenter_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vcenter_configuration.go index bec8266e21..eefabf2b1c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vcenter_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vcenter_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_virtual_machine.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_virtual_machine.go index 190316d9ed..c305fe6d66 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_virtual_machine.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_virtual_machine.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_virtual_machine_runtime_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_virtual_machine_runtime_info.go index 9a7bc65dfc..a522f94d96 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_virtual_machine_runtime_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_virtual_machine_runtime_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_backup_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_backup_info.go index a24f43f124..f9947e7427 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_backup_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_backup_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_backup_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_backup_info_list.go index 9ec831ac4c..1d548c0cfd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_backup_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_backup_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_backup_info_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_backup_info_relationship.go index c7abbdf565..6950b990eb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_backup_info_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_backup_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_backup_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_backup_info_response.go index 9420779109..0bf5f36fe0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_backup_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_backup_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_import_operation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_import_operation.go index ca277543d7..04c17dc71a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_import_operation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_import_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_import_operation_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_import_operation_list.go index 5ddc8922a7..d5a1747968 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_import_operation_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_import_operation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_import_operation_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_import_operation_response.go index 5d1ecc1437..63fe977ce6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_import_operation_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_import_operation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_protection_space_usage.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_protection_space_usage.go index 0944224ce9..beb07fa726 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_protection_space_usage.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_protection_space_usage.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_restore_operation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_restore_operation.go index b8e111b5a6..28372e1d28 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_restore_operation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_restore_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_restore_operation_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_restore_operation_list.go index 68b53fce45..f2a37aa893 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_restore_operation_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_restore_operation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_restore_operation_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_restore_operation_response.go index 32680e4d49..16af12df2a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_restore_operation_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_restore_operation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_snapshot_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_snapshot_info.go index 23fdf3e347..7f53a49c98 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_snapshot_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_snapshot_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_snapshot_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_snapshot_info_list.go index eea7902862..449b115495 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_snapshot_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_snapshot_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_snapshot_info_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_snapshot_info_relationship.go index df438b0d99..dbdc1cdfb8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_snapshot_info_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_snapshot_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_snapshot_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_snapshot_info_response.go index 8f0e10139f..22b8df8452 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_snapshot_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_vm_snapshot_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_volume.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_volume.go index 3fa74592a3..d680c1b6fc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_volume.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_volume.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_volume_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_volume_list.go index cedf746b7b..799901f1e7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_volume_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_volume_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_volume_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_volume_relationship.go index 132325434b..96209afea2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_volume_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_volume_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_volume_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_volume_response.go index 092c3f74ef..407915d5a5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_volume_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_volume_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_witness_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_witness_configuration.go index 8b1950a4f1..df032b8d45 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_witness_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_witness_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_witness_configuration_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_witness_configuration_list.go index 03ced8767a..46a8da8d8d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_witness_configuration_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_witness_configuration_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_witness_configuration_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_witness_configuration_response.go index ba9fc78f75..2c4012579a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_witness_configuration_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_witness_configuration_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_wwxn_prefix_range.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_wwxn_prefix_range.go index 42fbf7edf6..a520164756 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_wwxn_prefix_range.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_hyperflex_wwxn_prefix_range.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type HyperflexWwxnPrefixRange struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The end WWxN prefix of a WWPN/WWNN range in the form of 20:00:00:25:B5:XX. - EndAddr *string `json:"EndAddr,omitempty"` + EndAddr *string `json:"EndAddr,omitempty" validate:"regexp=^$|^20:00:00:25:B5:[0-9a-fA-F]{2}$"` // The start WWxN prefix of a WWPN/WWNN range in the form of 20:00:00:25:B5:XX. - StartAddr *string `json:"StartAddr,omitempty"` + StartAddr *string `json:"StartAddr,omitempty" validate:"regexp=^$|^20:00:00:25:B5:[0-9a-fA-F]{2}$"` AdditionalProperties map[string]interface{} } @@ -270,9 +270,9 @@ func (o *HyperflexWwxnPrefixRange) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The end WWxN prefix of a WWPN/WWNN range in the form of 20:00:00:25:B5:XX. - EndAddr *string `json:"EndAddr,omitempty"` + EndAddr *string `json:"EndAddr,omitempty" validate:"regexp=^$|^20:00:00:25:B5:[0-9a-fA-F]{2}$"` // The start WWxN prefix of a WWPN/WWNN range in the form of 20:00:00:25:B5:XX. - StartAddr *string `json:"StartAddr,omitempty"` + StartAddr *string `json:"StartAddr,omitempty" validate:"regexp=^$|^20:00:00:25:B5:[0-9a-fA-F]{2}$"` } varHyperflexWwxnPrefixRangeWithoutEmbeddedStruct := HyperflexWwxnPrefixRangeWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_i18n_message.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_i18n_message.go index b7d1063601..41aa71962b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_i18n_message.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_i18n_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_i18n_message_param.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_i18n_message_param.go index ab8432d1f7..1b8f4bcf75 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_i18n_message_param.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_i18n_message_param.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_connector_pack.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_connector_pack.go index 61f62090a0..c59a7d8b7f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_connector_pack.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_connector_pack.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_connector_pack_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_connector_pack_list.go index df0e74374d..94ffa9efff 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_connector_pack_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_connector_pack_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_connector_pack_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_connector_pack_relationship.go index e65489127b..fb55372edf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_connector_pack_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_connector_pack_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_connector_pack_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_connector_pack_response.go index cbacfca34b..9369ddc3bb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_connector_pack_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_connector_pack_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_custom_task_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_custom_task_info.go index 11359c3bef..e1a6d2706c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_custom_task_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_custom_task_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_custom_task_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_custom_task_info_list.go index 5d423edcd2..b14a6c894e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_custom_task_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_custom_task_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_custom_task_info_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_custom_task_info_relationship.go index 93c6797e8f..6f412d76e8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_custom_task_info_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_custom_task_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_custom_task_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_custom_task_info_response.go index 1e24b61f2f..4c3a77e7d2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_custom_task_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_custom_task_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_device_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_device_status.go index 72a58ccabb..b404b28401 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_device_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_device_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_device_status_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_device_status_list.go index 6ad3bce1df..fb856d0fc4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_device_status_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_device_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_device_status_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_device_status_relationship.go index b72372214d..b726d065c0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_device_status_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_device_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_device_status_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_device_status_response.go index 40cd63a772..85aca30015 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_device_status_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_device_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_diagnostic_messages.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_diagnostic_messages.go index a46821e9de..d19dd0f237 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_diagnostic_messages.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_diagnostic_messages.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_diagnostic_messages_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_diagnostic_messages_list.go index c0c90e3696..6acbb8dd0b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_diagnostic_messages_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_diagnostic_messages_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_diagnostic_messages_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_diagnostic_messages_response.go index f2e83556bc..89c3d34c19 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_diagnostic_messages_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_diagnostic_messages_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_license_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_license_info.go index 328792200f..cea2b6431b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_license_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_license_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_license_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_license_info_list.go index 09c5ba4695..708a5f7d5c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_license_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_license_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_license_info_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_license_info_relationship.go index 61ecd25faa..a63ae62939 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_license_info_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_license_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_license_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_license_info_response.go index 06e339f259..138caec4db 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_license_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_license_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_license_keys_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_license_keys_info.go index f6a7fb65a4..67aecd43cc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_license_keys_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_license_keys_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_license_utilization_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_license_utilization_info.go index ed927ea56f..22b06fa3a2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_license_utilization_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_license_utilization_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_most_run_tasks.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_most_run_tasks.go index 7b439abef7..bd0b88271d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_most_run_tasks.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_most_run_tasks.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_most_run_tasks_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_most_run_tasks_list.go index 13cf05f9f1..067ea3cbe7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_most_run_tasks_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_most_run_tasks_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_most_run_tasks_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_most_run_tasks_relationship.go index 5bb26de5f3..919cd7c343 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_most_run_tasks_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_most_run_tasks_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_most_run_tasks_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_most_run_tasks_response.go index 00365b0962..7b7f90237c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_most_run_tasks_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_most_run_tasks_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_service_request.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_service_request.go index 0ef193cc2e..568c03f2b8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_service_request.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_service_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_service_request_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_service_request_list.go index 22e9f198d1..4a863d0f0e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_service_request_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_service_request_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_service_request_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_service_request_response.go index c8cc34d855..4808c80f50 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_service_request_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_service_request_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_system_task_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_system_task_info.go index 7a4ff7d3d0..bf6dc71566 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_system_task_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_system_task_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_system_task_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_system_task_info_list.go index 5a00d336a5..24cfeb5964 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_system_task_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_system_task_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_system_task_info_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_system_task_info_relationship.go index aaad8f0e9c..7168c8c086 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_system_task_info_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_system_task_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_system_task_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_system_task_info_response.go index 15923bbffd..48e25a9f1c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_system_task_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_system_task_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_info.go index 53bff758dd..b419b736d2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_info_list.go index 9187da2ec8..165cde3bfd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_info_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_info_relationship.go index bbdeafa26b..7d8278e2db 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_info_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_info_response.go index 7bee2253fd..aa3e220b3d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_managed_infra.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_managed_infra.go index 6e936f2a49..096dcb36f3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_managed_infra.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_managed_infra.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_managed_infra_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_managed_infra_list.go index 57243d590b..2a3204df39 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_managed_infra_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_managed_infra_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_managed_infra_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_managed_infra_relationship.go index d42155aab2..678afc0059 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_managed_infra_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_managed_infra_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_managed_infra_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_managed_infra_response.go index 594f7ba52b..7e8e28f198 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_managed_infra_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_managed_infra_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_messages.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_messages.go index 470621f4d4..d91024d362 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_messages.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_messages.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_messages_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_messages_list.go index 4e471e9a19..677aeec0fa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_messages_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_messages_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_messages_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_messages_response.go index 6fb389ceee..4d83a5a346 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_messages_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_ucsd_messages_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_workflow_steps.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_workflow_steps.go index daa52dec60..2eff4a4d2d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_workflow_steps.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iaas_workflow_steps.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account.go index cd1257ba9e..c66a629165 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type IamAccount struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of the Intersight account. By default, name is same as the MoID of the account. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9\\\\-]{0,61}[a-zA-Z0-9]$"` Regions []string `json:"Regions,omitempty"` // Indicates if the account is prone to lockout as it has only a single Account Administrator. An account is prone to lockout if it has only one configured Account Administrator and no user groups configured that can grant Account Administrator role to dynamic users. SingleAdminLockout *bool `json:"SingleAdminLockout,omitempty"` @@ -827,7 +827,7 @@ func (o *IamAccount) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of the Intersight account. By default, name is same as the MoID of the account. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9\\\\-]{0,61}[a-zA-Z0-9]$"` Regions []string `json:"Regions,omitempty"` // Indicates if the account is prone to lockout as it has only a single Account Administrator. An account is prone to lockout if it has only one configured Account Administrator and no user groups configured that can grant Account Administrator role to dynamic users. SingleAdminLockout *bool `json:"SingleAdminLockout,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_experience.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_experience.go index 1f068d1d8b..8bfd05cc42 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_experience.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_experience.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_experience_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_experience_list.go index b3e99a6285..0a99002a8b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_experience_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_experience_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_experience_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_experience_response.go index 34a42afe27..2668f7e324 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_experience_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_experience_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_list.go index 91c0c7e0f4..8a18263918 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_permissions.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_permissions.go index 35883cc248..d1c87b904b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_permissions.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_permissions.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_relationship.go index d1fab71ba8..e5a86edd49 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_response.go index 88a8650350..c1d49548aa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_tags.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_tags.go index af3bbb68ad..570f898ea7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_tags.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_account_tags.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_api_key.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_api_key.go index f7a8991150..13195c42fc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_api_key.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_api_key.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_api_key_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_api_key_list.go index 2362596137..72ce7804cc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_api_key_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_api_key_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_api_key_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_api_key_relationship.go index 9ab432ec24..68fe9fa0d3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_api_key_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_api_key_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_api_key_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_api_key_response.go index dc61c28c2a..4ac76d4d0f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_api_key_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_api_key_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_app_registration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_app_registration.go index 6f67a15112..f4547b50ef 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_app_registration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_app_registration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_app_registration_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_app_registration_list.go index 85e4798db0..9a6a202c69 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_app_registration_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_app_registration_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_app_registration_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_app_registration_relationship.go index 1f28450d6c..1e9a15680f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_app_registration_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_app_registration_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_app_registration_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_app_registration_response.go index 20139a57d6..6ae5ed2ec7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_app_registration_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_app_registration_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_banner_message.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_banner_message.go index e477665ad3..570e0ee745 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_banner_message.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_banner_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_banner_message_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_banner_message_list.go index 7fe55a0d84..01c0be12a4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_banner_message_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_banner_message_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_banner_message_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_banner_message_response.go index b00a6620b1..9400ac0cc6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_banner_message_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_banner_message_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate.go index 874141433d..25c216a915 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_list.go index ff836318f5..87eec60b90 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_relationship.go index d9d62a74b6..2cf1d99e54 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_request.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_request.go index ce48f3ee41..7a2ab45d2b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_request.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_request_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_request_list.go index 2b22230d6b..3604d9e434 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_request_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_request_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_request_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_request_relationship.go index aedfd8c25a..6ac1b0c900 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_request_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_request_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_request_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_request_response.go index 37c0da81ef..d9964f5837 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_request_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_request_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_response.go index 6a2b28d833..7af80b0ab4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_certificate_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_client_meta.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_client_meta.go index fd0b6aabbb..fe3a6e8450 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_client_meta.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_client_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_group.go index 0cdab95894..8da70cae47 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_group_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_group_list.go index d22be3f07c..9f890ca08b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_group_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_group_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_group_relationship.go index 3a58a519d2..726834a3c3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_group_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_group_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_group_response.go index c04416ba8b..dcf8b90a26 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_group_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_name_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_name_info.go index e3ee52bd8b..2deec93a8e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_name_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_name_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -32,7 +32,7 @@ type IamDomainNameInfo struct { // Regenerate TXT record and validate TXT record. * `generate` - Generate TXT record for domain name ownership validation. * `verify` - Verify TXT record for domain name ownership validation. Action *string `json:"Action,omitempty"` // Email domain name. When a user enters an email during login in the Intersight home page, the IdP is picked by matching this domain name with the email domain name for authentication. - DomainName *string `json:"DomainName,omitempty"` + DomainName *string `json:"DomainName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$"` FailureDetails NullableIamFailureDetails `json:"FailureDetails,omitempty"` // Expiration time of TXT Record. RecordExpiryTime *time.Time `json:"RecordExpiryTime,omitempty"` @@ -482,7 +482,7 @@ func (o *IamDomainNameInfo) UnmarshalJSON(data []byte) (err error) { // Regenerate TXT record and validate TXT record. * `generate` - Generate TXT record for domain name ownership validation. * `verify` - Verify TXT record for domain name ownership validation. Action *string `json:"Action,omitempty"` // Email domain name. When a user enters an email during login in the Intersight home page, the IdP is picked by matching this domain name with the email domain name for authentication. - DomainName *string `json:"DomainName,omitempty"` + DomainName *string `json:"DomainName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$"` FailureDetails NullableIamFailureDetails `json:"FailureDetails,omitempty"` // Expiration time of TXT Record. RecordExpiryTime *time.Time `json:"RecordExpiryTime,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_name_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_name_info_list.go index 43d18837a8..20e69122f4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_name_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_name_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_name_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_name_info_response.go index 463153617b..45a677c3bb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_name_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_domain_name_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_password_properties.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_password_properties.go index 5574e3e896..fae32a60a7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_password_properties.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_password_properties.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_privilege.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_privilege.go index cda649e84d..7b3df3c528 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_privilege.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_privilege.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_privilege_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_privilege_list.go index 87d41fa002..6c1af9d0fc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_privilege_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_privilege_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_privilege_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_privilege_relationship.go index a5bf48954f..669adb36be 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_privilege_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_privilege_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_privilege_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_privilege_response.go index 1db0600e94..32c9480621 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_privilege_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_privilege_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_role.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_role.go index 1489b5831f..59342a9ee1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_role.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_role_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_role_list.go index 0bd48d6a9c..5d6826d919 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_role_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_role_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_role_relationship.go index 6318b0f614..1a31e7ae98 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_role_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_role_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_role_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_role_response.go index 7dbc40f095..30f44f5539 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_role_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user.go index 35afc1f525..ac12e43616 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type IamEndPointUser struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of the user to be created on the endpoint. It can be any string that adheres to the following constraints. It can have alphanumeric characters, dots, underscores and hyphen. It cannot be more than 16 characters. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\._\\\\-]+$"` // An array of relationships to iamEndPointUserRole resources. EndPointUserRole []IamEndPointUserRoleRelationship `json:"EndPointUserRole,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` @@ -318,7 +318,7 @@ func (o *IamEndPointUser) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of the user to be created on the endpoint. It can be any string that adheres to the following constraints. It can have alphanumeric characters, dots, underscores and hyphen. It cannot be more than 16 characters. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\._\\\\-]+$"` // An array of relationships to iamEndPointUserRole resources. EndPointUserRole []IamEndPointUserRoleRelationship `json:"EndPointUserRole,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_inventory.go index 66cb9a951b..c94b856b74 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type IamEndPointUserInventory struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of the user to be created on the endpoint. It can be any string that adheres to the following constraints. It can have alphanumeric characters, dots, underscores and hyphen. It cannot be more than 16 characters. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\._\\\\-]+$"` // UserId for the end point user. UserId *string `json:"UserId,omitempty"` // An array of relationships to iamEndPointUserRoleInventory resources. @@ -355,7 +355,7 @@ func (o *IamEndPointUserInventory) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of the user to be created on the endpoint. It can be any string that adheres to the following constraints. It can have alphanumeric characters, dots, underscores and hyphen. It cannot be more than 16 characters. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\._\\\\-]+$"` // UserId for the end point user. UserId *string `json:"UserId,omitempty"` // An array of relationships to iamEndPointUserRoleInventory resources. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_inventory_list.go index 186477d142..c8ba5efe3d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_inventory_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_inventory_relationship.go index 975570b70c..bad2bff219 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_inventory_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_inventory_response.go index 3d3e374bec..4b2f166614 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_list.go index 6f5904be13..2aeb144c09 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy.go index 5f8f739aba..8a4e615584 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_inventory.go index 12a57d8be5..37c90cde32 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_inventory_list.go index 44c9f9075b..61d880a657 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_inventory_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_inventory_relationship.go index 062c59b48c..940d19450f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_inventory_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_inventory_response.go index 59c07deb16..581a54d3db 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_list.go index 3143c287cb..2e811c692a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_relationship.go index 2741e1a027..c8ce904660 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_response.go index 4b390dca2d..220865c70a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_relationship.go index 147535938b..f4df3a2885 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_response.go index 01b0e18924..0acd1528ee 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role.go index cba4d89723..b1e2b74ca9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type IamEndPointUserRole struct { // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password must have a minimum of 8 and a maximum of 127 characters. For servers with IPMI user role enabled, the maximum length is limited to 20 characters. When strong password is enabled, must satisfy below requirements: A. The password must not contain the User's Name. B. The password must contain characters from three of the following four categories. 1) English uppercase characters (A through Z). 2) English lowercase characters (a through z). 3) Base 10 digits (0 through 9). 4) Non-alphabetic characters (! , @, #, $, %, ^, &, *, -, _, +, =). - Password *string `json:"Password,omitempty"` + Password *string `json:"Password,omitempty" validate:"regexp=^[a-zA-Z0-9!@#$%^&\\\\*+-_=]+$"` // An array of relationships to iamEndPointRole resources. EndPointRole []IamEndPointRoleRelationship `json:"EndPointRole,omitempty"` EndPointUser NullableIamEndPointUserRelationship `json:"EndPointUser,omitempty"` @@ -482,7 +482,7 @@ func (o *IamEndPointUserRole) UnmarshalJSON(data []byte) (err error) { // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password must have a minimum of 8 and a maximum of 127 characters. For servers with IPMI user role enabled, the maximum length is limited to 20 characters. When strong password is enabled, must satisfy below requirements: A. The password must not contain the User's Name. B. The password must contain characters from three of the following four categories. 1) English uppercase characters (A through Z). 2) English lowercase characters (a through z). 3) Base 10 digits (0 through 9). 4) Non-alphabetic characters (! , @, #, $, %, ^, &, *, -, _, +, =). - Password *string `json:"Password,omitempty"` + Password *string `json:"Password,omitempty" validate:"regexp=^[a-zA-Z0-9!@#$%^&\\\\*+-_=]+$"` // An array of relationships to iamEndPointRole resources. EndPointRole []IamEndPointRoleRelationship `json:"EndPointRole,omitempty"` EndPointUser NullableIamEndPointUserRelationship `json:"EndPointUser,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_inventory.go index b6fcefd49f..5255f023e6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type IamEndPointUserRoleInventory struct { // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password must have a minimum of 8 and a maximum of 127 characters. For servers with IPMI user role enabled, the maximum length is limited to 20 characters. When strong password is enabled, must satisfy below requirements: A. The password must not contain the User's Name. B. The password must contain characters from three of the following four categories. 1) English uppercase characters (A through Z). 2) English lowercase characters (a through z). 3) Base 10 digits (0 through 9). 4) Non-alphabetic characters (! , @, #, $, %, ^, &, *, -, _, +, =). - Password *string `json:"Password,omitempty"` + Password *string `json:"Password,omitempty" validate:"regexp=^[a-zA-Z0-9!@#$%^&\\\\*+-_=]+$"` // An array of relationships to iamEndPointRole resources. EndPointRole []IamEndPointRoleRelationship `json:"EndPointRole,omitempty"` EndPointUser NullableIamEndPointUserInventoryRelationship `json:"EndPointUser,omitempty"` @@ -482,7 +482,7 @@ func (o *IamEndPointUserRoleInventory) UnmarshalJSON(data []byte) (err error) { // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password must have a minimum of 8 and a maximum of 127 characters. For servers with IPMI user role enabled, the maximum length is limited to 20 characters. When strong password is enabled, must satisfy below requirements: A. The password must not contain the User's Name. B. The password must contain characters from three of the following four categories. 1) English uppercase characters (A through Z). 2) English lowercase characters (a through z). 3) Base 10 digits (0 through 9). 4) Non-alphabetic characters (! , @, #, $, %, ^, &, *, -, _, +, =). - Password *string `json:"Password,omitempty"` + Password *string `json:"Password,omitempty" validate:"regexp=^[a-zA-Z0-9!@#$%^&\\\\*+-_=]+$"` // An array of relationships to iamEndPointRole resources. EndPointRole []IamEndPointRoleRelationship `json:"EndPointRole,omitempty"` EndPointUser NullableIamEndPointUserInventoryRelationship `json:"EndPointUser,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_inventory_list.go index 936ebbcce8..5270a2f5b9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_inventory_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_inventory_relationship.go index 84f5dc5344..3c3dda4256 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_inventory_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_inventory_response.go index 0ff7e49e83..9297547aa7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_list.go index 286164c5ee..12991793a4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_relationship.go index 65faf45004..14281fd873 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_response.go index e1b4cb1d0a..b0f8aef927 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_end_point_user_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_failure_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_failure_details.go index e3760b39b3..463b559aa8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_failure_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_failure_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_feature_definition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_feature_definition.go index 77ee339f71..b6d6372df5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_feature_definition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_feature_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_group_permission_to_roles.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_group_permission_to_roles.go index 515fa48eb9..64dad2f328 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_group_permission_to_roles.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_group_permission_to_roles.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp.go index 2b8f520070..b54e445f19 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,7 +30,7 @@ type IamIdp struct { ObjectType string `json:"ObjectType"` // Email domain name of the user for this IdP. When a user enters an email during login in the Intersight home page, the IdP is picked by matching this domain name with the email domain name for authentication. // Deprecated - DomainName *string `json:"DomainName,omitempty"` + DomainName *string `json:"DomainName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$"` DomainNames []string `json:"DomainNames,omitempty"` // Setting that indicates whether 'Single Logout (SLO)' has been enabled for this IdP. EnableSingleLogout *bool `json:"EnableSingleLogout,omitempty"` @@ -794,7 +794,7 @@ func (o *IamIdp) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` // Email domain name of the user for this IdP. When a user enters an email during login in the Intersight home page, the IdP is picked by matching this domain name with the email domain name for authentication. // Deprecated - DomainName *string `json:"DomainName,omitempty"` + DomainName *string `json:"DomainName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$"` DomainNames []string `json:"DomainNames,omitempty"` // Setting that indicates whether 'Single Logout (SLO)' has been enabled for this IdP. EnableSingleLogout *bool `json:"EnableSingleLogout,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_list.go index f85cbdbd0e..f2fcb5d577 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_reference.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_reference.go index c4f36aa489..b560922797 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_reference.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_reference.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_reference_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_reference_list.go index d697b16954..375382113e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_reference_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_reference_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_reference_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_reference_relationship.go index b7e1caa2d4..3db3ec0250 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_reference_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_reference_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_reference_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_reference_response.go index 6e3544c6d3..b259e0de26 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_reference_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_reference_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_relationship.go index bdad639100..33c59daac2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_response.go index 1ddcbc3d11..3082959e0a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_idp_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_access_management.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_access_management.go index 2235d9e36e..45309b78eb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_access_management.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_access_management.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_access_management_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_access_management_list.go index 6a8de2eada..0a5e98de72 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_access_management_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_access_management_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_access_management_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_access_management_relationship.go index bbe8f40098..80eda239b0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_access_management_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_access_management_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_access_management_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_access_management_response.go index dd9b43e7bf..9acb8f3e14 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_access_management_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_access_management_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_address.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_address.go index 8b0411fb5b..4670c5c52c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_address.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_address.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_address_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_address_list.go index 0a4a80b7ee..cdf42e74c2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_address_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_address_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_address_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_address_relationship.go index 13032d0fdb..7bee8f69fd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_address_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_address_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_address_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_address_response.go index 800f496ee5..736c0c9a36 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_address_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ip_address_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_base_properties.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_base_properties.go index d3f2cb26cf..4ed18522e8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_base_properties.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_base_properties.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type IamLdapBaseProperties struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Role and locale information of the user. - Attribute *string `json:"Attribute,omitempty"` + Attribute *string `json:"Attribute,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9\\\\-\\\\.]*[a-zA-Z0-9\\\\-]$"` // Base Distinguished Name (DN). Starting point from where server will search for users and groups. BaseDn *string `json:"BaseDn,omitempty"` // Distinguished Name (DN) of the user, that is used to authenticate against LDAP servers. @@ -37,7 +37,7 @@ type IamLdapBaseProperties struct { // Authentication method to access LDAP servers. * `LoginCredentials` - Requires the user credentials. If the bind process fails, then user is denied access. * `Anonymous` - Requires no username and password. If this option is selected and the LDAP server is configured for Anonymous logins, then the user gains access. * `ConfiguredCredentials` - Requires a known set of credentials to be specified for the initial bind process. If the initial bind process succeeds, then the distinguished name (DN) of the user name is queried and re-used for the re-binding process. If the re-binding process fails, then the user is denied access. BindMethod *string `json:"BindMethod,omitempty"` // The IPv4 domain that all users must be in. - Domain *string `json:"Domain,omitempty"` + Domain *string `json:"Domain,omitempty" validate:"regexp=^$|^(([a-zA-Z0-9])|([a-zA-Z0-9][a-zA-Z0-9\\\\.\\\\-]*[a-zA-Z0-9]))$"` // If enabled, the endpoint encrypts all information it sends to the LDAP server. EnableEncryption *bool `json:"EnableEncryption,omitempty"` // If enabled, user authorization is also done at the group level for LDAP users not in the local user database. @@ -45,15 +45,15 @@ type IamLdapBaseProperties struct { // If enabled, an extended search walks the chain of ancestry all the way to the root and returns all the groups and subgroups, each of those groups belong to recursively. EnableNestedGroupSearch *bool `json:"EnableNestedGroupSearch,omitempty"` // Criteria to identify entries in search requests. - Filter *string `json:"Filter,omitempty"` + Filter *string `json:"Filter,omitempty" validate:"regexp=^$|^[a-zA-Z0-9(][a-zA-Z0-9_#@$%&\\\\-\\\\^|()*=:!,.]*[a-zA-Z0-9\\\\-)]$"` // Groups to which an LDAP entry belongs. - GroupAttribute *string `json:"GroupAttribute,omitempty"` + GroupAttribute *string `json:"GroupAttribute,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9_#@$%&\\\\-\\\\^]*[a-zA-Z0-9\\\\-]$"` // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // Search depth to look for a nested LDAP group in an LDAP group map. NestedGroupSearchDepth *int64 `json:"NestedGroupSearchDepth,omitempty"` // The password of the user for initial bind process. It can be any string that adheres to the following constraints. It can have character except spaces, tabs, line breaks. It cannot be more than 254 characters. - Password *string `json:"Password,omitempty"` + Password *string `json:"Password,omitempty" validate:"regexp=^[\\\\S+]{0,254}$"` // LDAP authentication timeout duration, in seconds. Timeout *int64 `json:"Timeout,omitempty"` AdditionalProperties map[string]interface{} @@ -730,7 +730,7 @@ func (o *IamLdapBaseProperties) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Role and locale information of the user. - Attribute *string `json:"Attribute,omitempty"` + Attribute *string `json:"Attribute,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9\\\\-\\\\.]*[a-zA-Z0-9\\\\-]$"` // Base Distinguished Name (DN). Starting point from where server will search for users and groups. BaseDn *string `json:"BaseDn,omitempty"` // Distinguished Name (DN) of the user, that is used to authenticate against LDAP servers. @@ -738,7 +738,7 @@ func (o *IamLdapBaseProperties) UnmarshalJSON(data []byte) (err error) { // Authentication method to access LDAP servers. * `LoginCredentials` - Requires the user credentials. If the bind process fails, then user is denied access. * `Anonymous` - Requires no username and password. If this option is selected and the LDAP server is configured for Anonymous logins, then the user gains access. * `ConfiguredCredentials` - Requires a known set of credentials to be specified for the initial bind process. If the initial bind process succeeds, then the distinguished name (DN) of the user name is queried and re-used for the re-binding process. If the re-binding process fails, then the user is denied access. BindMethod *string `json:"BindMethod,omitempty"` // The IPv4 domain that all users must be in. - Domain *string `json:"Domain,omitempty"` + Domain *string `json:"Domain,omitempty" validate:"regexp=^$|^(([a-zA-Z0-9])|([a-zA-Z0-9][a-zA-Z0-9\\\\.\\\\-]*[a-zA-Z0-9]))$"` // If enabled, the endpoint encrypts all information it sends to the LDAP server. EnableEncryption *bool `json:"EnableEncryption,omitempty"` // If enabled, user authorization is also done at the group level for LDAP users not in the local user database. @@ -746,15 +746,15 @@ func (o *IamLdapBaseProperties) UnmarshalJSON(data []byte) (err error) { // If enabled, an extended search walks the chain of ancestry all the way to the root and returns all the groups and subgroups, each of those groups belong to recursively. EnableNestedGroupSearch *bool `json:"EnableNestedGroupSearch,omitempty"` // Criteria to identify entries in search requests. - Filter *string `json:"Filter,omitempty"` + Filter *string `json:"Filter,omitempty" validate:"regexp=^$|^[a-zA-Z0-9(][a-zA-Z0-9_#@$%&\\\\-\\\\^|()*=:!,.]*[a-zA-Z0-9\\\\-)]$"` // Groups to which an LDAP entry belongs. - GroupAttribute *string `json:"GroupAttribute,omitempty"` + GroupAttribute *string `json:"GroupAttribute,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9_#@$%&\\\\-\\\\^]*[a-zA-Z0-9\\\\-]$"` // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // Search depth to look for a nested LDAP group in an LDAP group map. NestedGroupSearchDepth *int64 `json:"NestedGroupSearchDepth,omitempty"` // The password of the user for initial bind process. It can be any string that adheres to the following constraints. It can have character except spaces, tabs, line breaks. It cannot be more than 254 characters. - Password *string `json:"Password,omitempty"` + Password *string `json:"Password,omitempty" validate:"regexp=^[\\\\S+]{0,254}$"` // LDAP authentication timeout duration, in seconds. Timeout *int64 `json:"Timeout,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_config_params.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_config_params.go index 5776a3734e..e8969c44bc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_config_params.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_config_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_config_params_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_config_params_list.go index 85871c0208..3afb74dc21 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_config_params_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_config_params_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_config_params_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_config_params_response.go index 5b552bea04..0f2e49c522 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_config_params_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_config_params_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_dns_parameters.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_dns_parameters.go index 4996c028b6..9ddd204f30 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_dns_parameters.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_dns_parameters.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type IamLdapDnsParameters struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Domain name that acts as a source for a DNS query. - SearchDomain *string `json:"SearchDomain,omitempty"` + SearchDomain *string `json:"SearchDomain,omitempty" validate:"regexp=^$|^(([a-zA-Z0-9])|([a-zA-Z0-9][a-zA-Z0-9\\\\.\\\\-]*[a-zA-Z0-9]))$"` // Forest name that acts as a source for a DNS query. - SearchForest *string `json:"SearchForest,omitempty"` + SearchForest *string `json:"SearchForest,omitempty" validate:"regexp=^$|^(([a-zA-Z0-9])|([a-zA-Z0-9][a-zA-Z0-9\\\\.\\\\-]*[a-zA-Z0-9]))$"` // Source of the domain name used for the DNS SRV request. * `Extracted` - The domain name extracted-domain from the login ID. * `Configured` - The configured-search domain. * `ConfiguredExtracted` - The domain name extracted from the login ID than the configured-search domain. Source *string `json:"Source,omitempty"` AdditionalProperties map[string]interface{} @@ -311,9 +311,9 @@ func (o *IamLdapDnsParameters) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Domain name that acts as a source for a DNS query. - SearchDomain *string `json:"SearchDomain,omitempty"` + SearchDomain *string `json:"SearchDomain,omitempty" validate:"regexp=^$|^(([a-zA-Z0-9])|([a-zA-Z0-9][a-zA-Z0-9\\\\.\\\\-]*[a-zA-Z0-9]))$"` // Forest name that acts as a source for a DNS query. - SearchForest *string `json:"SearchForest,omitempty"` + SearchForest *string `json:"SearchForest,omitempty" validate:"regexp=^$|^(([a-zA-Z0-9])|([a-zA-Z0-9][a-zA-Z0-9\\\\.\\\\-]*[a-zA-Z0-9]))$"` // Source of the domain name used for the DNS SRV request. * `Extracted` - The domain name extracted-domain from the login ID. * `Configured` - The configured-search domain. * `ConfiguredExtracted` - The domain name extracted from the login ID than the configured-search domain. Source *string `json:"Source,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_group.go index c62b97a3b8..28a996a324 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type IamLdapGroup struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // LDAP server domain the Group resides in. - Domain *string `json:"Domain,omitempty"` + Domain *string `json:"Domain,omitempty" validate:"regexp=^[a-zA-Z0-9-]+(.[a-zA-Z0-9-]+)*$"` // LDAP Group name in the LDAP server database. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^([^+\\\\-][a-zA-Z0-9=!#$%()*+,-.:;@ _{|}~?&]*)$"` // An array of relationships to iamEndPointRole resources. EndPointRole []IamEndPointRoleRelationship `json:"EndPointRole,omitempty"` LdapPolicy NullableIamLdapPolicyRelationship `json:"LdapPolicy,omitempty"` @@ -355,9 +355,9 @@ func (o *IamLdapGroup) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // LDAP server domain the Group resides in. - Domain *string `json:"Domain,omitempty"` + Domain *string `json:"Domain,omitempty" validate:"regexp=^[a-zA-Z0-9-]+(.[a-zA-Z0-9-]+)*$"` // LDAP Group name in the LDAP server database. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^([^+\\\\-][a-zA-Z0-9=!#$%()*+,-.:;@ _{|}~?&]*)$"` // An array of relationships to iamEndPointRole resources. EndPointRole []IamEndPointRoleRelationship `json:"EndPointRole,omitempty"` LdapPolicy NullableIamLdapPolicyRelationship `json:"LdapPolicy,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_group_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_group_list.go index b616e225c6..c6651667c5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_group_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_group_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_group_relationship.go index 7b5fe830d5..7b57605267 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_group_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_group_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_group_response.go index 526874727e..82f8086ab8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_group_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_policy.go index 585da946f0..345aa938a3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_policy_list.go index bbe5731ee4..ba7d7397a8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_policy_relationship.go index bb02ebb55f..a6c73a8577 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_policy_response.go index b89fa6d2de..52f4d7808b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_provider.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_provider.go index 86ecdb3e7f..e308ed5ca3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_provider.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_provider.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_provider_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_provider_list.go index 6171a0528a..26fced23ad 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_provider_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_provider_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_provider_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_provider_relationship.go index f95ed8b6a7..2bc036eef6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_provider_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_provider_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_provider_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_provider_response.go index 475111b06e..eb0106e27e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_provider_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_ldap_provider_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password.go index fb25cf77f4..0fc29dd8c4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password_list.go index d3cdabe57a..b0f5f10471 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password_policy.go index 2e08d02c7d..2dee6c8e11 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password_policy_list.go index 86647402fc..70e0c7e8ce 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password_policy_response.go index 729b3d883b..cf51e921da 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password_relationship.go index 39e5b58b91..94fd79573e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password_response.go index 1dba9a7ac9..20004e3db2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_local_user_password_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_o_auth_token.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_o_auth_token.go index b9cdb0db0b..448618f86b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_o_auth_token.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_o_auth_token.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_o_auth_token_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_o_auth_token_list.go index 03cbfdf452..23708f9113 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_o_auth_token_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_o_auth_token_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_o_auth_token_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_o_auth_token_relationship.go index 3e0dc379f8..7941a7fe3c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_o_auth_token_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_o_auth_token_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_o_auth_token_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_o_auth_token_response.go index ea16145d2f..9b568a3f36 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_o_auth_token_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_o_auth_token_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_permission.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_permission.go index 86d88e02b0..831e3d8676 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_permission.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_permission.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type IamPermission struct { // The informative description about each permission. Description *string `json:"Description,omitempty"` // The name of the permission which has to be granted to user. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_ .:-]{1,64}$"` Account NullableIamAccountRelationship `json:"Account,omitempty"` // An array of relationships to iamEndPointRole resources. EndPointRoles []IamEndPointRoleRelationship `json:"EndPointRoles,omitempty"` @@ -594,7 +594,7 @@ func (o *IamPermission) UnmarshalJSON(data []byte) (err error) { // The informative description about each permission. Description *string `json:"Description,omitempty"` // The name of the permission which has to be granted to user. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_ .:-]{1,64}$"` Account NullableIamAccountRelationship `json:"Account,omitempty"` // An array of relationships to iamEndPointRole resources. EndPointRoles []IamEndPointRoleRelationship `json:"EndPointRoles,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_permission_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_permission_list.go index 6cd2a22b15..6ac91ac0e0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_permission_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_permission_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_permission_reference.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_permission_reference.go index 1d94811e85..74154e3014 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_permission_reference.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_permission_reference.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_permission_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_permission_relationship.go index 304f969a1a..191b5478aa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_permission_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_permission_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_permission_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_permission_response.go index 0214f105cc..0f6e57a9d6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_permission_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_permission_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_permission_to_roles.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_permission_to_roles.go index 188318328a..7aea75fdd8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_permission_to_roles.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_permission_to_roles.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_private_key_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_private_key_spec.go index a2fd3d7298..d9aa55666d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_private_key_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_private_key_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_private_key_spec_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_private_key_spec_list.go index fc3b6918dc..d56e1a9b57 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_private_key_spec_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_private_key_spec_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_private_key_spec_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_private_key_spec_relationship.go index cb4d9e9ed9..ad838d2e1a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_private_key_spec_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_private_key_spec_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_private_key_spec_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_private_key_spec_response.go index 6837317fa7..24d89fae5c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_private_key_spec_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_private_key_spec_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege.go index 258f19afb1..4cfc84a4e3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_list.go index 04941207dd..16b4f66c8a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_relationship.go index 8f5b99cccc..9c8d0ea1bc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_response.go index 88a5bbf541..32bbbe73df 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_set.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_set.go index 232abc6690..b12ad4ce7a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_set.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_set.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type IamPrivilegeSet struct { // Description of the privilege set. Description *string `json:"Description,omitempty"` // Name of the privilege set. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_ .:-]{1,64}$"` PrivilegeNames []string `json:"PrivilegeNames,omitempty"` Account NullableIamAccountRelationship `json:"Account,omitempty"` // An array of relationships to iamPrivilegeSet resources. @@ -479,7 +479,7 @@ func (o *IamPrivilegeSet) UnmarshalJSON(data []byte) (err error) { // Description of the privilege set. Description *string `json:"Description,omitempty"` // Name of the privilege set. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_ .:-]{1,64}$"` PrivilegeNames []string `json:"PrivilegeNames,omitempty"` Account NullableIamAccountRelationship `json:"Account,omitempty"` // An array of relationships to iamPrivilegeSet resources. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_set_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_set_list.go index 2eeeca34de..bd3beda914 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_set_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_set_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_set_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_set_relationship.go index aaceafdf2a..1c2e71ec6a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_set_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_set_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_set_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_set_response.go index c911334301..fc7495c4bb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_set_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_privilege_set_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_qualifier.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_qualifier.go index a5a1484142..80aa1bb94f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_qualifier.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_qualifier.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_qualifier_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_qualifier_list.go index 6619c64bfb..a40a0af2af 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_qualifier_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_qualifier_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_qualifier_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_qualifier_relationship.go index c37cabe2d3..6aff6360ba 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_qualifier_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_qualifier_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_qualifier_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_qualifier_response.go index 06b8f3ad46..a768abe0de 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_qualifier_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_qualifier_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_limits.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_limits.go index 10aa70a557..94ace8037c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_limits.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_limits.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_limits_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_limits_list.go index f2a3fea1d5..6c466852cb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_limits_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_limits_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_limits_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_limits_relationship.go index 3326b7dfb5..5989efa6a2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_limits_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_limits_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_limits_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_limits_response.go index fc8974d97c..d9815c408b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_limits_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_limits_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_permission.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_permission.go index 02a6f446de..4b41fa2888 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_permission.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_permission.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_permission_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_permission_list.go index b1afc3136c..2f52b4d87c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_permission_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_permission_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_permission_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_permission_relationship.go index 1b3e296972..997ed2feed 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_permission_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_permission_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_permission_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_permission_response.go index 6995ab8509..cf8e69ae6a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_permission_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_permission_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_role.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_role.go index 7ec28ef87d..7086734401 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_role.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_roles.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_roles.go index 1bb9058c18..aeccbad03d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_roles.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_roles.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_roles_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_roles_list.go index aaf07a0ce3..4fe3fddbe3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_roles_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_roles_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_roles_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_roles_relationship.go index e0d9e51402..56a24b81d7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_roles_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_roles_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_roles_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_roles_response.go index 619b2a6b08..b29edbf3ff 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_roles_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_resource_roles_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_role.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_role.go index bab34625c4..9f2e7da496 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_role.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_role.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type IamRole struct { // Informative description about each role. Description *string `json:"Description,omitempty"` // The name of the role which has to be granted to user. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_ .:-]{1,64}$"` PrivilegeNames []string `json:"PrivilegeNames,omitempty"` Account NullableIamAccountRelationship `json:"Account,omitempty"` // An array of relationships to iamPrivilegeSet resources. @@ -441,7 +441,7 @@ func (o *IamRole) UnmarshalJSON(data []byte) (err error) { // Informative description about each role. Description *string `json:"Description,omitempty"` // The name of the role which has to be granted to user. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_ .:-]{1,64}$"` PrivilegeNames []string `json:"PrivilegeNames,omitempty"` Account NullableIamAccountRelationship `json:"Account,omitempty"` // An array of relationships to iamPrivilegeSet resources. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_role_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_role_list.go index 1b2f59eba4..60ba9c4aec 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_role_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_role_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_role_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_role_relationship.go index 63a88ff785..ffcf6edc57 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_role_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_role_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_role_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_role_response.go index edfb09a09a..7146e0aa8f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_role_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_role_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_rule.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_rule.go index 8258209e25..af64c1454f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_rule.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_rule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_saml_sp_connection.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_saml_sp_connection.go index ceb2c9a26d..3983396b08 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_saml_sp_connection.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_saml_sp_connection.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_security_context.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_security_context.go index 7852eb34fc..84a17c1d08 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_security_context.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_security_context.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_security_holder.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_security_holder.go index 498435b0f3..aeef52a4c0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_security_holder.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_security_holder.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_security_holder_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_security_holder_list.go index 501e697c49..4be74f3357 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_security_holder_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_security_holder_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_security_holder_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_security_holder_relationship.go index cd9ea1452e..05d7859bea 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_security_holder_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_security_holder_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_security_holder_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_security_holder_response.go index 78b9470f01..21aecab8bf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_security_holder_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_security_holder_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_service_provider.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_service_provider.go index 9b26084d88..aa3811bfb8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_service_provider.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_service_provider.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_service_provider_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_service_provider_list.go index 1ee9d1100e..e41c976c2a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_service_provider_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_service_provider_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_service_provider_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_service_provider_relationship.go index 4d8f0f9f94..739fdd9158 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_service_provider_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_service_provider_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_service_provider_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_service_provider_response.go index 811a4bf506..1c325e66b7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_service_provider_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_service_provider_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session.go index ad7b8f3060..280723e81f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_limits.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_limits.go index 0eb53325c8..55afb16d14 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_limits.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_limits.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_limits_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_limits_list.go index 394cbab161..fcff470705 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_limits_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_limits_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_limits_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_limits_relationship.go index 01e25a4446..fc00dcd2a6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_limits_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_limits_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_limits_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_limits_response.go index 6050550c7f..beba028a0c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_limits_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_limits_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_list.go index 6267f87d1f..0fce3df9c4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_relationship.go index 8b2ec716e4..95d31f01d0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_response.go index 62cc177ae1..3d5a3f19f9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_session_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_sharing_rule.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_sharing_rule.go index 11e5dcc89f..cfb478f3ce 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_sharing_rule.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_sharing_rule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_sharing_rule_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_sharing_rule_list.go index 4eb25da6f9..c053d366a3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_sharing_rule_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_sharing_rule_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_sharing_rule_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_sharing_rule_relationship.go index 3b0d1adcb5..acd84e90b1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_sharing_rule_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_sharing_rule_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_sharing_rule_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_sharing_rule_response.go index 8c58d9ea8e..9a4cdcd720 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_sharing_rule_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_sharing_rule_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_sso_session_attributes.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_sso_session_attributes.go index 2691bbe5bc..e481befeaf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_sso_session_attributes.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_sso_session_attributes.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_system.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_system.go index a70c655c6e..a69fa28e1e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_system.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_system.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_system_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_system_list.go index 00f54dc01b..4a61174586 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_system_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_system_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_system_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_system_relationship.go index fdc16c6db9..6bcc60c239 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_system_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_system_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_system_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_system_response.go index 4377005daf..92514ab9cd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_system_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_system_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_trust_point.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_trust_point.go index 1f976bbc6e..bda4fb5b82 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_trust_point.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_trust_point.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_trust_point_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_trust_point_list.go index 0d75ac3468..ad1c7633d6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_trust_point_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_trust_point_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_trust_point_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_trust_point_relationship.go index 91213c966c..6c07cd499f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_trust_point_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_trust_point_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_trust_point_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_trust_point_response.go index 833eb569ab..d4e0708306 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_trust_point_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_trust_point_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user.go index 35dcd3f83f..f70cbc13c1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -32,7 +32,7 @@ type IamUser struct { // IP address from which the user last logged in to Intersight. ClientIpAddress *string `json:"ClientIpAddress,omitempty"` // Email of the user. Remote users are added to Intersight using the email configured in the IdP. - Email *string `json:"Email,omitempty"` + Email *string "json:\"Email,omitempty\" validate:\"regexp=^$|^[a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$\"" // First name of the user. For remote users, this field is populated from the IdP attributes received after authentication. FirstName *string `json:"FirstName,omitempty"` // Last successful login time for user. @@ -937,7 +937,7 @@ func (o *IamUser) UnmarshalJSON(data []byte) (err error) { // IP address from which the user last logged in to Intersight. ClientIpAddress *string `json:"ClientIpAddress,omitempty"` // Email of the user. Remote users are added to Intersight using the email configured in the IdP. - Email *string `json:"Email,omitempty"` + Email *string "json:\"Email,omitempty\" validate:\"regexp=^$|^[a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$\"" // First name of the user. For remote users, this field is populated from the IdP attributes received after authentication. FirstName *string `json:"FirstName,omitempty"` // Last successful login time for user. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_group.go index 9fd8f97d74..2a40e6a976 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_group_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_group_list.go index a1848876d7..0ea5493db6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_group_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_group_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_group_relationship.go index ecbb21b2dd..de1420fd3e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_group_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_group_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_group_response.go index 75409e5509..1c2ba48b65 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_group_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_list.go index 1c330dd618..1dcd688dfa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_preference.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_preference.go index 52bb029b3c..aa1782b8c0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_preference.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_preference.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_preference_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_preference_list.go index 1db2fd95ca..77ccea2980 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_preference_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_preference_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_preference_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_preference_relationship.go index c1b84fd3f7..7bf5df8649 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_preference_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_preference_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_preference_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_preference_response.go index fc7f10e9e2..3c840af167 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_preference_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_preference_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_relationship.go index fb0180da1c..e5e909e37b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_response.go index e5a3c9e503..48a9806543 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_setting.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_setting.go index b312ba5dd5..4064777c65 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_setting.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_setting.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_setting_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_setting_list.go index aea6873a10..c778b20d0c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_setting_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_setting_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_setting_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_setting_relationship.go index 62a1f9d55b..c03defa23d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_setting_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_setting_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_setting_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_setting_response.go index 0dcd6b716a..bc10cc2106 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_setting_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iam_user_setting_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_imcconnector_web_ui_message.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_imcconnector_web_ui_message.go index f37656f956..bff7f17c86 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_imcconnector_web_ui_message.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_imcconnector_web_ui_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_base_cluster.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_base_cluster.go index 3611aca440..0849bf2eb8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_base_cluster.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_base_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type InfraBaseCluster struct { // 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. ObjectType string `json:"ObjectType"` // The user-provided name for this cluster to facilitate identification. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_-]{1,32}$"` // Cluster health status as reported by the hypervisor platform. * `Unknown` - Entity status is unknown. * `Degraded` - State is degraded, and might impact normal operation of the entity. * `Critical` - Entity is in a critical state, impacting operations. * `Ok` - Entity status is in a stable state, operating normally. Status *string `json:"Status,omitempty"` AdditionalProperties map[string]interface{} @@ -247,7 +247,7 @@ func (o *InfraBaseCluster) UnmarshalJSON(data []byte) (err error) { // 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. ObjectType string `json:"ObjectType"` // The user-provided name for this cluster to facilitate identification. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_-]{1,32}$"` // Cluster health status as reported by the hypervisor platform. * `Unknown` - Entity status is unknown. * `Degraded` - State is degraded, and might impact normal operation of the entity. * `Critical` - Entity is in a critical state, impacting operations. * `Ok` - Entity status is in a stable state, operating normally. Status *string `json:"Status,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_base_cluster_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_base_cluster_relationship.go index 92c3c9c581..c6362d069b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_base_cluster_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_base_cluster_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_base_gpu_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_base_gpu_configuration.go index 2b6d07893e..823e02fa81 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_base_gpu_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_base_gpu_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_base_pci_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_base_pci_configuration.go index 1af26489c8..cbb9fbb732 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_base_pci_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_base_pci_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_gpu_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_gpu_configuration.go index 3b5bf691cf..853cc8f961 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_gpu_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_gpu_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_hardware_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_hardware_info.go index 2d1a17bf9d..40fad16e1e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_hardware_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_hardware_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_meta_data.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_meta_data.go index df9e3ad1da..c678677521 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_meta_data.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_meta_data.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_mig_gpu_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_mig_gpu_configuration.go index 39e8cdc76c..0312d8069f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_mig_gpu_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_infra_mig_gpu_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_base.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_base.go index a2ad6aad92..f31e3c919b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_base.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_base_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_base_relationship.go index fb2a942e54..5136e4c90b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_base_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_base_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_device_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_device_info.go index cb15a90932..d61cb2f00d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_device_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_device_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_device_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_device_info_list.go index 7c01d24819..037b23f67c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_device_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_device_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_device_info_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_device_info_relationship.go index 2442c41d75..fae51d022d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_device_info_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_device_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_device_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_device_info_response.go index bfa4214c8a..d7af25cb7c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_device_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_device_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_dn_mo_binding.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_dn_mo_binding.go index 3a39e76002..31802285ca 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_dn_mo_binding.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_dn_mo_binding.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_dn_mo_binding_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_dn_mo_binding_list.go index 449d694df5..6b3fd28697 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_dn_mo_binding_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_dn_mo_binding_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_dn_mo_binding_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_dn_mo_binding_response.go index e4cb12cb71..6c75aeb269 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_dn_mo_binding_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_dn_mo_binding_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory.go index 5c4fa1f168..cf447ac9df 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_holder.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_holder.go index 4c32824a58..5ebc611187 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_holder.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_holder.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_holder_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_holder_list.go index 029604ab13..42146f1145 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_holder_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_holder_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_holder_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_holder_relationship.go index 6e3a150a09..bbce626175 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_holder_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_holder_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_holder_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_holder_response.go index e8ad246f85..be5d3cbebb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_holder_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_holder_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_list.go index 46087fe930..3ec3e61ea1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_relationship.go index b1ddc4577e..e684aed341 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_response.go index d399852000..cc4d6a3112 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_generic_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_interface.go index a3617e46cb..ced475f178 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_interface_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_interface_relationship.go index 9ea42fd315..095ac6f0be 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_interface_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_interface_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_inventory_mo.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_inventory_mo.go index 723e5a9031..6b3e1fd724 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_inventory_mo.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_inventory_mo.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_request.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_request.go index afc3aa751c..5a988cf931 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_request.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_uem_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_uem_info.go index 58807b2f8a..bbac9efa3b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_uem_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_inventory_uem_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ipmioverlan_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ipmioverlan_policy.go index dd8d918f0f..16e7889346 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ipmioverlan_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ipmioverlan_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type IpmioverlanPolicy struct { // State of the IPMI Over LAN service on the endpoint. Enabled *bool `json:"Enabled,omitempty"` // The encryption key to use for IPMI communication. It should have an even number of hexadecimal characters and not exceed 40 characters. Use “00” to disable encryption key use. This configuration is supported by all standalone rack servers. FI-attached rack servers with firmware at minimum of 4.2.3a support this configuration. FI-attached blade servers with firmware at minimum of 5.1.0.x support this configuration. IPMI commands using this key should append zeroes to the key to achieve a length of 40 characters. - EncryptionKey *string `json:"EncryptionKey,omitempty"` + EncryptionKey *string `json:"EncryptionKey,omitempty" validate:"regexp=^[a-fA-F0-9]*$"` // Indicates whether the value of the 'encryptionKey' property has been set. IsEncryptionKeySet *bool `json:"IsEncryptionKeySet,omitempty"` // The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all standalone rack servers. FI-attached rack servers with firmware at minimum of 4.2.3a support this configuration. FI-attached blade servers do not support privilege level. Privilege level will be ignored for unsupported servers. * `admin` - Privilege to perform all actions available through IPMI. * `user` - Privilege to perform some functions through IPMI but restriction on performing administrative tasks. * `read-only` - Privilege to view information throught IPMI but restriction on making any changes. @@ -439,7 +439,7 @@ func (o *IpmioverlanPolicy) UnmarshalJSON(data []byte) (err error) { // State of the IPMI Over LAN service on the endpoint. Enabled *bool `json:"Enabled,omitempty"` // The encryption key to use for IPMI communication. It should have an even number of hexadecimal characters and not exceed 40 characters. Use “00” to disable encryption key use. This configuration is supported by all standalone rack servers. FI-attached rack servers with firmware at minimum of 4.2.3a support this configuration. FI-attached blade servers with firmware at minimum of 5.1.0.x support this configuration. IPMI commands using this key should append zeroes to the key to achieve a length of 40 characters. - EncryptionKey *string `json:"EncryptionKey,omitempty"` + EncryptionKey *string `json:"EncryptionKey,omitempty" validate:"regexp=^[a-fA-F0-9]*$"` // Indicates whether the value of the 'encryptionKey' property has been set. IsEncryptionKeySet *bool `json:"IsEncryptionKeySet,omitempty"` // The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all standalone rack servers. FI-attached rack servers with firmware at minimum of 4.2.3a support this configuration. FI-attached blade servers do not support privilege level. Privilege level will be ignored for unsupported servers. * `admin` - Privilege to perform all actions available through IPMI. * `user` - Privilege to perform some functions through IPMI but restriction on performing administrative tasks. * `read-only` - Privilege to view information throught IPMI but restriction on making any changes. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ipmioverlan_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ipmioverlan_policy_inventory.go index 11066b0d21..0c6e5d209b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ipmioverlan_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ipmioverlan_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type IpmioverlanPolicyInventory struct { // State of the IPMI Over LAN service on the endpoint. Enabled *bool `json:"Enabled,omitempty"` // The encryption key to use for IPMI communication. It should have an even number of hexadecimal characters and not exceed 40 characters. Use “00” to disable encryption key use. This configuration is supported by all standalone rack servers. FI-attached rack servers with firmware at minimum of 4.2.3a support this configuration. FI-attached blade servers with firmware at minimum of 5.1.0.x support this configuration. IPMI commands using this key should append zeroes to the key to achieve a length of 40 characters. - EncryptionKey *string `json:"EncryptionKey,omitempty"` + EncryptionKey *string `json:"EncryptionKey,omitempty" validate:"regexp=^[a-fA-F0-9]*$"` // Indicates whether the value of the 'encryptionKey' property has been set. IsEncryptionKeySet *bool `json:"IsEncryptionKeySet,omitempty"` // The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all standalone rack servers. FI-attached rack servers with firmware at minimum of 4.2.3a support this configuration. FI-attached blade servers do not support privilege level. Privilege level will be ignored for unsupported servers. * `admin` - Privilege to perform all actions available through IPMI. * `user` - Privilege to perform some functions through IPMI but restriction on performing administrative tasks. * `read-only` - Privilege to view information throught IPMI but restriction on making any changes. @@ -393,7 +393,7 @@ func (o *IpmioverlanPolicyInventory) UnmarshalJSON(data []byte) (err error) { // State of the IPMI Over LAN service on the endpoint. Enabled *bool `json:"Enabled,omitempty"` // The encryption key to use for IPMI communication. It should have an even number of hexadecimal characters and not exceed 40 characters. Use “00” to disable encryption key use. This configuration is supported by all standalone rack servers. FI-attached rack servers with firmware at minimum of 4.2.3a support this configuration. FI-attached blade servers with firmware at minimum of 5.1.0.x support this configuration. IPMI commands using this key should append zeroes to the key to achieve a length of 40 characters. - EncryptionKey *string `json:"EncryptionKey,omitempty"` + EncryptionKey *string `json:"EncryptionKey,omitempty" validate:"regexp=^[a-fA-F0-9]*$"` // Indicates whether the value of the 'encryptionKey' property has been set. IsEncryptionKeySet *bool `json:"IsEncryptionKeySet,omitempty"` // The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all standalone rack servers. FI-attached rack servers with firmware at minimum of 4.2.3a support this configuration. FI-attached blade servers do not support privilege level. Privilege level will be ignored for unsupported servers. * `admin` - Privilege to perform all actions available through IPMI. * `user` - Privilege to perform some functions through IPMI but restriction on performing administrative tasks. * `read-only` - Privilege to view information throught IPMI but restriction on making any changes. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ipmioverlan_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ipmioverlan_policy_inventory_list.go index d621cec88a..fd826372e2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ipmioverlan_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ipmioverlan_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ipmioverlan_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ipmioverlan_policy_inventory_response.go index 683f984e30..141649a6dc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ipmioverlan_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ipmioverlan_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ipmioverlan_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ipmioverlan_policy_list.go index 2dd0eaa297..8747f5fca6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ipmioverlan_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ipmioverlan_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ipmioverlan_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ipmioverlan_policy_response.go index aa91b72b75..1c582a97ea 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ipmioverlan_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ipmioverlan_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_block_lease.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_block_lease.go index fb1a51ce6f..fd571df677 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_block_lease.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_block_lease.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_block_lease_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_block_lease_list.go index 1d266a3ea1..5c94efc0a9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_block_lease_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_block_lease_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_block_lease_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_block_lease_relationship.go index 163e81bce4..69bb063293 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_block_lease_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_block_lease_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_block_lease_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_block_lease_response.go index e2e42843f4..179618e12b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_block_lease_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_block_lease_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_lease.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_lease.go index c561d622a4..e294eb0ca3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_lease.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_lease.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,10 +31,10 @@ type IppoolIpLease struct { // Type of the IP address requested. * `IPv4` - IP V4 address type requested. * `IPv6` - IP V6 address type requested. IpType *string `json:"IpType,omitempty"` // IPv4 Address given as a lease to an external entity like server profiles. - IpV4Address *string `json:"IpV4Address,omitempty"` + IpV4Address *string `json:"IpV4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` IpV4Config NullableIppoolIpV4Config `json:"IpV4Config,omitempty"` // IPv6 Address given as a lease to an external entity like server profiles. - IpV6Address *string `json:"IpV6Address,omitempty"` + IpV6Address *string `json:"IpV6Address,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` IpV6Config NullableIppoolIpV6Config `json:"IpV6Config,omitempty"` Reservation *IppoolReservationReference `json:"Reservation,omitempty"` AssignedToEntity NullableMoBaseMoRelationship `json:"AssignedToEntity,omitempty"` @@ -729,10 +729,10 @@ func (o *IppoolIpLease) UnmarshalJSON(data []byte) (err error) { // Type of the IP address requested. * `IPv4` - IP V4 address type requested. * `IPv6` - IP V6 address type requested. IpType *string `json:"IpType,omitempty"` // IPv4 Address given as a lease to an external entity like server profiles. - IpV4Address *string `json:"IpV4Address,omitempty"` + IpV4Address *string `json:"IpV4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` IpV4Config NullableIppoolIpV4Config `json:"IpV4Config,omitempty"` // IPv6 Address given as a lease to an external entity like server profiles. - IpV6Address *string `json:"IpV6Address,omitempty"` + IpV6Address *string `json:"IpV6Address,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` IpV6Config NullableIppoolIpV6Config `json:"IpV6Config,omitempty"` Reservation *IppoolReservationReference `json:"Reservation,omitempty"` AssignedToEntity NullableMoBaseMoRelationship `json:"AssignedToEntity,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_lease_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_lease_list.go index bbaac4c26d..7a1517a652 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_lease_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_lease_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_lease_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_lease_relationship.go index 94170729e4..df8212cbb8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_lease_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_lease_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_lease_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_lease_response.go index 63e06a59a2..c9b560f1b4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_lease_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_lease_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_v4_block.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_v4_block.go index 732bb818c5..98856d78af 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_v4_block.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_v4_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,10 +29,10 @@ type IppoolIpV4Block struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // First IPv4 address of the block. - From *string `json:"From,omitempty"` + From *string `json:"From,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` IpV4Config NullableIppoolIpV4Config `json:"IpV4Config,omitempty"` // Last IPv4 address of the block. - To *string `json:"To,omitempty"` + To *string `json:"To,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` AdditionalProperties map[string]interface{} } @@ -317,10 +317,10 @@ func (o *IppoolIpV4Block) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // First IPv4 address of the block. - From *string `json:"From,omitempty"` + From *string `json:"From,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` IpV4Config NullableIppoolIpV4Config `json:"IpV4Config,omitempty"` // Last IPv4 address of the block. - To *string `json:"To,omitempty"` + To *string `json:"To,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` } varIppoolIpV4BlockWithoutEmbeddedStruct := IppoolIpV4BlockWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_v4_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_v4_config.go index 8f97ddcb99..2f6ac8ce99 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_v4_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_v4_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,13 +29,13 @@ type IppoolIpV4Config struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IP address of the default IPv4 gateway. - Gateway *string `json:"Gateway,omitempty"` + Gateway *string `json:"Gateway,omitempty" validate:"regexp=^$|^([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // A subnet mask is a 32-bit number that masks an IP address and divides the IP address into network address and host address. - Netmask *string `json:"Netmask,omitempty"` + Netmask *string `json:"Netmask,omitempty" validate:"regexp=^$|^(((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}))$"` // IP Address of the primary Domain Name System (DNS) server. - PrimaryDns *string `json:"PrimaryDns,omitempty"` + PrimaryDns *string `json:"PrimaryDns,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP Address of the secondary Domain Name System (DNS) server. - SecondaryDns *string `json:"SecondaryDns,omitempty"` + SecondaryDns *string `json:"SecondaryDns,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` AdditionalProperties map[string]interface{} } @@ -344,13 +344,13 @@ func (o *IppoolIpV4Config) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IP address of the default IPv4 gateway. - Gateway *string `json:"Gateway,omitempty"` + Gateway *string `json:"Gateway,omitempty" validate:"regexp=^$|^([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // A subnet mask is a 32-bit number that masks an IP address and divides the IP address into network address and host address. - Netmask *string `json:"Netmask,omitempty"` + Netmask *string `json:"Netmask,omitempty" validate:"regexp=^$|^(((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}))$"` // IP Address of the primary Domain Name System (DNS) server. - PrimaryDns *string `json:"PrimaryDns,omitempty"` + PrimaryDns *string `json:"PrimaryDns,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IP Address of the secondary Domain Name System (DNS) server. - SecondaryDns *string `json:"SecondaryDns,omitempty"` + SecondaryDns *string `json:"SecondaryDns,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` } varIppoolIpV4ConfigWithoutEmbeddedStruct := IppoolIpV4ConfigWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_v6_block.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_v6_block.go index 05f7c91c61..97a20c3f28 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_v6_block.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_v6_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,10 +29,10 @@ type IppoolIpV6Block struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // First IPv6 address of the block. - From *string `json:"From,omitempty"` + From *string `json:"From,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` IpV6Config NullableIppoolIpV6Config `json:"IpV6Config,omitempty"` // Last IPv6 address of the block. - To *string `json:"To,omitempty"` + To *string `json:"To,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` AdditionalProperties map[string]interface{} } @@ -317,10 +317,10 @@ func (o *IppoolIpV6Block) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // First IPv6 address of the block. - From *string `json:"From,omitempty"` + From *string `json:"From,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` IpV6Config NullableIppoolIpV6Config `json:"IpV6Config,omitempty"` // Last IPv6 address of the block. - To *string `json:"To,omitempty"` + To *string `json:"To,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` } varIppoolIpV6BlockWithoutEmbeddedStruct := IppoolIpV6BlockWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_v6_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_v6_config.go index 619ab1670f..34d9b23923 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_v6_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_ip_v6_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,13 +29,13 @@ type IppoolIpV6Config struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IP address of the default IPv6 gateway. - Gateway *string `json:"Gateway,omitempty"` + Gateway *string `json:"Gateway,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // A prefix length which masks the IP address and divides the IP address into network address and host address. Prefix *int64 `json:"Prefix,omitempty"` // IP Address of the primary Domain Name System (DNS) server. - PrimaryDns *string `json:"PrimaryDns,omitempty"` + PrimaryDns *string `json:"PrimaryDns,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // IP Address of the secondary Domain Name System (DNS) server. - SecondaryDns *string `json:"SecondaryDns,omitempty"` + SecondaryDns *string `json:"SecondaryDns,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` AdditionalProperties map[string]interface{} } @@ -344,13 +344,13 @@ func (o *IppoolIpV6Config) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IP address of the default IPv6 gateway. - Gateway *string `json:"Gateway,omitempty"` + Gateway *string `json:"Gateway,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // A prefix length which masks the IP address and divides the IP address into network address and host address. Prefix *int64 `json:"Prefix,omitempty"` // IP Address of the primary Domain Name System (DNS) server. - PrimaryDns *string `json:"PrimaryDns,omitempty"` + PrimaryDns *string `json:"PrimaryDns,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // IP Address of the secondary Domain Name System (DNS) server. - SecondaryDns *string `json:"SecondaryDns,omitempty"` + SecondaryDns *string `json:"SecondaryDns,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` } varIppoolIpV6ConfigWithoutEmbeddedStruct := IppoolIpV6ConfigWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool.go index 56a3665b7a..aa76b71e5d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_list.go index ac7684fb72..0aee4210c2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_member.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_member.go index 6bc0bf49d5..8d077d466f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_member.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,9 +31,9 @@ type IppoolPoolMember struct { // Type of the IP address requested. * `IPv4` - IP V4 address type requested. * `IPv6` - IP V6 address type requested. IpType *string `json:"IpType,omitempty"` // IPv4 Address of this pool member. - IpV4Address *string `json:"IpV4Address,omitempty"` + IpV4Address *string `json:"IpV4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IPv6 Address of this pool member. - IpV6Address *string `json:"IpV6Address,omitempty"` + IpV6Address *string `json:"IpV6Address,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` AssignedToEntity NullableMoBaseMoRelationship `json:"AssignedToEntity,omitempty"` IpBlock NullableIppoolShadowBlockRelationship `json:"IpBlock,omitempty"` Peer NullableIppoolIpLeaseRelationship `json:"Peer,omitempty"` @@ -550,9 +550,9 @@ func (o *IppoolPoolMember) UnmarshalJSON(data []byte) (err error) { // Type of the IP address requested. * `IPv4` - IP V4 address type requested. * `IPv6` - IP V6 address type requested. IpType *string `json:"IpType,omitempty"` // IPv4 Address of this pool member. - IpV4Address *string `json:"IpV4Address,omitempty"` + IpV4Address *string `json:"IpV4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IPv6 Address of this pool member. - IpV6Address *string `json:"IpV6Address,omitempty"` + IpV6Address *string `json:"IpV6Address,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` AssignedToEntity NullableMoBaseMoRelationship `json:"AssignedToEntity,omitempty"` IpBlock NullableIppoolShadowBlockRelationship `json:"IpBlock,omitempty"` Peer NullableIppoolIpLeaseRelationship `json:"Peer,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_member_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_member_list.go index a9b67ff719..099b2a1c60 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_member_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_member_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_member_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_member_relationship.go index b8291856e3..86eef737c7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_member_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_member_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_member_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_member_response.go index e4ed6b2d96..1cc080968e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_member_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_member_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_relationship.go index 52ed6282c9..0a5fc615fa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_response.go index e7735ca23c..3b1584f45c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_pool_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_reservation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_reservation.go index 24865d786e..739eb5b48e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_reservation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_reservation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,9 +33,9 @@ type IppoolReservation struct { // Type of the IP address that needs to be reserved. * `IPv4` - IP V4 address type requested. * `IPv6` - IP V6 address type requested. IpType *string `json:"IpType,omitempty"` // IPv4 Address to be reserved. - IpV4Address *string `json:"IpV4Address,omitempty"` + IpV4Address *string `json:"IpV4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IPv6 Address to be reserved. - IpV6Address *string `json:"IpV6Address,omitempty"` + IpV6Address *string `json:"IpV6Address,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // The moid of the Virtual Routing and Forwarding MO. VrfMoid *string `json:"VrfMoid,omitempty"` BlockHead NullableIppoolShadowBlockRelationship `json:"BlockHead,omitempty"` @@ -720,9 +720,9 @@ func (o *IppoolReservation) UnmarshalJSON(data []byte) (err error) { // Type of the IP address that needs to be reserved. * `IPv4` - IP V4 address type requested. * `IPv6` - IP V6 address type requested. IpType *string `json:"IpType,omitempty"` // IPv4 Address to be reserved. - IpV4Address *string `json:"IpV4Address,omitempty"` + IpV4Address *string `json:"IpV4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IPv6 Address to be reserved. - IpV6Address *string `json:"IpV6Address,omitempty"` + IpV6Address *string `json:"IpV6Address,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // The moid of the Virtual Routing and Forwarding MO. VrfMoid *string `json:"VrfMoid,omitempty"` BlockHead NullableIppoolShadowBlockRelationship `json:"BlockHead,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_reservation_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_reservation_list.go index 8ceaf9496b..a2e29bb2e6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_reservation_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_reservation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_reservation_reference.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_reservation_reference.go index 861c8d94a6..82e314bc8a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_reservation_reference.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_reservation_reference.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_reservation_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_reservation_relationship.go index a33041ef80..e9685cd0ac 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_reservation_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_reservation_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_reservation_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_reservation_response.go index c02c24c2be..ebfda313a8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_reservation_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_reservation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_block.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_block.go index 59992c4f6d..28dd0156e0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_block.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_block_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_block_list.go index ea7862f474..a8913f7c9e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_block_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_block_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_block_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_block_relationship.go index 91834e98a9..2875d95965 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_block_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_block_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_block_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_block_response.go index 508e5c695b..202b6d633d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_block_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_block_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_pool.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_pool.go index 1373acb1d9..2b890931fd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_pool.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_pool_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_pool_list.go index c14f0ed9bb..856936fded 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_pool_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_pool_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_pool_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_pool_relationship.go index 6c35a31d2d..f3922ac9c0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_pool_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_pool_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_pool_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_pool_response.go index 36e9150442..2ef8530687 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_pool_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_shadow_pool_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_universe.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_universe.go index 14c5d42e14..dc70089706 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_universe.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_universe.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_universe_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_universe_list.go index 4a645dd38d..0b80de0b07 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_universe_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_universe_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_universe_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_universe_relationship.go index 17089386e5..96a20e41b9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_universe_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_universe_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_universe_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_universe_response.go index 509e52832f..0578854eb2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_universe_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ippool_universe_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_block.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_block.go index bd77396f31..2ba937c57d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_block.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_block_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_block_list.go index 47bdb9c232..b822b234d9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_block_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_block_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_block_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_block_relationship.go index 55016b95a9..5fecbc17a4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_block_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_block_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_block_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_block_response.go index 6ae80d49ca..2170589c3b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_block_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_block_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_iqn_suffix_block.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_iqn_suffix_block.go index ac1d66dc3e..c3ee42e119 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_iqn_suffix_block.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_iqn_suffix_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_lease.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_lease.go index fcb33b6a4f..74dd5505ee 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_lease.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_lease.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type IqnpoolLease struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IQN address allocated for pool-based allocation. It is constructed as ::. - IqnAddress *string `json:"IqnAddress,omitempty"` + IqnAddress *string `json:"IqnAddress,omitempty" validate:"regexp=^$|^(?:iqn\\\\.[0-9]{4}-[0-9]{2}(?:\\\\.[A-Za-z](?:[A-Za-z0-9\\\\-]*[A-Za-z0-9])?)+(?::.*)?|eui\\\\.[0-9A-Fa-f]{16})"` // Number of the IQN address. IQN Address is constructed as ::. IqnNumber *int64 `json:"IqnNumber,omitempty"` // Prefix of the IQN address. IQN Address is constructed as ::. @@ -572,7 +572,7 @@ func (o *IqnpoolLease) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IQN address allocated for pool-based allocation. It is constructed as ::. - IqnAddress *string `json:"IqnAddress,omitempty"` + IqnAddress *string `json:"IqnAddress,omitempty" validate:"regexp=^$|^(?:iqn\\\\.[0-9]{4}-[0-9]{2}(?:\\\\.[A-Za-z](?:[A-Za-z0-9\\\\-]*[A-Za-z0-9])?)+(?::.*)?|eui\\\\.[0-9A-Fa-f]{16})"` // Number of the IQN address. IQN Address is constructed as ::. IqnNumber *int64 `json:"IqnNumber,omitempty"` // Prefix of the IQN address. IQN Address is constructed as ::. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_lease_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_lease_list.go index 1eb4a31450..430710c563 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_lease_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_lease_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_lease_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_lease_relationship.go index faa2766062..39447ab70e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_lease_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_lease_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_lease_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_lease_response.go index b42c30e7ae..203c6bace4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_lease_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_lease_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool.go index 7283b8eb60..fd2cfacadf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_list.go index d2769037b9..c46c26f53b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_member.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_member.go index 578ff5860d..74e1d22935 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_member.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_member_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_member_list.go index af7b733b25..ada6dd8b6a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_member_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_member_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_member_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_member_relationship.go index 0f8e166054..f37885f24f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_member_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_member_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_member_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_member_response.go index 9b1f1d4271..7f58fc2f5a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_member_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_member_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_relationship.go index 9ee7780894..d1701c3db1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_response.go index 7b3abcbf36..1653f88669 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_pool_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_reservation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_reservation.go index 0691536830..cbad879a0f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_reservation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_reservation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type IqnpoolReservation struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IQN identity to be reserved. - Identity *string `json:"Identity,omitempty"` + Identity *string `json:"Identity,omitempty" validate:"regexp=^$|^(?:iqn\\\\.[0-9]{4}-[0-9]{2}(?:\\\\.[A-Za-z](?:[A-Za-z0-9\\\\-]*[A-Za-z0-9])?)+(?::.*)?|eui\\\\.[0-9A-Fa-f]{16})"` // Number of the IQN address. IQN Address is constructed as ::. IqnNumber *int64 `json:"IqnNumber,omitempty"` // Prefix of the IQN address. IQN Address is constructed as ::. @@ -581,7 +581,7 @@ func (o *IqnpoolReservation) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IQN identity to be reserved. - Identity *string `json:"Identity,omitempty"` + Identity *string `json:"Identity,omitempty" validate:"regexp=^$|^(?:iqn\\\\.[0-9]{4}-[0-9]{2}(?:\\\\.[A-Za-z](?:[A-Za-z0-9\\\\-]*[A-Za-z0-9])?)+(?::.*)?|eui\\\\.[0-9A-Fa-f]{16})"` // Number of the IQN address. IQN Address is constructed as ::. IqnNumber *int64 `json:"IqnNumber,omitempty"` // Prefix of the IQN address. IQN Address is constructed as ::. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_reservation_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_reservation_list.go index e77033f33d..9963118c4e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_reservation_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_reservation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_reservation_reference.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_reservation_reference.go index 0919eeacec..7e2485af5e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_reservation_reference.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_reservation_reference.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_reservation_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_reservation_relationship.go index a4a01cfe38..28b6217a30 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_reservation_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_reservation_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_reservation_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_reservation_response.go index 60b73c3b5b..2bc09611f4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_reservation_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_reservation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_universe.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_universe.go index 9d76f13a09..bfb37dcfdc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_universe.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_universe.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_universe_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_universe_list.go index d281048155..9858162f7e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_universe_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_universe_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_universe_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_universe_relationship.go index 4e1f729cb2..584a27e0a5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_universe_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_universe_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_universe_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_universe_response.go index b61464310d..d63250a68c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_universe_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iqnpool_universe_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_issue_condition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_issue_condition.go index a57bfa5022..e068f55747 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_issue_condition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_issue_condition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_issue_definition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_issue_definition.go index 7a4c849b45..8cb8dcb0c6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_issue_definition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_issue_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_issue_device_tag.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_issue_device_tag.go index 3eea929b4f..a6a44862c1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_issue_device_tag.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_issue_device_tag.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_issue_message.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_issue_message.go index e3c6baa8cd..f5328cde09 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_issue_message.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_issue_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_issue_odata_condition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_issue_odata_condition.go index 2cc3d48313..b31af9fed7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_issue_odata_condition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_issue_odata_condition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_maintenance_notification.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_maintenance_notification.go index 71cfa5e45d..e82e708e7e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_maintenance_notification.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_maintenance_notification.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_maintenance_notification_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_maintenance_notification_list.go index d54f201e3b..cde9735d16 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_maintenance_notification_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_maintenance_notification_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_maintenance_notification_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_maintenance_notification_response.go index 086bdeaabb..beb5b9d2a4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_maintenance_notification_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_maintenance_notification_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_migrate.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_migrate.go index 575e727e32..3b5e1f61d9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_migrate.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_migrate.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_migrate_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_migrate_list.go index 920509c7bf..e60c3ab0be 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_migrate_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_migrate_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_migrate_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_migrate_response.go index bfbed66a46..8e518aed54 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_migrate_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_migrate_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_tenant_customization.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_tenant_customization.go index 97cd7e84ff..3ff46cd258 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_tenant_customization.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_tenant_customization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_tenant_customization_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_tenant_customization_list.go index 964af8aff2..7747a42086 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_tenant_customization_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_tenant_customization_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_tenant_customization_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_tenant_customization_response.go index 5a7982c55c..a0cbc33084 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_tenant_customization_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_tenant_customization_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_tenant_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_tenant_status.go index f5fec93f72..2589bae4a5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_tenant_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_tenant_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_tenant_status_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_tenant_status_list.go index 4f2caf6dc7..6793857be9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_tenant_status_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_tenant_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_tenant_status_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_tenant_status_response.go index 7755b7e4bd..1c8b79ad4c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_tenant_status_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_iwotenant_tenant_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_daemon_set.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_daemon_set.go index 679a521fb1..64b3563691 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_daemon_set.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_daemon_set.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_deployment.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_deployment.go index b66d0800c9..ab491624cc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_deployment.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_deployment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_ingress.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_ingress.go index 44512cf498..f553d367d3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_ingress.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_ingress.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_node.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_node.go index f5e4c567ed..dde16a33b3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_node.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_node.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_pod.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_pod.go index ce6b1d8869..91c488c029 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_pod.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_pod.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_service.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_service.go index a8d5ea9c0c..11cf0f5bce 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_service.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_service.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_stateful_set.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_stateful_set.go index f6a6e66ce9..2dbfd4e0dc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_stateful_set.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_abstract_stateful_set.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_apic.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_apic.go index 6261caea87..818b964c63 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_apic.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_apic.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_apic_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_apic_list.go index 7eff3ed9cb..d12b24eb61 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_apic_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_apic_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_apic_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_apic_response.go index 19ee6b4c67..5b6768044a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_apic_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_apic_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_profile.go index 37a73a6016..775942ba8f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,23 +29,23 @@ type KubernetesAciCniProfile struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy. - AaepName *string `json:"AaepName,omitempty"` + AaepName *string `json:"AaepName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-_]*[a-zA-Z0-9]$"` // Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy. - ExtSvcDynSubnetStart *string `json:"ExtSvcDynSubnetStart,omitempty"` + ExtSvcDynSubnetStart *string `json:"ExtSvcDynSubnetStart,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy. - ExtSvcStaticSubnetStart *string `json:"ExtSvcStaticSubnetStart,omitempty"` + ExtSvcStaticSubnetStart *string `json:"ExtSvcStaticSubnetStart,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Value of ACI infrastructuere VLAN ID for the ACI fabric. InfraVlanId *int64 `json:"InfraVlanId,omitempty"` // Name of ACI L3Out network to be used for all Kubernetes clusters using this policy. - L3OutNetworkName *string `json:"L3OutNetworkName,omitempty"` + L3OutNetworkName *string `json:"L3OutNetworkName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-_]*[a-zA-Z0-9]$"` // Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy. - L3OutPolicyName *string `json:"L3OutPolicyName,omitempty"` + L3OutPolicyName *string `json:"L3OutPolicyName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-_]*[a-zA-Z0-9]$"` // Tenant in ACI used by this L3Out and Common VRF. - L3OutTenant *string `json:"L3OutTenant,omitempty"` + L3OutTenant *string `json:"L3OutTenant,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-_]*[a-zA-Z0-9]$"` // VMM domain within which Kubernetes clusters using this policy are nested. - NestedVmmDomain *string `json:"NestedVmmDomain,omitempty"` + NestedVmmDomain *string `json:"NestedVmmDomain,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-_]*[a-zA-Z0-9]$"` // Start of range of ACI Node Service IP subnets to use by Kubernetes clusters using this ACI CNI policy This is used for the service graph which is used for ACI PBR based load balancing. - NodeSvcSubnetStart *string `json:"NodeSvcSubnetStart,omitempty"` + NodeSvcSubnetStart *string `json:"NodeSvcSubnetStart,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy. NodeVlanRangeEnd *int64 `json:"NodeVlanRangeEnd,omitempty"` // Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy. @@ -53,13 +53,13 @@ type KubernetesAciCniProfile struct { // Number of k8s clusters currently using this ACI CNI profile. NumberOfKubernetesClusters *int64 `json:"NumberOfKubernetesClusters,omitempty"` // Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy. - OpflexMulticastAddressRange *string `json:"OpflexMulticastAddressRange,omitempty"` + OpflexMulticastAddressRange *string `json:"OpflexMulticastAddressRange,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Start of range of Kubernetes pod IP subnets to use by Kubernetes clusters using this ACI CNI policy This should be a /8 IP subnet so that multiple /16 subnets can be assigned for pod subnets of Kubernetes clusters using this profile. - PodSubnetStart *string `json:"PodSubnetStart,omitempty"` + PodSubnetStart *string `json:"PodSubnetStart,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Start of range of Kubernetes Service IP subnets to use by Kubernetes clusters using this ACI CNI policy Currently this is fixed internally and read-only. - SvcSubnetStart *string `json:"SvcSubnetStart,omitempty"` + SvcSubnetStart *string `json:"SvcSubnetStart,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // VRF (Virtual Routing and Forwarding) domain to be used within ACI fabric by all k8s clusters using this policy. - Vrf *string `json:"Vrf,omitempty"` + Vrf *string `json:"Vrf,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-_]*[a-zA-Z0-9]$"` // An array of relationships to kubernetesAciCniTenantClusterAllocation resources. ClusterAciAllocations []KubernetesAciCniTenantClusterAllocationRelationship `json:"ClusterAciAllocations,omitempty"` // An array of relationships to kubernetesClusterProfile resources. @@ -960,23 +960,23 @@ func (o *KubernetesAciCniProfile) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy. - AaepName *string `json:"AaepName,omitempty"` + AaepName *string `json:"AaepName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-_]*[a-zA-Z0-9]$"` // Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy. - ExtSvcDynSubnetStart *string `json:"ExtSvcDynSubnetStart,omitempty"` + ExtSvcDynSubnetStart *string `json:"ExtSvcDynSubnetStart,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy. - ExtSvcStaticSubnetStart *string `json:"ExtSvcStaticSubnetStart,omitempty"` + ExtSvcStaticSubnetStart *string `json:"ExtSvcStaticSubnetStart,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Value of ACI infrastructuere VLAN ID for the ACI fabric. InfraVlanId *int64 `json:"InfraVlanId,omitempty"` // Name of ACI L3Out network to be used for all Kubernetes clusters using this policy. - L3OutNetworkName *string `json:"L3OutNetworkName,omitempty"` + L3OutNetworkName *string `json:"L3OutNetworkName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-_]*[a-zA-Z0-9]$"` // Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy. - L3OutPolicyName *string `json:"L3OutPolicyName,omitempty"` + L3OutPolicyName *string `json:"L3OutPolicyName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-_]*[a-zA-Z0-9]$"` // Tenant in ACI used by this L3Out and Common VRF. - L3OutTenant *string `json:"L3OutTenant,omitempty"` + L3OutTenant *string `json:"L3OutTenant,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-_]*[a-zA-Z0-9]$"` // VMM domain within which Kubernetes clusters using this policy are nested. - NestedVmmDomain *string `json:"NestedVmmDomain,omitempty"` + NestedVmmDomain *string `json:"NestedVmmDomain,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-_]*[a-zA-Z0-9]$"` // Start of range of ACI Node Service IP subnets to use by Kubernetes clusters using this ACI CNI policy This is used for the service graph which is used for ACI PBR based load balancing. - NodeSvcSubnetStart *string `json:"NodeSvcSubnetStart,omitempty"` + NodeSvcSubnetStart *string `json:"NodeSvcSubnetStart,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy. NodeVlanRangeEnd *int64 `json:"NodeVlanRangeEnd,omitempty"` // Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy. @@ -984,13 +984,13 @@ func (o *KubernetesAciCniProfile) UnmarshalJSON(data []byte) (err error) { // Number of k8s clusters currently using this ACI CNI profile. NumberOfKubernetesClusters *int64 `json:"NumberOfKubernetesClusters,omitempty"` // Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy. - OpflexMulticastAddressRange *string `json:"OpflexMulticastAddressRange,omitempty"` + OpflexMulticastAddressRange *string `json:"OpflexMulticastAddressRange,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Start of range of Kubernetes pod IP subnets to use by Kubernetes clusters using this ACI CNI policy This should be a /8 IP subnet so that multiple /16 subnets can be assigned for pod subnets of Kubernetes clusters using this profile. - PodSubnetStart *string `json:"PodSubnetStart,omitempty"` + PodSubnetStart *string `json:"PodSubnetStart,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Start of range of Kubernetes Service IP subnets to use by Kubernetes clusters using this ACI CNI policy Currently this is fixed internally and read-only. - SvcSubnetStart *string `json:"SvcSubnetStart,omitempty"` + SvcSubnetStart *string `json:"SvcSubnetStart,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // VRF (Virtual Routing and Forwarding) domain to be used within ACI fabric by all k8s clusters using this policy. - Vrf *string `json:"Vrf,omitempty"` + Vrf *string `json:"Vrf,omitempty" validate:"regexp=^$|^[a-zA-Z0-9][a-zA-Z0-9-_]*[a-zA-Z0-9]$"` // An array of relationships to kubernetesAciCniTenantClusterAllocation resources. ClusterAciAllocations []KubernetesAciCniTenantClusterAllocationRelationship `json:"ClusterAciAllocations,omitempty"` // An array of relationships to kubernetesClusterProfile resources. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_profile_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_profile_list.go index 805ace23c5..2b58000d2e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_profile_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_profile_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_profile_relationship.go index f7d5aa8857..34fe3173f8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_profile_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_profile_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_profile_response.go index 2acb16575c..567b82993b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_profile_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation.go index af17b06c79..654be90952 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,13 +29,13 @@ type KubernetesAciCniTenantClusterAllocation struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // CIDR allocated for ACI node service IPs in this tenant cluster. - NodeSvcIpSubnet *string `json:"NodeSvcIpSubnet,omitempty"` + NodeSvcIpSubnet *string `json:"NodeSvcIpSubnet,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // CIDR allocated for pod IPs in this tenant cluster. - PodIpSubnet *string `json:"PodIpSubnet,omitempty"` + PodIpSubnet *string `json:"PodIpSubnet,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // End of VLAN range allocated to this tenant cluster. - VlanEnd *string `json:"VlanEnd,omitempty"` + VlanEnd *string `json:"VlanEnd,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Start of VLAN range allocated to this tenant cluster. - VlanStart *string `json:"VlanStart,omitempty"` + VlanStart *string `json:"VlanStart,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` AdditionalProperties map[string]interface{} } @@ -391,13 +391,13 @@ func (o *KubernetesAciCniTenantClusterAllocation) UnmarshalJSON(data []byte) (er // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // CIDR allocated for ACI node service IPs in this tenant cluster. - NodeSvcIpSubnet *string `json:"NodeSvcIpSubnet,omitempty"` + NodeSvcIpSubnet *string `json:"NodeSvcIpSubnet,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // CIDR allocated for pod IPs in this tenant cluster. - PodIpSubnet *string `json:"PodIpSubnet,omitempty"` + PodIpSubnet *string `json:"PodIpSubnet,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // End of VLAN range allocated to this tenant cluster. - VlanEnd *string `json:"VlanEnd,omitempty"` + VlanEnd *string `json:"VlanEnd,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Start of VLAN range allocated to this tenant cluster. - VlanStart *string `json:"VlanStart,omitempty"` + VlanStart *string `json:"VlanStart,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation_list.go index 0d1cdeee4e..68c1ae01e8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation_relationship.go index 64cf7a8e0e..96aaf9aead 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation_response.go index ea25cecf17..3b037249d8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_aci_cni_tenant_cluster_allocation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_action_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_action_info.go index 44bf6f3132..45e0e679c1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_action_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_action_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon.go index d9bc32ccb7..4108fd3c7d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_configuration.go index b4262bdf8a..d96282f5e4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_definition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_definition.go index 187cf8c500..8c86d6e7ab 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_definition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_definition_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_definition_list.go index ac4769e796..6cb8f982cd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_definition_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_definition_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_definition_relationship.go index c3c75ca803..e15b04667e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_definition_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_definition_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_definition_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_definition_response.go index fc810bf43f..2dabbeb42e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_definition_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_policy.go index b5c080f40d..7f323f2656 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_policy_list.go index 89f3be7918..fd695843f4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_policy_response.go index a7b8e20f6a..088083c826 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_repository.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_repository.go index 0d0cc5c8fa..0863ec9a64 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_repository.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_repository.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_repository_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_repository_list.go index 4027959d41..849efe8b5b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_repository_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_repository_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_repository_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_repository_response.go index 402e552c5a..411c844d18 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_repository_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_repository_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_version_reference.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_version_reference.go index 7a5c3b8f56..20449fc266 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_version_reference.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_addon_version_reference.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_baremetal_network_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_baremetal_network_info.go index 21805e8ba6..f22259716c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_baremetal_network_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_baremetal_network_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_baremetal_node_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_baremetal_node_profile.go index 416c1fdda8..10266483f8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_baremetal_node_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_baremetal_node_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_baremetal_node_profile_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_baremetal_node_profile_list.go index 9c9fb29a88..3242799ee4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_baremetal_node_profile_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_baremetal_node_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_baremetal_node_profile_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_baremetal_node_profile_response.go index a4a7f50e18..5a5df57dd9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_baremetal_node_profile_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_baremetal_node_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_base_gpu_product.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_base_gpu_product.go index f7dd521006..eec01ea3e0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_base_gpu_product.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_base_gpu_product.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_base_infrastructure_provider.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_base_infrastructure_provider.go index d69ca78e1e..ab2d83a308 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_base_infrastructure_provider.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_base_infrastructure_provider.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_base_infrastructure_provider_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_base_infrastructure_provider_relationship.go index 23e0a2292e..1a94d67359 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_base_infrastructure_provider_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_base_infrastructure_provider_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_base_product.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_base_product.go index f5bcbdd46c..97b1af7ea8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_base_product.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_base_product.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_base_virtual_machine_infra_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_base_virtual_machine_infra_config.go index 63c0ba11ff..ddba56fdfe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_base_virtual_machine_infra_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_base_virtual_machine_infra_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_calico_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_calico_config.go index 3fb49e933f..8fea9d2247 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_calico_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_calico_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_catalog.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_catalog.go index 14c14a132b..257c772ada 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_catalog.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_catalog.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_catalog_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_catalog_list.go index a99d52b9fa..5426618ca1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_catalog_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_catalog_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_catalog_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_catalog_relationship.go index 8e4c66bf45..7e7cbe1360 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_catalog_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_catalog_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_catalog_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_catalog_response.go index 25e6cf07d8..ef4c07c06a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_catalog_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_catalog_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster.go index cb812eaf59..3e72aaad1c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_addon_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_addon_profile.go index f5cb901024..309ba1ae95 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_addon_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_addon_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_addon_profile_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_addon_profile_list.go index eb81fe1c4a..6c1c28e5d4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_addon_profile_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_addon_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_addon_profile_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_addon_profile_relationship.go index a998f3cb9b..6c16c55e1f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_addon_profile_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_addon_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_addon_profile_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_addon_profile_response.go index a790e67711..ad868316f6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_addon_profile_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_addon_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_certificate_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_certificate_configuration.go index b9868c3815..2f9d3f873c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_certificate_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_certificate_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_list.go index e495ee0e64..ea7440a1d6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_management_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_management_config.go index 444a43fa2c..b939a1ddb6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_management_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_management_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_profile.go index 551443df16..72cbdb3e8e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_profile_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_profile_list.go index 869e72328c..7a47687102 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_profile_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_profile_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_profile_relationship.go index 5c0f682f48..8ac27a4946 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_profile_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_profile_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_profile_response.go index 9f74eb1641..1ca80c5a3e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_profile_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_relationship.go index 3b5c22cdef..e35053ff33 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_response.go index 246496679b..9487eac02d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cluster_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cni_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cni_config.go index 72c245aff2..6d4843146d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cni_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_cni_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result.go index 86b0ad51fc..eb9cbf7cc7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_entry.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_entry.go index 592b3a2847..0a20039a13 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_entry.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_entry_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_entry_list.go index ee9b61dc44..df7f76e9fd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_entry_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_entry_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_entry_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_entry_relationship.go index e091598c27..f9f4f1b302 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_entry_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_entry_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_entry_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_entry_response.go index 4bd7b730ec..a0d0add6f7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_entry_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_entry_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_list.go index 4b337202fe..69e8399fdf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_relationship.go index ee6b91f47c..3ff350485e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_response.go index 0eabb90d46..6414331bdf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_config_result_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_configuration.go index 94def160e3..a382c51433 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_container_runtime_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_container_runtime_policy.go index 606f43a078..64a80d24bc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_container_runtime_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_container_runtime_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type KubernetesContainerRuntimePolicy struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Bridge IP (--bip) including Prefix (e.g., 172.17.0.5/24) that Docker will use for the default bridge network (docker0). Containers will connect to this if no other network is configured, not used by kubernetes pods because their network is managed by CNI. However this address space must not collide with other CIDRs on your networks, including the cluster's Service CIDR, Pod Network CIDR and IP Pools. - DockerBridgeNetworkCidr *string `json:"DockerBridgeNetworkCidr,omitempty"` + DockerBridgeNetworkCidr *string `json:"DockerBridgeNetworkCidr,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` DockerHttpProxy NullableKubernetesProxyConfig `json:"DockerHttpProxy,omitempty"` DockerHttpsProxy NullableKubernetesProxyConfig `json:"DockerHttpsProxy,omitempty"` DockerNoProxy []string `json:"DockerNoProxy,omitempty"` @@ -449,7 +449,7 @@ func (o *KubernetesContainerRuntimePolicy) UnmarshalJSON(data []byte) (err error // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Bridge IP (--bip) including Prefix (e.g., 172.17.0.5/24) that Docker will use for the default bridge network (docker0). Containers will connect to this if no other network is configured, not used by kubernetes pods because their network is managed by CNI. However this address space must not collide with other CIDRs on your networks, including the cluster's Service CIDR, Pod Network CIDR and IP Pools. - DockerBridgeNetworkCidr *string `json:"DockerBridgeNetworkCidr,omitempty"` + DockerBridgeNetworkCidr *string `json:"DockerBridgeNetworkCidr,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` DockerHttpProxy NullableKubernetesProxyConfig `json:"DockerHttpProxy,omitempty"` DockerHttpsProxy NullableKubernetesProxyConfig `json:"DockerHttpsProxy,omitempty"` DockerNoProxy []string `json:"DockerNoProxy,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_container_runtime_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_container_runtime_policy_list.go index 481c9aa3de..79b5777e46 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_container_runtime_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_container_runtime_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_container_runtime_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_container_runtime_policy_relationship.go index ea2327f126..f93e6e74a2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_container_runtime_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_container_runtime_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_container_runtime_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_container_runtime_policy_response.go index 5f702b7bff..8afb9ee553 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_container_runtime_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_container_runtime_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_daemon_set.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_daemon_set.go index ba6c86c88a..0ff83070f5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_daemon_set.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_daemon_set.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_daemon_set_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_daemon_set_list.go index c2c45fb254..9c85445c5d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_daemon_set_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_daemon_set_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_daemon_set_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_daemon_set_response.go index 6586c3ec10..0ee862a67b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_daemon_set_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_daemon_set_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_daemon_set_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_daemon_set_status.go index d3f22959cc..7c4ce8ecc1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_daemon_set_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_daemon_set_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_deployment.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_deployment.go index 037e5f23e5..9314511c1c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_deployment.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_deployment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_deployment_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_deployment_list.go index 05710ed4d4..2487ad719b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_deployment_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_deployment_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_deployment_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_deployment_response.go index 83e5ffad1d..f9b3160e71 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_deployment_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_deployment_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_deployment_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_deployment_status.go index 5c81233f19..430726b7d5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_deployment_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_deployment_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_essential_addon.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_essential_addon.go index 67c93b5489..6f9bf3986b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_essential_addon.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_essential_addon.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_esxi_virtual_machine_infra_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_esxi_virtual_machine_infra_config.go index 3107c24432..f0e4d95cb9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_esxi_virtual_machine_infra_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_esxi_virtual_machine_infra_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ethernet.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ethernet.go index 60ea5c374a..007d2b32f1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ethernet.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ethernet.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ethernet_matcher.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ethernet_matcher.go index 09d800ccc0..3ed41735af 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ethernet_matcher.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ethernet_matcher.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_http_proxy_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_http_proxy_policy.go index 6921cc09b5..af9634bfa4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_http_proxy_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_http_proxy_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_http_proxy_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_http_proxy_policy_list.go index 92d81f41d2..351eec3957 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_http_proxy_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_http_proxy_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_http_proxy_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_http_proxy_policy_relationship.go index 5622c7b810..45cc241c8b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_http_proxy_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_http_proxy_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_http_proxy_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_http_proxy_policy_response.go index 22e13f3292..b37c0541bc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_http_proxy_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_http_proxy_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ingress.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ingress.go index 36c475513b..7f2102ce40 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ingress.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ingress.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ingress_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ingress_list.go index f361ed8de1..c20dd3638b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ingress_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ingress_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ingress_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ingress_response.go index 221ca3c8e1..8ebd605359 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ingress_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ingress_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ingress_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ingress_status.go index 08439af416..f9fdc6ad3e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ingress_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ingress_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_instance_type_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_instance_type_details.go index 8a75a5f9ef..8b147abdef 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_instance_type_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_instance_type_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ip_v4_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ip_v4_config.go index 8b689fc788..2f896e35a3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ip_v4_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ip_v4_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type KubernetesIpV4Config struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IPv4 Address in CIDR format. - Ip *string `json:"Ip,omitempty"` + Ip *string `json:"Ip,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` Lease *MoMoRef `json:"Lease,omitempty"` AdditionalProperties map[string]interface{} } @@ -269,7 +269,7 @@ func (o *KubernetesIpV4Config) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // IPv4 Address in CIDR format. - Ip *string `json:"Ip,omitempty"` + Ip *string `json:"Ip,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` Lease *MoMoRef `json:"Lease,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_key_value.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_key_value.go index d21a382061..41bc6c365e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_key_value.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_key_value.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_kubernetes_resource.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_kubernetes_resource.go index b101f54f56..c8462a4328 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_kubernetes_resource.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_kubernetes_resource.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_load_balancer.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_load_balancer.go index df281a349f..7ddc4162c0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_load_balancer.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_load_balancer.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_network_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_network_interface.go index cad40cae21..564d260e04 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_network_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_network_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_network_interface_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_network_interface_spec.go index 0e7419f192..0b860bdd81 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_network_interface_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_network_interface_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_network_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_network_policy.go index 5368f0533f..3fece1e6be 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_network_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_network_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -32,9 +32,9 @@ type KubernetesNetworkPolicy struct { // Supported CNI type. Currently we only support Calico. * `Calico` - Calico CNI plugin as described in https://github.com/projectcalico/cni-plugin. * `Aci` - Cisco ACI Container Network Interface plugin. CniType *string `json:"CniType,omitempty"` // CIDR block to allocate Pod network IP addresses from. - PodNetworkCidr *string `json:"PodNetworkCidr,omitempty"` + PodNetworkCidr *string `json:"PodNetworkCidr,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // CIDR block to allocate cluster service IP addresses from. - ServiceCidr *string `json:"ServiceCidr,omitempty"` + ServiceCidr *string `json:"ServiceCidr,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // An array of relationships to kubernetesClusterProfile resources. ClusterProfiles []KubernetesClusterProfileRelationship `json:"ClusterProfiles,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` @@ -446,9 +446,9 @@ func (o *KubernetesNetworkPolicy) UnmarshalJSON(data []byte) (err error) { // Supported CNI type. Currently we only support Calico. * `Calico` - Calico CNI plugin as described in https://github.com/projectcalico/cni-plugin. * `Aci` - Cisco ACI Container Network Interface plugin. CniType *string `json:"CniType,omitempty"` // CIDR block to allocate Pod network IP addresses from. - PodNetworkCidr *string `json:"PodNetworkCidr,omitempty"` + PodNetworkCidr *string `json:"PodNetworkCidr,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // CIDR block to allocate cluster service IP addresses from. - ServiceCidr *string `json:"ServiceCidr,omitempty"` + ServiceCidr *string `json:"ServiceCidr,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // An array of relationships to kubernetesClusterProfile resources. ClusterProfiles []KubernetesClusterProfileRelationship `json:"ClusterProfiles,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_network_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_network_policy_list.go index 8a4d8018ee..836d0fe238 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_network_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_network_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_network_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_network_policy_relationship.go index 44708e682b..ad1d56ac4b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_network_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_network_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_network_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_network_policy_response.go index 6330bc61b3..0408978571 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_network_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_network_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node.go index 4108da52dc..202b8eb133 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_address.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_address.go index 0bc19e3d68..f6d2437140 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_address.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_address.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_group_label.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_group_label.go index caf0ab1bd5..f8b1080245 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_group_label.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_group_label.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_group_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_group_profile.go index 24163b1b2a..5692d480f5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_group_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_group_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_group_profile_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_group_profile_list.go index 603dffb84f..02b64d7b00 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_group_profile_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_group_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_group_profile_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_group_profile_relationship.go index 2b64d04411..2bccd3a573 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_group_profile_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_group_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_group_profile_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_group_profile_response.go index f8300ef043..70785ca210 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_group_profile_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_group_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_group_taint.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_group_taint.go index 4afc1c5fcf..6ed17fe03e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_group_taint.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_group_taint.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_info.go index d8e3e9a5f4..3cd832a7ba 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_list.go index 295aa04f3f..68a32df2f7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_profile.go index a10a1d0e9d..4765805bf1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_profile_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_profile_relationship.go index bae0a23fc2..525ff1875e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_profile_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_response.go index 23de45997f..5d84889efb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_spec.go index 0c5c3fb9a8..6c091c3357 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_status.go index 8e19e35973..7f885a7b6e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_node_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_nvidia_gpu_product.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_nvidia_gpu_product.go index 84c9b6f47d..c08d7219e0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_nvidia_gpu_product.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_nvidia_gpu_product.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_nvidia_gpu_product_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_nvidia_gpu_product_list.go index 253a7dd6ed..00208bf60b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_nvidia_gpu_product_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_nvidia_gpu_product_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_nvidia_gpu_product_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_nvidia_gpu_product_response.go index e0644c72c2..8110270f0d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_nvidia_gpu_product_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_nvidia_gpu_product_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_object_meta.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_object_meta.go index 7c325c79ee..f0a65e083f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_object_meta.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_object_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ovs_bond.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ovs_bond.go index 9a5439f88b..9cb1ba10fc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ovs_bond.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_ovs_bond.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_pod.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_pod.go index 3e6a92131c..0628600a7c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_pod.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_pod.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_pod_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_pod_list.go index f7c65d6a2f..c7cc0cc2a8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_pod_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_pod_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_pod_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_pod_response.go index c734e481cd..5e9ad5f597 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_pod_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_pod_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_pod_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_pod_status.go index 2280d443fe..16036628e5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_pod_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_pod_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_proxy_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_proxy_config.go index 5643fa2f7e..f53c9db898 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_proxy_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_proxy_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type KubernetesProxyConfig struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // HTTP/HTTPS Proxy server FQDN or IP. - Hostname *string `json:"Hostname,omitempty"` + Hostname *string `json:"Hostname,omitempty" validate:"regexp=^[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?$|^[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?(\\\\.[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?)*(\\\\.[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?)$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password for the HTTP/HTTPS Proxy. @@ -418,7 +418,7 @@ func (o *KubernetesProxyConfig) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // HTTP/HTTPS Proxy server FQDN or IP. - Hostname *string `json:"Hostname,omitempty"` + Hostname *string `json:"Hostname,omitempty" validate:"regexp=^[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?$|^[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?(\\\\.[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?)*(\\\\.[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?)$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password for the HTTP/HTTPS Proxy. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_route.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_route.go index 22c233ba5f..a98abab95b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_route.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_route.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type KubernetesRoute struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The destination subnet, if set to 0.0.0.0/0 then the Route is considered a default route. - To *string `json:"To,omitempty"` + To *string `json:"To,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Via is the gateway for traffic destined for the subnet in the To property. - Via *string `json:"Via,omitempty"` + Via *string `json:"Via,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` AdditionalProperties map[string]interface{} } @@ -270,9 +270,9 @@ func (o *KubernetesRoute) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The destination subnet, if set to 0.0.0.0/0 then the Route is considered a default route. - To *string `json:"To,omitempty"` + To *string `json:"To,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Via is the gateway for traffic destined for the subnet in the To property. - Via *string `json:"Via,omitempty"` + Via *string `json:"Via,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` } varKubernetesRouteWithoutEmbeddedStruct := KubernetesRouteWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_service.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_service.go index 8d772c6d40..23aebf4125 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_service.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_service.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_service_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_service_list.go index 04fe3a6cf1..c29b7e09e8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_service_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_service_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_service_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_service_response.go index 8f7a990f67..d2c0c1aa06 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_service_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_service_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_service_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_service_status.go index 301df05615..a2a0c011a3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_service_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_service_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_stateful_set.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_stateful_set.go index a7a9032755..040af1ce73 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_stateful_set.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_stateful_set.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_stateful_set_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_stateful_set_list.go index 0bd7b5118d..68f161d1b2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_stateful_set_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_stateful_set_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_stateful_set_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_stateful_set_response.go index b083348750..2217688c6a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_stateful_set_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_stateful_set_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_stateful_set_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_stateful_set_status.go index a69724f4fc..5827036d81 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_stateful_set_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_stateful_set_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_sys_config_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_sys_config_policy.go index 06ead2f1de..27f1b678f8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_sys_config_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_sys_config_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type KubernetesSysConfigPolicy struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The DNS Search Domain Name. - DnsDomainName *string `json:"DnsDomainName,omitempty"` + DnsDomainName *string `json:"DnsDomainName,omitempty" validate:"regexp=^$|^([a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\\\\.)+[a-zA-Z]{2,63}$"` DnsServers []string `json:"DnsServers,omitempty"` NtpServers []string `json:"NtpServers,omitempty"` // The timezone of the node's system clock. * `Pacific/Niue` - * `Africa/Abidjan` - * `Africa/Accra` - * `Africa/Addis_Ababa` - * `Africa/Algiers` - * `Africa/Asmara` - * `Africa/Bamako` - * `Africa/Bangui` - * `Africa/Banjul` - * `Africa/Bissau` - * `Africa/Blantyre` - * `Africa/Brazzaville` - * `Africa/Bujumbura` - * `Africa/Cairo` - * `Africa/Casablanca` - * `Africa/Ceuta` - * `Africa/Conakry` - * `Africa/Dakar` - * `Africa/Dar_es_Salaam` - * `Africa/Djibouti` - * `Africa/Douala` - * `Africa/El_Aaiun` - * `Africa/Freetown` - * `Africa/Gaborone` - * `Africa/Harare` - * `Africa/Johannesburg` - * `Africa/Juba` - * `Africa/Kampala` - * `Africa/Khartoum` - * `Africa/Kigali` - * `Africa/Kinshasa` - * `Africa/Lagos` - * `Africa/Libreville` - * `Africa/Lome` - * `Africa/Luanda` - * `Africa/Lubumbashi` - * `Africa/Lusaka` - * `Africa/Malabo` - * `Africa/Maputo` - * `Africa/Maseru` - * `Africa/Mbabane` - * `Africa/Mogadishu` - * `Africa/Monrovia` - * `Africa/Nairobi` - * `Africa/Ndjamena` - * `Africa/Niamey` - * `Africa/Nouakchott` - * `Africa/Ouagadougou` - * `Africa/Porto-Novo` - * `Africa/Sao_Tome` - * `Africa/Tripoli` - * `Africa/Tunis` - * `Africa/Windhoek` - * `America/Adak` - * `America/Anchorage` - * `America/Anguilla` - * `America/Antigua` - * `America/Araguaina` - * `America/Argentina/Buenos_Aires` - * `America/Argentina/Catamarca` - * `America/Argentina/Cordoba` - * `America/Argentina/Jujuy` - * `America/Argentina/La_Rioja` - * `America/Argentina/Mendoza` - * `America/Argentina/Rio_Gallegos` - * `America/Argentina/Salta` - * `America/Argentina/San_Juan` - * `America/Argentina/San_Luis` - * `America/Argentina/Tucuman` - * `America/Argentina/Ushuaia` - * `America/Aruba` - * `America/Asuncion` - * `America/Atikokan` - * `America/Bahia` - * `America/Bahia_Banderas` - * `America/Barbados` - * `America/Belem` - * `America/Belize` - * `America/Blanc-Sablon` - * `America/Boa_Vista` - * `America/Bogota` - * `America/Boise` - * `America/Cambridge_Bay` - * `America/Campo_Grande` - * `America/Cancun` - * `America/Caracas` - * `America/Cayenne` - * `America/Cayman` - * `America/Chicago` - * `America/Chihuahua` - * `America/Costa_Rica` - * `America/Creston` - * `America/Cuiaba` - * `America/Curacao` - * `America/Danmarkshavn` - * `America/Dawson` - * `America/Dawson_Creek` - * `America/Denver` - * `America/Detroit` - * `America/Dominica` - * `America/Edmonton` - * `America/Eirunepe` - * `America/El_Salvador` - * `America/Fortaleza` - * `America/Glace_Bay` - * `America/Godthab` - * `America/Goose_Bay` - * `America/Grand_Turk` - * `America/Grenada` - * `America/Guadeloupe` - * `America/Guatemala` - * `America/Guayaquil` - * `America/Guyana` - * `America/Halifax` - * `America/Havana` - * `America/Hermosillo` - * `America/Indiana/Indianapolis` - * `America/Indiana/Knox` - * `America/Indiana/Marengo` - * `America/Indiana/Petersburg` - * `America/Indiana/Tell_City` - * `America/Indiana/Vevay` - * `America/Indiana/Vincennes` - * `America/Indiana/Winamac` - * `America/Inuvik` - * `America/Iqaluit` - * `America/Jamaica` - * `America/Juneau` - * `America/Kentucky/Louisville` - * `America/Kentucky/Monticello` - * `America/Kralendijk` - * `America/La_Paz` - * `America/Lima` - * `America/Los_Angeles` - * `America/Lower_Princes` - * `America/Maceio` - * `America/Managua` - * `America/Manaus` - * `America/Marigot` - * `America/Martinique` - * `America/Matamoros` - * `America/Mazatlan` - * `America/Menominee` - * `America/Merida` - * `America/Metlakatla` - * `America/Mexico_City` - * `America/Miquelon` - * `America/Moncton` - * `America/Monterrey` - * `America/Montevideo` - * `America/Montreal` - * `America/Montserrat` - * `America/Nassau` - * `America/New_York` - * `America/Nipigon` - * `America/Nome` - * `America/Noronha` - * `America/North_Dakota/Beulah` - * `America/North_Dakota/Center` - * `America/North_Dakota/New_Salem` - * `America/Ojinaga` - * `America/Panama` - * `America/Pangnirtung` - * `America/Paramaribo` - * `America/Phoenix` - * `America/Port-au-Prince` - * `America/Port_of_Spain` - * `America/Porto_Velho` - * `America/Puerto_Rico` - * `America/Rainy_River` - * `America/Rankin_Inlet` - * `America/Recife` - * `America/Regina` - * `America/Resolute` - * `America/Rio_Branco` - * `America/Santa_Isabel` - * `America/Santarem` - * `America/Santiago` - * `America/Santo_Domingo` - * `America/Sao_Paulo` - * `America/Scoresbysund` - * `America/Shiprock` - * `America/Sitka` - * `America/St_Barthelemy` - * `America/St_Johns` - * `America/St_Kitts` - * `America/St_Lucia` - * `America/St_Thomas` - * `America/St_Vincent` - * `America/Swift_Current` - * `America/Tegucigalpa` - * `America/Thule` - * `America/Thunder_Bay` - * `America/Tijuana` - * `America/Toronto` - * `America/Tortola` - * `America/Vancouver` - * `America/Whitehorse` - * `America/Winnipeg` - * `America/Yakutat` - * `America/Yellowknife` - * `Antarctica/Casey` - * `Antarctica/Davis` - * `Antarctica/DumontDUrville` - * `Antarctica/Macquarie` - * `Antarctica/Mawson` - * `Antarctica/McMurdo` - * `Antarctica/Palmer` - * `Antarctica/Rothera` - * `Antarctica/South_Pole` - * `Antarctica/Syowa` - * `Antarctica/Troll` - * `Antarctica/Vostok` - * `Arctic/Longyearbyen` - * `Asia/Aden` - * `Asia/Almaty` - * `Asia/Amman` - * `Asia/Anadyr` - * `Asia/Aqtau` - * `Asia/Aqtobe` - * `Asia/Ashgabat` - * `Asia/Baghdad` - * `Asia/Bahrain` - * `Asia/Baku` - * `Asia/Bangkok` - * `Asia/Beirut` - * `Asia/Bishkek` - * `Asia/Brunei` - * `Asia/Calcutta` - * `Asia/Choibalsan` - * `Asia/Chongqing` - * `Asia/Colombo` - * `Asia/Damascus` - * `Asia/Dhaka` - * `Asia/Dili` - * `Asia/Dubai` - * `Asia/Dushanbe` - * `Asia/Gaza` - * `Asia/Harbin` - * `Asia/Hebron` - * `Asia/Ho_Chi_Minh` - * `Asia/Hong_Kong` - * `Asia/Hovd` - * `Asia/Irkutsk` - * `Asia/Jakarta` - * `Asia/Jayapura` - * `Asia/Jerusalem` - * `Asia/Kabul` - * `Asia/Kamchatka` - * `Asia/Karachi` - * `Asia/Kashgar` - * `Asia/Kathmandu` - * `Asia/Katmandu` - * `Asia/Khandyga` - * `Asia/Kolkata` - * `Asia/Krasnoyarsk` - * `Asia/Kuala_Lumpur` - * `Asia/Kuching` - * `Asia/Kuwait` - * `Asia/Macau` - * `Asia/Magadan` - * `Asia/Makassar` - * `Asia/Manila` - * `Asia/Muscat` - * `Asia/Nicosia` - * `Asia/Novokuznetsk` - * `Asia/Novosibirsk` - * `Asia/Omsk` - * `Asia/Oral` - * `Asia/Phnom_Penh` - * `Asia/Pontianak` - * `Asia/Pyongyang` - * `Asia/Qatar` - * `Asia/Qyzylorda` - * `Asia/Rangoon` - * `Asia/Riyadh` - * `Asia/Saigon` - * `Asia/Sakhalin` - * `Asia/Samarkand` - * `Asia/Seoul` - * `Asia/Shanghai` - * `Asia/Singapore` - * `Asia/Taipei` - * `Asia/Tashkent` - * `Asia/Tbilisi` - * `Asia/Tehran` - * `Asia/Thimphu` - * `Asia/Tokyo` - * `Asia/Ulaanbaatar` - * `Asia/Urumqi` - * `Asia/Ust-Nera` - * `Asia/Vientiane` - * `Asia/Vladivostok` - * `Asia/Yakutsk` - * `Asia/Yekaterinburg` - * `Asia/Yerevan` - * `Atlantic/Azores` - * `Atlantic/Bermuda` - * `Atlantic/Canary` - * `Atlantic/Cape_Verde` - * `Atlantic/Faroe` - * `Atlantic/Madeira` - * `Atlantic/Reykjavik` - * `Atlantic/South_Georgia` - * `Atlantic/St_Helena` - * `Atlantic/Stanley` - * `Australia/Adelaide` - * `Australia/Brisbane` - * `Australia/Broken_Hill` - * `Australia/Currie` - * `Australia/Darwin` - * `Australia/Eucla` - * `Australia/Hobart` - * `Australia/Lindeman` - * `Australia/Lord_Howe` - * `Australia/Melbourne` - * `Australia/Perth` - * `Australia/Sydney` - * `Etc/GMT` - * `Europe/Amsterdam` - * `Europe/Andorra` - * `Europe/Athens` - * `Europe/Belgrade` - * `Europe/Berlin` - * `Europe/Bratislava` - * `Europe/Brussels` - * `Europe/Bucharest` - * `Europe/Budapest` - * `Europe/Busingen` - * `Europe/Chisinau` - * `Europe/Copenhagen` - * `Europe/Dublin` - * `Europe/Gibraltar` - * `Europe/Guernsey` - * `Europe/Helsinki` - * `Europe/Isle_of_Man` - * `Europe/Istanbul` - * `Europe/Jersey` - * `Europe/Kaliningrad` - * `Europe/Kiev` - * `Europe/Lisbon` - * `Europe/Ljubljana` - * `Europe/London` - * `Europe/Luxembourg` - * `Europe/Madrid` - * `Europe/Malta` - * `Europe/Mariehamn` - * `Europe/Minsk` - * `Europe/Monaco` - * `Europe/Moscow` - * `Europe/Oslo` - * `Europe/Paris` - * `Europe/Podgorica` - * `Europe/Prague` - * `Europe/Riga` - * `Europe/Rome` - * `Europe/Samara` - * `Europe/San_Marino` - * `Europe/Sarajevo` - * `Europe/Simferopol` - * `Europe/Skopje` - * `Europe/Sofia` - * `Europe/Stockholm` - * `Europe/Tallinn` - * `Europe/Tirane` - * `Europe/Uzhgorod` - * `Europe/Vaduz` - * `Europe/Vatican` - * `Europe/Vienna` - * `Europe/Vilnius` - * `Europe/Volgograd` - * `Europe/Warsaw` - * `Europe/Zagreb` - * `Europe/Zaporozhye` - * `Europe/Zurich` - * `Indian/Antananarivo` - * `Indian/Chagos` - * `Indian/Christmas` - * `Indian/Cocos` - * `Indian/Comoro` - * `Indian/Kerguelen` - * `Indian/Mahe` - * `Indian/Maldives` - * `Indian/Mauritius` - * `Indian/Mayotte` - * `Indian/Reunion` - * `Pacific/Apia` - * `Pacific/Auckland` - * `Pacific/Chatham` - * `Pacific/Chuuk` - * `Pacific/Easter` - * `Pacific/Efate` - * `Pacific/Enderbury` - * `Pacific/Fakaofo` - * `Pacific/Fiji` - * `Pacific/Funafuti` - * `Pacific/Galapagos` - * `Pacific/Gambier` - * `Pacific/Guadalcanal` - * `Pacific/Guam` - * `Pacific/Honolulu` - * `Pacific/Johnston` - * `Pacific/Kiritimati` - * `Pacific/Kosrae` - * `Pacific/Kwajalein` - * `Pacific/Majuro` - * `Pacific/Marquesas` - * `Pacific/Midway` - * `Pacific/Nauru` - * `Pacific/Norfolk` - * `Pacific/Noumea` - * `Pacific/Pago_Pago` - * `Pacific/Palau` - * `Pacific/Pitcairn` - * `Pacific/Pohnpei` - * `Pacific/Port_Moresby` - * `Pacific/Rarotonga` - * `Pacific/Saipan` - * `Pacific/Tahiti` - * `Pacific/Tarawa` - * `Pacific/Tongatapu` - * `Pacific/Wake` - * `Pacific/Wallis` - * `UTC` - @@ -433,7 +433,7 @@ func (o *KubernetesSysConfigPolicy) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The DNS Search Domain Name. - DnsDomainName *string `json:"DnsDomainName,omitempty"` + DnsDomainName *string `json:"DnsDomainName,omitempty" validate:"regexp=^$|^([a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\\\\.)+[a-zA-Z]{2,63}$"` DnsServers []string `json:"DnsServers,omitempty"` NtpServers []string `json:"NtpServers,omitempty"` // The timezone of the node's system clock. * `Pacific/Niue` - * `Africa/Abidjan` - * `Africa/Accra` - * `Africa/Addis_Ababa` - * `Africa/Algiers` - * `Africa/Asmara` - * `Africa/Bamako` - * `Africa/Bangui` - * `Africa/Banjul` - * `Africa/Bissau` - * `Africa/Blantyre` - * `Africa/Brazzaville` - * `Africa/Bujumbura` - * `Africa/Cairo` - * `Africa/Casablanca` - * `Africa/Ceuta` - * `Africa/Conakry` - * `Africa/Dakar` - * `Africa/Dar_es_Salaam` - * `Africa/Djibouti` - * `Africa/Douala` - * `Africa/El_Aaiun` - * `Africa/Freetown` - * `Africa/Gaborone` - * `Africa/Harare` - * `Africa/Johannesburg` - * `Africa/Juba` - * `Africa/Kampala` - * `Africa/Khartoum` - * `Africa/Kigali` - * `Africa/Kinshasa` - * `Africa/Lagos` - * `Africa/Libreville` - * `Africa/Lome` - * `Africa/Luanda` - * `Africa/Lubumbashi` - * `Africa/Lusaka` - * `Africa/Malabo` - * `Africa/Maputo` - * `Africa/Maseru` - * `Africa/Mbabane` - * `Africa/Mogadishu` - * `Africa/Monrovia` - * `Africa/Nairobi` - * `Africa/Ndjamena` - * `Africa/Niamey` - * `Africa/Nouakchott` - * `Africa/Ouagadougou` - * `Africa/Porto-Novo` - * `Africa/Sao_Tome` - * `Africa/Tripoli` - * `Africa/Tunis` - * `Africa/Windhoek` - * `America/Adak` - * `America/Anchorage` - * `America/Anguilla` - * `America/Antigua` - * `America/Araguaina` - * `America/Argentina/Buenos_Aires` - * `America/Argentina/Catamarca` - * `America/Argentina/Cordoba` - * `America/Argentina/Jujuy` - * `America/Argentina/La_Rioja` - * `America/Argentina/Mendoza` - * `America/Argentina/Rio_Gallegos` - * `America/Argentina/Salta` - * `America/Argentina/San_Juan` - * `America/Argentina/San_Luis` - * `America/Argentina/Tucuman` - * `America/Argentina/Ushuaia` - * `America/Aruba` - * `America/Asuncion` - * `America/Atikokan` - * `America/Bahia` - * `America/Bahia_Banderas` - * `America/Barbados` - * `America/Belem` - * `America/Belize` - * `America/Blanc-Sablon` - * `America/Boa_Vista` - * `America/Bogota` - * `America/Boise` - * `America/Cambridge_Bay` - * `America/Campo_Grande` - * `America/Cancun` - * `America/Caracas` - * `America/Cayenne` - * `America/Cayman` - * `America/Chicago` - * `America/Chihuahua` - * `America/Costa_Rica` - * `America/Creston` - * `America/Cuiaba` - * `America/Curacao` - * `America/Danmarkshavn` - * `America/Dawson` - * `America/Dawson_Creek` - * `America/Denver` - * `America/Detroit` - * `America/Dominica` - * `America/Edmonton` - * `America/Eirunepe` - * `America/El_Salvador` - * `America/Fortaleza` - * `America/Glace_Bay` - * `America/Godthab` - * `America/Goose_Bay` - * `America/Grand_Turk` - * `America/Grenada` - * `America/Guadeloupe` - * `America/Guatemala` - * `America/Guayaquil` - * `America/Guyana` - * `America/Halifax` - * `America/Havana` - * `America/Hermosillo` - * `America/Indiana/Indianapolis` - * `America/Indiana/Knox` - * `America/Indiana/Marengo` - * `America/Indiana/Petersburg` - * `America/Indiana/Tell_City` - * `America/Indiana/Vevay` - * `America/Indiana/Vincennes` - * `America/Indiana/Winamac` - * `America/Inuvik` - * `America/Iqaluit` - * `America/Jamaica` - * `America/Juneau` - * `America/Kentucky/Louisville` - * `America/Kentucky/Monticello` - * `America/Kralendijk` - * `America/La_Paz` - * `America/Lima` - * `America/Los_Angeles` - * `America/Lower_Princes` - * `America/Maceio` - * `America/Managua` - * `America/Manaus` - * `America/Marigot` - * `America/Martinique` - * `America/Matamoros` - * `America/Mazatlan` - * `America/Menominee` - * `America/Merida` - * `America/Metlakatla` - * `America/Mexico_City` - * `America/Miquelon` - * `America/Moncton` - * `America/Monterrey` - * `America/Montevideo` - * `America/Montreal` - * `America/Montserrat` - * `America/Nassau` - * `America/New_York` - * `America/Nipigon` - * `America/Nome` - * `America/Noronha` - * `America/North_Dakota/Beulah` - * `America/North_Dakota/Center` - * `America/North_Dakota/New_Salem` - * `America/Ojinaga` - * `America/Panama` - * `America/Pangnirtung` - * `America/Paramaribo` - * `America/Phoenix` - * `America/Port-au-Prince` - * `America/Port_of_Spain` - * `America/Porto_Velho` - * `America/Puerto_Rico` - * `America/Rainy_River` - * `America/Rankin_Inlet` - * `America/Recife` - * `America/Regina` - * `America/Resolute` - * `America/Rio_Branco` - * `America/Santa_Isabel` - * `America/Santarem` - * `America/Santiago` - * `America/Santo_Domingo` - * `America/Sao_Paulo` - * `America/Scoresbysund` - * `America/Shiprock` - * `America/Sitka` - * `America/St_Barthelemy` - * `America/St_Johns` - * `America/St_Kitts` - * `America/St_Lucia` - * `America/St_Thomas` - * `America/St_Vincent` - * `America/Swift_Current` - * `America/Tegucigalpa` - * `America/Thule` - * `America/Thunder_Bay` - * `America/Tijuana` - * `America/Toronto` - * `America/Tortola` - * `America/Vancouver` - * `America/Whitehorse` - * `America/Winnipeg` - * `America/Yakutat` - * `America/Yellowknife` - * `Antarctica/Casey` - * `Antarctica/Davis` - * `Antarctica/DumontDUrville` - * `Antarctica/Macquarie` - * `Antarctica/Mawson` - * `Antarctica/McMurdo` - * `Antarctica/Palmer` - * `Antarctica/Rothera` - * `Antarctica/South_Pole` - * `Antarctica/Syowa` - * `Antarctica/Troll` - * `Antarctica/Vostok` - * `Arctic/Longyearbyen` - * `Asia/Aden` - * `Asia/Almaty` - * `Asia/Amman` - * `Asia/Anadyr` - * `Asia/Aqtau` - * `Asia/Aqtobe` - * `Asia/Ashgabat` - * `Asia/Baghdad` - * `Asia/Bahrain` - * `Asia/Baku` - * `Asia/Bangkok` - * `Asia/Beirut` - * `Asia/Bishkek` - * `Asia/Brunei` - * `Asia/Calcutta` - * `Asia/Choibalsan` - * `Asia/Chongqing` - * `Asia/Colombo` - * `Asia/Damascus` - * `Asia/Dhaka` - * `Asia/Dili` - * `Asia/Dubai` - * `Asia/Dushanbe` - * `Asia/Gaza` - * `Asia/Harbin` - * `Asia/Hebron` - * `Asia/Ho_Chi_Minh` - * `Asia/Hong_Kong` - * `Asia/Hovd` - * `Asia/Irkutsk` - * `Asia/Jakarta` - * `Asia/Jayapura` - * `Asia/Jerusalem` - * `Asia/Kabul` - * `Asia/Kamchatka` - * `Asia/Karachi` - * `Asia/Kashgar` - * `Asia/Kathmandu` - * `Asia/Katmandu` - * `Asia/Khandyga` - * `Asia/Kolkata` - * `Asia/Krasnoyarsk` - * `Asia/Kuala_Lumpur` - * `Asia/Kuching` - * `Asia/Kuwait` - * `Asia/Macau` - * `Asia/Magadan` - * `Asia/Makassar` - * `Asia/Manila` - * `Asia/Muscat` - * `Asia/Nicosia` - * `Asia/Novokuznetsk` - * `Asia/Novosibirsk` - * `Asia/Omsk` - * `Asia/Oral` - * `Asia/Phnom_Penh` - * `Asia/Pontianak` - * `Asia/Pyongyang` - * `Asia/Qatar` - * `Asia/Qyzylorda` - * `Asia/Rangoon` - * `Asia/Riyadh` - * `Asia/Saigon` - * `Asia/Sakhalin` - * `Asia/Samarkand` - * `Asia/Seoul` - * `Asia/Shanghai` - * `Asia/Singapore` - * `Asia/Taipei` - * `Asia/Tashkent` - * `Asia/Tbilisi` - * `Asia/Tehran` - * `Asia/Thimphu` - * `Asia/Tokyo` - * `Asia/Ulaanbaatar` - * `Asia/Urumqi` - * `Asia/Ust-Nera` - * `Asia/Vientiane` - * `Asia/Vladivostok` - * `Asia/Yakutsk` - * `Asia/Yekaterinburg` - * `Asia/Yerevan` - * `Atlantic/Azores` - * `Atlantic/Bermuda` - * `Atlantic/Canary` - * `Atlantic/Cape_Verde` - * `Atlantic/Faroe` - * `Atlantic/Madeira` - * `Atlantic/Reykjavik` - * `Atlantic/South_Georgia` - * `Atlantic/St_Helena` - * `Atlantic/Stanley` - * `Australia/Adelaide` - * `Australia/Brisbane` - * `Australia/Broken_Hill` - * `Australia/Currie` - * `Australia/Darwin` - * `Australia/Eucla` - * `Australia/Hobart` - * `Australia/Lindeman` - * `Australia/Lord_Howe` - * `Australia/Melbourne` - * `Australia/Perth` - * `Australia/Sydney` - * `Etc/GMT` - * `Europe/Amsterdam` - * `Europe/Andorra` - * `Europe/Athens` - * `Europe/Belgrade` - * `Europe/Berlin` - * `Europe/Bratislava` - * `Europe/Brussels` - * `Europe/Bucharest` - * `Europe/Budapest` - * `Europe/Busingen` - * `Europe/Chisinau` - * `Europe/Copenhagen` - * `Europe/Dublin` - * `Europe/Gibraltar` - * `Europe/Guernsey` - * `Europe/Helsinki` - * `Europe/Isle_of_Man` - * `Europe/Istanbul` - * `Europe/Jersey` - * `Europe/Kaliningrad` - * `Europe/Kiev` - * `Europe/Lisbon` - * `Europe/Ljubljana` - * `Europe/London` - * `Europe/Luxembourg` - * `Europe/Madrid` - * `Europe/Malta` - * `Europe/Mariehamn` - * `Europe/Minsk` - * `Europe/Monaco` - * `Europe/Moscow` - * `Europe/Oslo` - * `Europe/Paris` - * `Europe/Podgorica` - * `Europe/Prague` - * `Europe/Riga` - * `Europe/Rome` - * `Europe/Samara` - * `Europe/San_Marino` - * `Europe/Sarajevo` - * `Europe/Simferopol` - * `Europe/Skopje` - * `Europe/Sofia` - * `Europe/Stockholm` - * `Europe/Tallinn` - * `Europe/Tirane` - * `Europe/Uzhgorod` - * `Europe/Vaduz` - * `Europe/Vatican` - * `Europe/Vienna` - * `Europe/Vilnius` - * `Europe/Volgograd` - * `Europe/Warsaw` - * `Europe/Zagreb` - * `Europe/Zaporozhye` - * `Europe/Zurich` - * `Indian/Antananarivo` - * `Indian/Chagos` - * `Indian/Christmas` - * `Indian/Cocos` - * `Indian/Comoro` - * `Indian/Kerguelen` - * `Indian/Mahe` - * `Indian/Maldives` - * `Indian/Mauritius` - * `Indian/Mayotte` - * `Indian/Reunion` - * `Pacific/Apia` - * `Pacific/Auckland` - * `Pacific/Chatham` - * `Pacific/Chuuk` - * `Pacific/Easter` - * `Pacific/Efate` - * `Pacific/Enderbury` - * `Pacific/Fakaofo` - * `Pacific/Fiji` - * `Pacific/Funafuti` - * `Pacific/Galapagos` - * `Pacific/Gambier` - * `Pacific/Guadalcanal` - * `Pacific/Guam` - * `Pacific/Honolulu` - * `Pacific/Johnston` - * `Pacific/Kiritimati` - * `Pacific/Kosrae` - * `Pacific/Kwajalein` - * `Pacific/Majuro` - * `Pacific/Marquesas` - * `Pacific/Midway` - * `Pacific/Nauru` - * `Pacific/Norfolk` - * `Pacific/Noumea` - * `Pacific/Pago_Pago` - * `Pacific/Palau` - * `Pacific/Pitcairn` - * `Pacific/Pohnpei` - * `Pacific/Port_Moresby` - * `Pacific/Rarotonga` - * `Pacific/Saipan` - * `Pacific/Tahiti` - * `Pacific/Tarawa` - * `Pacific/Tongatapu` - * `Pacific/Wake` - * `Pacific/Wallis` - * `UTC` - diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_sys_config_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_sys_config_policy_list.go index 2df05290f2..1b45d55b16 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_sys_config_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_sys_config_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_sys_config_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_sys_config_policy_relationship.go index 6b3a8972e2..63588160fa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_sys_config_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_sys_config_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_sys_config_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_sys_config_policy_response.go index b95ffe1a2f..c0ea113e38 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_sys_config_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_sys_config_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_taint.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_taint.go index 1e2a63ba67..eac801a2fa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_taint.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_taint.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_trusted_registries_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_trusted_registries_policy.go index 05cf1b0689..66520c3c0b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_trusted_registries_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_trusted_registries_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_trusted_registries_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_trusted_registries_policy_list.go index b4b6f0703f..381102ec69 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_trusted_registries_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_trusted_registries_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_trusted_registries_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_trusted_registries_policy_relationship.go index 3355ffe615..bfde564778 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_trusted_registries_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_trusted_registries_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_trusted_registries_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_trusted_registries_policy_response.go index 56db2f8030..fa2ad05eea 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_trusted_registries_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_trusted_registries_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version.go index 4b0b703540..f9500a8331 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -34,7 +34,7 @@ type KubernetesVersion struct { // The iks utility container to use for the kubernetes version. IksUtilityContainer *string `json:"IksUtilityContainer,omitempty"` // Desired Kubernetes version. - KubernetesVersion *string `json:"KubernetesVersion,omitempty"` + KubernetesVersion *string `json:"KubernetesVersion,omitempty" validate:"regexp=^$|^v[0-9]+\\\\.[0-9]+\\\\.[0-9]+$"` // The name of this IKS kubernetes version. Name *string `json:"Name,omitempty"` BootIso NullableSoftwareSolutionDistributableRelationship `json:"BootIso,omitempty"` @@ -621,7 +621,7 @@ func (o *KubernetesVersion) UnmarshalJSON(data []byte) (err error) { // The iks utility container to use for the kubernetes version. IksUtilityContainer *string `json:"IksUtilityContainer,omitempty"` // Desired Kubernetes version. - KubernetesVersion *string `json:"KubernetesVersion,omitempty"` + KubernetesVersion *string `json:"KubernetesVersion,omitempty" validate:"regexp=^$|^v[0-9]+\\\\.[0-9]+\\\\.[0-9]+$"` // The name of this IKS kubernetes version. Name *string `json:"Name,omitempty"` BootIso NullableSoftwareSolutionDistributableRelationship `json:"BootIso,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_list.go index 5ce8d8af84..fa3652f719 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_policy.go index 3642a64152..9382eba636 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_policy_list.go index 0d367040ee..358fa372b3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_policy_relationship.go index d18fad1890..fc80f4ed3a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_policy_response.go index ab615456e3..8fc9155c1b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_relationship.go index b810ce2865..31adaf305c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_response.go index 32ecd33daa..89514e5a4a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_version_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy.go index 47b1e32682..717fe4c82e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy_list.go index 5af40301bd..4bbc63a12a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy_relationship.go index 0b0ce80630..fa104c7962 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy_response.go index da5a1f008e..88773b86fa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infra_config_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider.go index 476e8435da..3395d92ac4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider_list.go index 551b6f4ba7..dacf64e2e0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider_relationship.go index c2326e3a82..98a1d9114e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider_response.go index df2de41358..ec0c9d3599 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_infrastructure_provider_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_instance_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_instance_type.go index 6da882af45..a31dfa0346 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_instance_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_instance_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_instance_type_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_instance_type_list.go index ab8fc55650..f9a70abac5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_instance_type_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_instance_type_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_instance_type_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_instance_type_relationship.go index f5f9815946..8a3ab512ba 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_instance_type_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_instance_type_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_instance_type_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_instance_type_response.go index fc1dedf29b..0496d4c5e8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_instance_type_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_instance_type_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_node_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_node_profile.go index a2c1aced27..e121de711f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_node_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_node_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_node_profile_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_node_profile_list.go index 1368f5de22..b7c90e26ea 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_node_profile_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_node_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_node_profile_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_node_profile_response.go index 3e81e9b91f..ec60397f31 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_node_profile_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kubernetes_virtual_machine_node_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_policy.go index fb5e190011..219c9e16fb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_policy_inventory.go index a95d595841..0ec88225f7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_policy_inventory_list.go index eafacba2ea..9ef811f852 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_policy_inventory_response.go index 673bc2bf74..6f6bb41bd6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_policy_list.go index 162b1a5d94..5b2305060e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_policy_response.go index d4236a7acb..ceb04bed71 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_session.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_session.go index 3900e74829..78dd6ca2bd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_session.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_session.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_session_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_session_list.go index 9fb68b4848..34f36cc843 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_session_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_session_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_session_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_session_relationship.go index 56945ac215..7be81b8e26 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_session_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_session_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_session_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_session_response.go index 4bb29d1286..e7e1a80f1f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_session_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_session_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunnel.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunnel.go index efc73fe068..c16fffb665 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunnel.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunnel.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunnel_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunnel_list.go index dbcf8c2889..ca305c9481 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunnel_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunnel_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunnel_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunnel_relationship.go index 3824837462..2e841d35b6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunnel_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunnel_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunnel_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunnel_response.go index c630171bdf..ee7a605a21 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunnel_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunnel_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunneled_kvm_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunneled_kvm_policy.go index 0a97f04f95..bbb7db83a4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunneled_kvm_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunneled_kvm_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunneled_kvm_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunneled_kvm_policy_list.go index 3f87245a49..e4f0617c9e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunneled_kvm_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunneled_kvm_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunneled_kvm_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunneled_kvm_policy_response.go index f90e61f395..7266ec6b67 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunneled_kvm_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_kvm_tunneled_kvm_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_account_license_data.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_account_license_data.go index 80b7ccb644..3dde0a7322 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_account_license_data.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_account_license_data.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_account_license_data_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_account_license_data_list.go index e77e11c0f8..42517c4c31 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_account_license_data_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_account_license_data_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_account_license_data_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_account_license_data_relationship.go index e28fefef86..62388df11e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_account_license_data_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_account_license_data_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_account_license_data_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_account_license_data_response.go index 82bad574e1..93a30d0fd7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_account_license_data_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_account_license_data_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_customer_op.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_customer_op.go index ae16a30184..912e8b4ff2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_customer_op.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_customer_op.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_customer_op_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_customer_op_list.go index 9c4fd6b190..1b9deefc3a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_customer_op_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_customer_op_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_customer_op_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_customer_op_relationship.go index c18085af13..0f24191d78 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_customer_op_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_customer_op_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_customer_op_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_customer_op_response.go index 8f1c2b374c..ba8740bc6f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_customer_op_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_customer_op_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_customer_op.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_customer_op.go index 1eb1abcdd7..9a08afc115 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_customer_op.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_customer_op.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_customer_op_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_customer_op_list.go index 61b0850a4b..b11c6bb343 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_customer_op_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_customer_op_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_customer_op_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_customer_op_relationship.go index fa86602974..b06a5f4a39 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_customer_op_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_customer_op_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_customer_op_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_customer_op_response.go index 71b0589722..bf30f550e7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_customer_op_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_customer_op_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_license_count.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_license_count.go index 4e752f07ee..bc4f3d576e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_license_count.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_license_count.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_license_count_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_license_count_list.go index e39019d021..ead168d20a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_license_count_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_license_count_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_license_count_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_license_count_relationship.go index 6b137a8d68..84420d0cf1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_license_count_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_license_count_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_license_count_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_license_count_response.go index 1b1ca9e668..333ce60888 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_license_count_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iks_license_count_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_customer_op.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_customer_op.go index 9025e861c4..740972d4d0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_customer_op.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_customer_op.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_customer_op_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_customer_op_list.go index 41a1e57883..35369544fc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_customer_op_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_customer_op_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_customer_op_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_customer_op_relationship.go index 958fd328ba..0f9f08498b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_customer_op_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_customer_op_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_customer_op_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_customer_op_response.go index 05b7ae9b06..a2507be4ef 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_customer_op_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_customer_op_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_license_count.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_license_count.go index c9dd7c0e78..fd467ce0f1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_license_count.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_license_count.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_license_count_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_license_count_list.go index 29ab96c59e..d776ff6b91 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_license_count_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_license_count_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_license_count_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_license_count_relationship.go index 403e3b6a8b..fe7ccadf47 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_license_count_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_license_count_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_license_count_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_license_count_response.go index fe8ae5770e..993b4e0e85 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_license_count_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_inc_license_count_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_customer_op.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_customer_op.go index 67bb233a01..0010f71a56 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_customer_op.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_customer_op.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_customer_op_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_customer_op_list.go index ebae75a2ca..ceeed8d093 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_customer_op_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_customer_op_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_customer_op_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_customer_op_relationship.go index bbeb51ec52..7d70188610 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_customer_op_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_customer_op_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_customer_op_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_customer_op_response.go index 3ca4fea99e..9003ee4460 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_customer_op_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_customer_op_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_license_count.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_license_count.go index b1d588b2db..89b287063f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_license_count.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_license_count.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_license_count_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_license_count_list.go index ce585ef179..e573052745 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_license_count_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_license_count_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_license_count_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_license_count_relationship.go index b5db9d81ae..01c5e58ebd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_license_count_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_license_count_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_license_count_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_license_count_response.go index 4ce77f4864..b71c39eb9f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_license_count_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_iwo_license_count_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info.go index a1b7e9ce44..e6551cbcce 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_list.go index 7e192b5e25..f178fdb000 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_relationship.go index 8fabcf5b5a..30027899e5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_response.go index 5e9a5440d7..7d6ab1e711 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_view.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_view.go index f9a54aaa77..5e43c4225b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_view.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_view.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_view_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_view_list.go index 8038f0aeeb..f60bd3dc36 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_view_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_view_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_view_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_view_relationship.go index 3a7d466b3a..44167a8ec4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_view_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_view_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_view_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_view_response.go index 0f65a108e7..929222c270 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_view_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_info_view_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_registration_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_registration_status.go index a2b97a7c3c..72d05f6de1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_registration_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_registration_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_registration_status_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_registration_status_list.go index c68811b288..e335c20836 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_registration_status_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_registration_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_registration_status_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_registration_status_relationship.go index 65e1ca1e00..634ac9b1df 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_registration_status_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_registration_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_registration_status_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_registration_status_response.go index 1777a18ffe..69bd7011db 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_registration_status_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_registration_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_reservation_op.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_reservation_op.go index 0da9da0ee2..c619e90f35 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_reservation_op.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_reservation_op.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_reservation_op_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_reservation_op_list.go index ce53df779e..c941e3d3c7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_reservation_op_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_reservation_op_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_reservation_op_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_reservation_op_response.go index b12ff4d35a..0e8abdd3a0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_reservation_op_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_license_reservation_op_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_smartlicense_token.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_smartlicense_token.go index 48ad16fa42..922bce7c00 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_smartlicense_token.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_smartlicense_token.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_smartlicense_token_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_smartlicense_token_list.go index bee20cd652..dde918dda6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_smartlicense_token_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_smartlicense_token_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_smartlicense_token_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_smartlicense_token_relationship.go index dc3fc77e40..8057817f9e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_smartlicense_token_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_smartlicense_token_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_smartlicense_token_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_smartlicense_token_response.go index fae765b01a..c8737a4a15 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_smartlicense_token_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_smartlicense_token_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_substitute_license.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_substitute_license.go index 2de1f34362..9d389854a4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_substitute_license.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_license_substitute_license.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ls_service_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ls_service_profile.go index 5377f6a7c9..88f653012e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ls_service_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ls_service_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ls_service_profile_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ls_service_profile_list.go index 0d23bacef0..52f8fb6bf0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ls_service_profile_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ls_service_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ls_service_profile_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ls_service_profile_response.go index 4996036601..5077a3428d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ls_service_profile_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ls_service_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_block.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_block.go index 5ff6bfdc43..cc766d35a4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_block.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_id_block.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_id_block.go index da566b3538..cd386a729f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_id_block.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_id_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_id_block_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_id_block_list.go index d20b6e5b70..f481753851 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_id_block_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_id_block_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_id_block_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_id_block_relationship.go index da1503497d..63a1ec12f2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_id_block_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_id_block_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_id_block_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_id_block_response.go index 09814698f3..a64259bd82 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_id_block_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_id_block_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_lease.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_lease.go index 0c2e18f774..427765459c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_lease.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_lease.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_lease_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_lease_list.go index bed2995fd7..76e5c4ca21 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_lease_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_lease_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_lease_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_lease_relationship.go index bdc78797cc..7f76834a3d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_lease_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_lease_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_lease_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_lease_response.go index 1434ffecc0..810bfc4d3a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_lease_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_lease_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_member_of.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_member_of.go index 06e60b8bd8..b8b5a69ed8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_member_of.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_member_of.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool.go index 783a7707ee..385543265d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_list.go index e9f38139d4..01cc27c5e0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_member.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_member.go index f3a99fab7b..8276ab95e8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_member.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_member_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_member_list.go index 3fe2177fe4..3e5924affb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_member_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_member_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_member_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_member_relationship.go index 43ba6953ad..e29b2d262d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_member_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_member_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_member_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_member_response.go index 8f949377d8..0f6c5d99e5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_member_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_member_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_relationship.go index cc2be644f3..b2b4da1d0a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_response.go index 397f4d65f3..f046b59fe8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_pool_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_reservation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_reservation.go index aa2eedfbca..e1ccf3370f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_reservation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_reservation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_reservation_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_reservation_list.go index 90b3e56c6a..5a864c727e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_reservation_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_reservation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_reservation_reference.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_reservation_reference.go index 6ee679f313..9f1be3ae5d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_reservation_reference.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_reservation_reference.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_reservation_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_reservation_relationship.go index 2ab3984ccb..9a01ecc066 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_reservation_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_reservation_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_reservation_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_reservation_response.go index f988ae195a..4f1c965ed6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_reservation_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_reservation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_universe.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_universe.go index ebebc4e999..4e9b0e558d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_universe.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_universe.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_universe_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_universe_list.go index b0777dd883..d8f84eb30d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_universe_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_universe_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_universe_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_universe_relationship.go index c8ed796e69..0032d320f7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_universe_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_universe_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_universe_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_universe_response.go index 7d780693dd..9342620a41 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_universe_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_macpool_universe_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_controller.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_controller.go index 381b52de18..aefe114efe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_controller.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_controller.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_controller_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_controller_list.go index ba7bee6309..f0f231b2e6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_controller_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_controller_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_controller_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_controller_relationship.go index 0329216d26..1fdda91624 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_controller_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_controller_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_controller_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_controller_response.go index 05186308bd..01d34962c7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_controller_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_controller_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_entity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_entity.go index 3db40b532b..41e1c2b750 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_entity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_entity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_entity_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_entity_list.go index ad6fe42a75..352f9096a9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_entity_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_entity_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_entity_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_entity_relationship.go index 8ff70cc4f8..b0ca7cf468 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_entity_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_entity_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_entity_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_entity_response.go index f4cb52c928..64bbbd47b8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_entity_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_entity_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_interface.go index cc0bb4a1cd..233806691d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_interface_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_interface_list.go index b4c6ed05eb..2319f30c4d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_interface_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_interface_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_interface_relationship.go index 960779cf42..59d345546a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_interface_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_interface_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_interface_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_interface_response.go index d2a639ab0f..a281808d5b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_interface_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_management_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case.go index a28c880186..b8007db795 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_automation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_automation.go index 200edf9804..5a384fbb67 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_automation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_automation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_dependency.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_dependency.go index 2a07842384..c27d3a64a3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_dependency.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_dependency.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_list.go index 8c43e0f2d9..cb273ff8c5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_locale.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_locale.go index eb6024a899..6740c96796 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_locale.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_locale.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -36,7 +36,7 @@ type MarketplaceUseCaseLocale struct { // A base64-encoded image for the use case. Icon *string `json:"Icon,omitempty"` // The string field to hold the locale. - Locale *string `json:"Locale,omitempty"` + Locale *string `json:"Locale,omitempty" validate:"regexp=^$|^[a-z]{2,4}(-[A-Z][a-z]{3})?(-([A-Za-z]{2}|[0-9]{3}))?$"` // The string field to hold the name value. Name *string `json:"Name,omitempty"` // The string field to hold the summary value. @@ -462,7 +462,7 @@ func (o *MarketplaceUseCaseLocale) UnmarshalJSON(data []byte) (err error) { // A base64-encoded image for the use case. Icon *string `json:"Icon,omitempty"` // The string field to hold the locale. - Locale *string `json:"Locale,omitempty"` + Locale *string `json:"Locale,omitempty" validate:"regexp=^$|^[a-z]{2,4}(-[A-Z][a-z]{3})?(-([A-Za-z]{2}|[0-9]{3}))?$"` // The string field to hold the name value. Name *string `json:"Name,omitempty"` // The string field to hold the summary value. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_relationship.go index ba0c9b67ca..548f9443d0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_response.go index 22dee56ae4..4271659232 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_version.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_version.go index 2e7ca42b4a..8e27726ac9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_version.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_version.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_version_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_version_list.go index bf5cb7dfa1..1bea4e1376 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_version_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_version_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_version_locale.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_version_locale.go index e609f8c7c1..d82fd9345c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_version_locale.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_version_locale.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type MarketplaceUseCaseVersionLocale struct { // The string field to hold the description. Description *string `json:"Description,omitempty"` // The string field to hold the locale. - Locale *string `json:"Locale,omitempty"` + Locale *string `json:"Locale,omitempty" validate:"regexp=^$|^[a-z]{2,4}(-[A-Z][a-z]{3})?(-([A-Za-z]{2}|[0-9]{3}))?$"` AdditionalProperties map[string]interface{} } @@ -272,7 +272,7 @@ func (o *MarketplaceUseCaseVersionLocale) UnmarshalJSON(data []byte) (err error) // The string field to hold the description. Description *string `json:"Description,omitempty"` // The string field to hold the locale. - Locale *string `json:"Locale,omitempty"` + Locale *string `json:"Locale,omitempty" validate:"regexp=^$|^[a-z]{2,4}(-[A-Z][a-z]{3})?(-([A-Za-z]{2}|[0-9]{3}))?$"` } varMarketplaceUseCaseVersionLocaleWithoutEmbeddedStruct := MarketplaceUseCaseVersionLocaleWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_version_resource.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_version_resource.go index ecaf42f571..f6267de528 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_version_resource.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_version_resource.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_version_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_version_response.go index 2ea53b2b95..9b42a6ac40 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_version_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_marketplace_use_case_version_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_abstract_unit.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_abstract_unit.go index 2035bcee03..29953766ad 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_abstract_unit.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_abstract_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_array.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_array.go index 46d6bf2bdd..f9b2c58363 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_array.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_array.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_array_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_array_list.go index c6917690f0..dc480d5f74 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_array_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_array_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_array_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_array_relationship.go index 173df8fac2..445ebbc712 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_array_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_array_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_array_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_array_response.go index 3a8011c945..0ea5a4ea54 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_array_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_array_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_config_result.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_config_result.go index 4677b7bcc2..382e854183 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_config_result.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_config_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_config_result_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_config_result_list.go index b0a140b174..36142e0aa2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_config_result_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_config_result_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_config_result_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_config_result_relationship.go index 03f95866ac..64df96b3b2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_config_result_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_config_result_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_config_result_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_config_result_response.go index 3232a4d99b..bdc9fa2018 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_config_result_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_config_result_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_configuration.go index 79b5380dea..2fae83b842 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_configuration_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_configuration_list.go index 4904f3ce21..b2f2e1a9a9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_configuration_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_configuration_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_configuration_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_configuration_relationship.go index 05cc6a4f3b..763c383170 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_configuration_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_configuration_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_configuration_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_configuration_response.go index ea3930dd64..b228483bd9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_configuration_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_configuration_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_goal.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_goal.go index 095fc85683..03845d7d90 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_goal.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_goal.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_local_security.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_local_security.go index 7b78148267..25ce1ecfdc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_local_security.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_local_security.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type MemoryPersistentMemoryLocalSecurity struct { // Indicates whether the value of the 'securePassphrase' property has been set. IsSecurePassphraseSet *bool `json:"IsSecurePassphraseSet,omitempty"` // Secure passphrase to be applied on the Persistent Memory Modules on the server. The allowed characters are a-z, A to Z, 0-9, and special characters =, \\u0021, &, \\#, $, %, +, ^, @, _, *, -. - SecurePassphrase *string `json:"SecurePassphrase,omitempty"` + SecurePassphrase *string `json:"SecurePassphrase,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` AdditionalProperties map[string]interface{} } @@ -315,7 +315,7 @@ func (o *MemoryPersistentMemoryLocalSecurity) UnmarshalJSON(data []byte) (err er // Indicates whether the value of the 'securePassphrase' property has been set. IsSecurePassphraseSet *bool `json:"IsSecurePassphraseSet,omitempty"` // Secure passphrase to be applied on the Persistent Memory Modules on the server. The allowed characters are a-z, A to Z, 0-9, and special characters =, \\u0021, &, \\#, $, %, +, ^, @, _, *, -. - SecurePassphrase *string `json:"SecurePassphrase,omitempty"` + SecurePassphrase *string `json:"SecurePassphrase,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` } varMemoryPersistentMemoryLocalSecurityWithoutEmbeddedStruct := MemoryPersistentMemoryLocalSecurityWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_logical_namespace.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_logical_namespace.go index 7e70ce8808..73473bed9d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_logical_namespace.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_logical_namespace.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type MemoryPersistentMemoryLogicalNamespace struct { // Mode of this Namespace that is created or modified. * `raw` - The raw mode of Persistent Memory Namespace. * `block` - The block mode of Persistent Memory Namespace. Mode *string `json:"Mode,omitempty"` // Name of this Namespace to be created on the server. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9#_-][a-zA-Z0-9#_ -]*$"` // Socket ID of the region on which this Namespace has to be created or modified. * `1` - The first CPU socket in a server. * `2` - The second CPU socket in a server. * `3` - The third CPU socket in a server. * `4` - The fourth CPU socket in a server. SocketId *int32 `json:"SocketId,omitempty"` // Socket Memory ID of the region on which this Namespace has to be created or modified. * `Not Applicable` - The socket memory ID is not applicable if app-direct persistent memory type is selected in the goal. * `2` - The second socket memory ID within a socket in a server. * `4` - The fourth socket memory ID within a socket in a server. * `6` - The sixth socket memory ID within a socket in a server. * `8` - The eighth socket memory ID within a socket in a server. * `10` - The tenth socket memory ID within a socket in a server. * `12` - The twelfth socket memory ID within a socket in a server. @@ -397,7 +397,7 @@ func (o *MemoryPersistentMemoryLogicalNamespace) UnmarshalJSON(data []byte) (err // Mode of this Namespace that is created or modified. * `raw` - The raw mode of Persistent Memory Namespace. * `block` - The block mode of Persistent Memory Namespace. Mode *string `json:"Mode,omitempty"` // Name of this Namespace to be created on the server. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9#_-][a-zA-Z0-9#_ -]*$"` // Socket ID of the region on which this Namespace has to be created or modified. * `1` - The first CPU socket in a server. * `2` - The second CPU socket in a server. * `3` - The third CPU socket in a server. * `4` - The fourth CPU socket in a server. SocketId *int32 `json:"SocketId,omitempty"` // Socket Memory ID of the region on which this Namespace has to be created or modified. * `Not Applicable` - The socket memory ID is not applicable if app-direct persistent memory type is selected in the goal. * `2` - The second socket memory ID within a socket in a server. * `4` - The fourth socket memory ID within a socket in a server. * `6` - The sixth socket memory ID within a socket in a server. * `8` - The eighth socket memory ID within a socket in a server. * `10` - The tenth socket memory ID within a socket in a server. * `12` - The twelfth socket memory ID within a socket in a server. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace.go index a6e2bedfa8..68ebc18ebd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_config_result.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_config_result.go index a160f558af..9bb1c438c8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_config_result.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_config_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_config_result_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_config_result_list.go index d5955639fe..83e072a605 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_config_result_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_config_result_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_config_result_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_config_result_relationship.go index 95cb086777..7ba394b140 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_config_result_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_config_result_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_config_result_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_config_result_response.go index 32d96d02bd..c50eb84b3b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_config_result_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_config_result_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_list.go index 90cdf97139..05dd9b23eb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_relationship.go index 9fb62513d6..5d08add468 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_response.go index ed4b1a786b..763e35d0cb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_namespace_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_policy.go index c7160819b6..99256487fd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_policy_list.go index 3a00db7165..2a15501ae8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_policy_response.go index 4536623429..e9a6ae76cf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_region.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_region.go index 62a1084507..749b620011 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_region.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_region.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_region_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_region_list.go index e626000130..397cc8cb6c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_region_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_region_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_region_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_region_relationship.go index f5ff92aa60..838b36955b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_region_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_region_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_region_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_region_response.go index 724296593a..4c218f5213 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_region_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_region_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_unit.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_unit.go index d331db7245..57fb06b7b6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_unit.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_unit_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_unit_list.go index 3666656c41..37c8cd22f1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_unit_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_unit_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_unit_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_unit_relationship.go index a96d514242..4a34abc91e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_unit_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_unit_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_unit_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_unit_response.go index 734c3cf3f5..bbab36877b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_unit_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_persistent_memory_unit_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_unit.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_unit.go index 2de9678373..cd3dd9906c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_unit.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_unit_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_unit_list.go index ead9df4c76..7601147ff0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_unit_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_unit_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_unit_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_unit_relationship.go index d8618996f8..f10f72be3b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_unit_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_unit_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_unit_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_unit_response.go index 92c7f5b5fc..55cd33ca26 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_unit_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_memory_unit_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_device.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_device.go index 152bfb47b8..ce1a0696d3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_device.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_device_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_device_list.go index de70b81545..4eae275e8c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_device_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_device_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_device_relationship.go index e630d16968..94cd311011 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_device_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_device_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_device_response.go index 39b9ead5ef..76362e6378 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_device_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_network.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_network.go index 112da2cf68..c60f118d9f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_network.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_network.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_network_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_network_list.go index f5cddc0912..4bba866d5b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_network_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_network_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_network_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_network_relationship.go index d27e8ced6d..e60b4677fe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_network_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_network_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_network_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_network_response.go index aa8943913d..01878741a6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_network_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_network_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_organization.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_organization.go index 76c362a574..9d0990ac90 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_organization.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_organization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_organization_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_organization_list.go index e2464b0def..f37df95627 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_organization_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_organization_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_organization_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_organization_relationship.go index ecf68b570f..e034fdb8e7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_organization_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_organization_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_organization_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_organization_response.go index 618b6cec52..556e86fd58 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_organization_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_organization_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_port_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_port_profile.go index 044a37f59c..eb52fb4899 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_port_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_port_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_port_profile_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_port_profile_list.go index 12108ec689..87a45ea0d2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_port_profile_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_port_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_port_profile_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_port_profile_response.go index 52bc8382b9..7bae672859 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_port_profile_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_port_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_tag.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_tag.go index 9574a6dadc..877c35f772 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_tag.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_tag.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_tag_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_tag_list.go index 22ac8a3246..245d0998f1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_tag_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_tag_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_tag_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_tag_response.go index 375b03b56e..e919102650 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_tag_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meraki_tag_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_access_privilege.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_access_privilege.go index 95ed987c19..3bab0fdc59 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_access_privilege.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_access_privilege.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_definition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_definition.go index 0b3cc3d502..c5e3121c3e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_definition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_definition_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_definition_list.go index e1333637f0..15a69ef2b7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_definition_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_definition_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_definition_response.go index cce2c9a5f1..fc5ac2872b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_definition_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_display_name_definition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_display_name_definition.go index 6667f162ae..f041e59eee 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_display_name_definition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_display_name_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_identity_definition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_identity_definition.go index f205d65465..aac7a0ede7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_identity_definition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_identity_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_prop_definition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_prop_definition.go index b392cc7b62..9a9742e7f4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_prop_definition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_prop_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_relationship_definition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_relationship_definition.go index d08b86d6ff..cabf5490ad 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_relationship_definition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_meta_relationship_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_metrics_metric_criterion.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_metrics_metric_criterion.go index 9107ae03a0..0827b86062 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_metrics_metric_criterion.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_metrics_metric_criterion.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_metrics_metrics_exploration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_metrics_metrics_exploration.go index 8f171de607..2aba0b09b1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_metrics_metrics_exploration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_metrics_metrics_exploration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_metrics_metrics_exploration_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_metrics_metrics_exploration_list.go index e21c793190..7dc53c1fde 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_metrics_metrics_exploration_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_metrics_metrics_exploration_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_metrics_metrics_exploration_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_metrics_metrics_exploration_response.go index 5aed506c78..cbbe024590 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_metrics_metrics_exploration_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_metrics_metrics_exploration_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_aggregate_transform.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_aggregate_transform.go index 20db89fedd..cd01e7d062 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_aggregate_transform.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_aggregate_transform.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_base_complex_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_base_complex_type.go index ec13b32b57..d2bb60e8fb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_base_complex_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_base_complex_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_base_mo.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_base_mo.go index e45712ca2f..1afc3feeae 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_base_mo.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_base_mo.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_base_mo_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_base_mo_relationship.go index 104ab4f505..786752fee2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_base_mo_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_base_mo_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_base_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_base_response.go index 9a80934e3e..2ae00c0529 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_base_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_base_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_document_count.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_document_count.go index 46498e364a..877ef93f4f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_document_count.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_document_count.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_mo_ref.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_mo_ref.go index 647fda2b60..aa8f6427be 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_mo_ref.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_mo_ref.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_tag.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_tag.go index 47057c9f65..92979724bb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_tag.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_tag.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_tag_key_summary.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_tag_key_summary.go index 34b91d6be6..c12597c8b9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_tag_key_summary.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_tag_key_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_tag_summary.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_tag_summary.go index cfec1b58aa..9cc5543305 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_tag_summary.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_tag_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_version_context.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_version_context.go index 4480381580..cf1d13b679 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_version_context.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_mo_version_context.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_monitoring_category_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_monitoring_category_status.go index e19eda7338..98c4e960d6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_monitoring_category_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_monitoring_category_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type MonitoringCategoryStatus struct { // Name of the category for which status is being reported (for e.g. 'Licensing', 'Advisories'). CategoryLabel *string `json:"CategoryLabel,omitempty"` // Link to the corresponding category specific page in Intersight to get additional information and troubleshoot. for e.g. 'Alarms' category would have the deeplink as 'https://intersight.com/an/cond/alarms/active'. - Deeplink *string `json:"Deeplink,omitempty"` + Deeplink *string `json:"Deeplink,omitempty" validate:"regexp=^$|^(?:http(s)?:\\/\\/)?[\\\\w.-]+(?:\\\\.[\\\\w\\\\.-]+)+[\\\\w\\\\-\\\\._~:\\/?#[\\\\]@!\\\\$&'\\\\(\\\\)\\\\*\\\\+,;=.]+$"` // Additional information regarding category status that may be displayed in UI related to the category status. Optional and currently unused. Details *string `json:"Details,omitempty"` // Additional parameter to be used for traceability and troubleshooting, currently unused. @@ -383,7 +383,7 @@ func (o *MonitoringCategoryStatus) UnmarshalJSON(data []byte) (err error) { // Name of the category for which status is being reported (for e.g. 'Licensing', 'Advisories'). CategoryLabel *string `json:"CategoryLabel,omitempty"` // Link to the corresponding category specific page in Intersight to get additional information and troubleshoot. for e.g. 'Alarms' category would have the deeplink as 'https://intersight.com/an/cond/alarms/active'. - Deeplink *string `json:"Deeplink,omitempty"` + Deeplink *string `json:"Deeplink,omitempty" validate:"regexp=^$|^(?:http(s)?:\\/\\/)?[\\\\w.-]+(?:\\\\.[\\\\w\\\\.-]+)+[\\\\w\\\\-\\\\._~:\\/?#[\\\\]@!\\\\$&'\\\\(\\\\)\\\\*\\\\+,;=.]+$"` // Additional information regarding category status that may be displayed in UI related to the category status. Optional and currently unused. Details *string `json:"Details,omitempty"` // Additional parameter to be used for traceability and troubleshooting, currently unused. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_monitoring_health_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_monitoring_health_status.go index 679b65ef52..3946221372 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_monitoring_health_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_monitoring_health_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_monitoring_health_status_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_monitoring_health_status_list.go index f00fd94d78..59b6fa3fe3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_monitoring_health_status_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_monitoring_health_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_monitoring_health_status_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_monitoring_health_status_response.go index 464a68480e..34e15ad613 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_monitoring_health_status_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_monitoring_health_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_motemplate_action_entry.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_motemplate_action_entry.go index 6a1e84a45f..215f02960b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_motemplate_action_entry.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_motemplate_action_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_motemplate_action_param.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_motemplate_action_param.go index 5849d0ddfa..581b4df6d9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_motemplate_action_param.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_motemplate_action_param.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_motemplate_sync_error.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_motemplate_sync_error.go index a3866df0db..0e93f624fe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_motemplate_sync_error.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_motemplate_sync_error.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_discovered_neighbor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_discovered_neighbor.go index ad2fcf4370..6a76efa42c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_discovered_neighbor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_discovered_neighbor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_discovered_neighbor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_discovered_neighbor_list.go index 6d82a91c50..9aacb64f7c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_discovered_neighbor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_discovered_neighbor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_discovered_neighbor_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_discovered_neighbor_relationship.go index b22a661ece..1a4d0894e8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_discovered_neighbor_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_discovered_neighbor_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_discovered_neighbor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_discovered_neighbor_response.go index 38ca551312..fc07931631 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_discovered_neighbor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_discovered_neighbor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_dns.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_dns.go index 654f20ef77..0e82654f8e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_dns.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_dns.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_dns_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_dns_list.go index dd4019e600..18290a3619 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_dns_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_dns_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_dns_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_dns_relationship.go index ce53fd6ec0..34465b6df8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_dns_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_dns_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_dns_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_dns_response.go index 6e7a332578..f496f47a12 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_dns_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_dns_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element.go index 5b7aac7e38..b0c26c9747 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -44,7 +44,7 @@ type NetworkElement struct { // Connection status of the switch. ConnectionStatus *string `json:"ConnectionStatus,omitempty"` // The default domain name configured on the switch. - DefaultDomain *string `json:"DefaultDomain,omitempty"` + DefaultDomain *string `json:"DefaultDomain,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+([-.]{1}[a-zA-Z0-9]+)*$"` // The user configured Ethernet operational mode for this switch (End-Host or Switching). // Deprecated EthernetMode *string `json:"EthernetMode,omitempty"` @@ -117,7 +117,7 @@ type NetworkElement struct { // Total available memory on this switch platform. TotalMemory *int64 `json:"TotalMemory,omitempty"` // The user defined label assigned to the switch. - UserLabel *string `json:"UserLabel,omitempty"` + UserLabel *string `json:"UserLabel,omitempty" validate:"regexp=^[ !#$%&\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}~a-zA-Z0-9]*$"` // Firmware version of the switch. Version *string `json:"Version,omitempty"` // An array of relationships to equipmentSwitchCard resources. @@ -3250,7 +3250,7 @@ func (o *NetworkElement) UnmarshalJSON(data []byte) (err error) { // Connection status of the switch. ConnectionStatus *string `json:"ConnectionStatus,omitempty"` // The default domain name configured on the switch. - DefaultDomain *string `json:"DefaultDomain,omitempty"` + DefaultDomain *string `json:"DefaultDomain,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+([-.]{1}[a-zA-Z0-9]+)*$"` // The user configured Ethernet operational mode for this switch (End-Host or Switching). // Deprecated EthernetMode *string `json:"EthernetMode,omitempty"` @@ -3323,7 +3323,7 @@ func (o *NetworkElement) UnmarshalJSON(data []byte) (err error) { // Total available memory on this switch platform. TotalMemory *int64 `json:"TotalMemory,omitempty"` // The user defined label assigned to the switch. - UserLabel *string `json:"UserLabel,omitempty"` + UserLabel *string `json:"UserLabel,omitempty" validate:"regexp=^[ !#$%&\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}~a-zA-Z0-9]*$"` // Firmware version of the switch. Version *string `json:"Version,omitempty"` // An array of relationships to equipmentSwitchCard resources. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_list.go index 9fbdde769a..2d865008fe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_relationship.go index 4d905befad..6241e9bbcc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_response.go index 412d347250..ad7582ed70 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_summary.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_summary.go index 890c67be0c..110f8c42f9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_summary.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_summary.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -46,7 +46,7 @@ type NetworkElementSummary struct { // Connection status of the switch. ConnectionStatus *string `json:"ConnectionStatus,omitempty"` // The default domain name configured on the switch. - DefaultDomain *string `json:"DefaultDomain,omitempty"` + DefaultDomain *string `json:"DefaultDomain,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+([-.]{1}[a-zA-Z0-9]+)*$"` // The MoId of the registered device that coresponds to the server. DeviceMoId *string `json:"DeviceMoId,omitempty"` // The Distinguished Name unambiguously identifies an object in the system. @@ -156,6 +156,8 @@ type NetworkElementSummary struct { Thermal *string `json:"Thermal,omitempty"` // Total available memory on this switch platform. TotalMemory *int64 `json:"TotalMemory,omitempty"` + // The user defined label assigned to the server. + UserLabel *string `json:"UserLabel,omitempty"` // This field identifies the vendor of the given component. Vendor *string `json:"Vendor,omitempty"` // Firmware version of the switch. @@ -2288,6 +2290,38 @@ func (o *NetworkElementSummary) SetTotalMemory(v int64) { o.TotalMemory = &v } +// GetUserLabel returns the UserLabel field value if set, zero value otherwise. +func (o *NetworkElementSummary) GetUserLabel() string { + if o == nil || IsNil(o.UserLabel) { + var ret string + return ret + } + return *o.UserLabel +} + +// GetUserLabelOk returns a tuple with the UserLabel field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *NetworkElementSummary) GetUserLabelOk() (*string, bool) { + if o == nil || IsNil(o.UserLabel) { + return nil, false + } + return o.UserLabel, true +} + +// HasUserLabel returns a boolean if a field has been set. +func (o *NetworkElementSummary) HasUserLabel() bool { + if o != nil && !IsNil(o.UserLabel) { + return true + } + + return false +} + +// SetUserLabel gets a reference to the given string and assigns it to the UserLabel field. +func (o *NetworkElementSummary) SetUserLabel(v string) { + o.UserLabel = &v +} + // GetVendor returns the Vendor field value if set, zero value otherwise. func (o *NetworkElementSummary) GetVendor() string { if o == nil || IsNil(o.Vendor) { @@ -2653,6 +2687,9 @@ func (o NetworkElementSummary) ToMap() (map[string]interface{}, error) { if !IsNil(o.TotalMemory) { toSerialize["TotalMemory"] = o.TotalMemory } + if !IsNil(o.UserLabel) { + toSerialize["UserLabel"] = o.UserLabel + } if !IsNil(o.Vendor) { toSerialize["Vendor"] = o.Vendor } @@ -2738,7 +2775,7 @@ func (o *NetworkElementSummary) UnmarshalJSON(data []byte) (err error) { // Connection status of the switch. ConnectionStatus *string `json:"ConnectionStatus,omitempty"` // The default domain name configured on the switch. - DefaultDomain *string `json:"DefaultDomain,omitempty"` + DefaultDomain *string `json:"DefaultDomain,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+([-.]{1}[a-zA-Z0-9]+)*$"` // The MoId of the registered device that coresponds to the server. DeviceMoId *string `json:"DeviceMoId,omitempty"` // The Distinguished Name unambiguously identifies an object in the system. @@ -2848,6 +2885,8 @@ func (o *NetworkElementSummary) UnmarshalJSON(data []byte) (err error) { Thermal *string `json:"Thermal,omitempty"` // Total available memory on this switch platform. TotalMemory *int64 `json:"TotalMemory,omitempty"` + // The user defined label assigned to the server. + UserLabel *string `json:"UserLabel,omitempty"` // This field identifies the vendor of the given component. Vendor *string `json:"Vendor,omitempty"` // Firmware version of the switch. @@ -2926,6 +2965,7 @@ func (o *NetworkElementSummary) UnmarshalJSON(data []byte) (err error) { varNetworkElementSummary.SystemUpTime = varNetworkElementSummaryWithoutEmbeddedStruct.SystemUpTime varNetworkElementSummary.Thermal = varNetworkElementSummaryWithoutEmbeddedStruct.Thermal varNetworkElementSummary.TotalMemory = varNetworkElementSummaryWithoutEmbeddedStruct.TotalMemory + varNetworkElementSummary.UserLabel = varNetworkElementSummaryWithoutEmbeddedStruct.UserLabel varNetworkElementSummary.Vendor = varNetworkElementSummaryWithoutEmbeddedStruct.Vendor varNetworkElementSummary.Version = varNetworkElementSummaryWithoutEmbeddedStruct.Version varNetworkElementSummary.InventoryParent = varNetworkElementSummaryWithoutEmbeddedStruct.InventoryParent @@ -3012,6 +3052,7 @@ func (o *NetworkElementSummary) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "SystemUpTime") delete(additionalProperties, "Thermal") delete(additionalProperties, "TotalMemory") + delete(additionalProperties, "UserLabel") delete(additionalProperties, "Vendor") delete(additionalProperties, "Version") delete(additionalProperties, "InventoryParent") diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_summary_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_summary_list.go index 647b8eacf1..f1dc3a2327 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_summary_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_summary_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_summary_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_summary_relationship.go index 9154d8130b..8943750db5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_summary_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_summary_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_summary_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_summary_response.go index ecce231c58..f2407498ab 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_summary_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_element_summary_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_fc_zone_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_fc_zone_info.go index 2127d50bd3..971f280222 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_fc_zone_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_fc_zone_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_fc_zone_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_fc_zone_info_list.go index 307c86930e..0c8cf8da5f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_fc_zone_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_fc_zone_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_fc_zone_info_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_fc_zone_info_relationship.go index c27355d199..b42b3a8d97 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_fc_zone_info_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_fc_zone_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_fc_zone_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_fc_zone_info_response.go index 674776827b..2fb8b4c5e9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_fc_zone_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_fc_zone_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_feature_control.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_feature_control.go index 5f8dd86602..56a626f1ee 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_feature_control.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_feature_control.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_feature_control_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_feature_control_list.go index 4537b0ea7e..8073e9a7d4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_feature_control_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_feature_control_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_feature_control_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_feature_control_relationship.go index d26919321b..3af71eb3e3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_feature_control_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_feature_control_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_feature_control_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_feature_control_response.go index 8695d9cfbe..0d0070c23b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_feature_control_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_feature_control_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_hyper_flex_internet_protocol_address_range.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_hyper_flex_internet_protocol_address_range.go index dd6cfa2a07..f800cdc10b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_hyper_flex_internet_protocol_address_range.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_hyper_flex_internet_protocol_address_range.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_hyper_flex_network_address.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_hyper_flex_network_address.go index 9e812634b1..3f9eb85242 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_hyper_flex_network_address.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_hyper_flex_network_address.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_interface_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_interface_list.go index a9fb2b2215..2d3e4e31c2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_interface_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_interface_list_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_interface_list_list.go index 583f37344e..284c1a518e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_interface_list_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_interface_list_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_interface_list_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_interface_list_relationship.go index 0236dac192..737fa66368 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_interface_list_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_interface_list_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_interface_list_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_interface_list_response.go index 5f4f30b418..2a6f22d0d7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_interface_list_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_interface_list_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_license_file.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_license_file.go index 49a980f921..04e388f406 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_license_file.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_license_file.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_license_file_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_license_file_list.go index 78120a2277..0273c01b35 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_license_file_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_license_file_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_license_file_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_license_file_relationship.go index 0cbe3ef338..af43cc54df 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_license_file_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_license_file_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_license_file_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_license_file_response.go index 2488e0c41b..536098c0d6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_license_file_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_license_file_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_supervisor_card.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_supervisor_card.go index a837411795..d1ae36ff15 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_supervisor_card.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_supervisor_card.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_supervisor_card_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_supervisor_card_list.go index 34896a87b9..0fa3b4acf6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_supervisor_card_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_supervisor_card_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_supervisor_card_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_supervisor_card_relationship.go index 917cc9ef35..f4ad96678b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_supervisor_card_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_supervisor_card_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_supervisor_card_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_supervisor_card_response.go index 4c503f84ae..e4a6ff115c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_supervisor_card_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_supervisor_card_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_telemetry_check.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_telemetry_check.go index bb6e96484d..95064f56ca 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_telemetry_check.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_telemetry_check.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_telemetry_check_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_telemetry_check_list.go index 818ac485ac..962a8f633e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_telemetry_check_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_telemetry_check_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_telemetry_check_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_telemetry_check_response.go index b8916141d9..155e92a1e1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_telemetry_check_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_telemetry_check_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vethernet.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vethernet.go index 3332a299dd..3499815cea 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vethernet.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vethernet.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vethernet_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vethernet_list.go index 2276035cbc..38c34874da 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vethernet_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vethernet_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vethernet_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vethernet_relationship.go index adfa0de3f7..a3c2d5b02c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vethernet_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vethernet_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vethernet_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vethernet_response.go index 251ed61de8..46199a5cb1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vethernet_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vethernet_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vfc.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vfc.go index aab82a8a5a..33aa104c87 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vfc.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vfc.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vfc_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vfc_list.go index 38d7a222f4..e950e2cb55 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vfc_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vfc_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vfc_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vfc_relationship.go index 0ee0bef60e..4eee662852 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vfc_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vfc_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vfc_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vfc_response.go index d97cb20fcc..3b7c23034a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vfc_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vfc_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vlan_port_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vlan_port_info.go index de5e638d58..5bbd19d3d3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vlan_port_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vlan_port_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vlan_port_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vlan_port_info_list.go index ba04af99f3..49e60220c5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vlan_port_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vlan_port_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vlan_port_info_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vlan_port_info_relationship.go index dead56d065..057dbca6c0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vlan_port_info_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vlan_port_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vlan_port_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vlan_port_info_response.go index 53dfb67dae..64a47a62fc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vlan_port_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vlan_port_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_domain.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_domain.go index 5705873efe..4f1e755f73 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_domain.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_domain.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_domain_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_domain_list.go index 647968811b..9056b9af53 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_domain_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_domain_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_domain_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_domain_relationship.go index 82cdeb0127..d697d97490 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_domain_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_domain_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_domain_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_domain_response.go index c401a11f94..a99bf7198b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_domain_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_domain_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_member.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_member.go index 5c5216296e..5d691ff19a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_member.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_member_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_member_list.go index cf17d8bc9f..80170a544b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_member_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_member_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_member_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_member_relationship.go index 04c7375da7..af67803dba 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_member_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_member_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_member_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_member_response.go index a7b7b27b11..7ed97735e8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_member_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_member_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_peer.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_peer.go index d7201ec6f9..5047fc8b19 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_peer.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_peer.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_peer_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_peer_list.go index d603963c34..82812595f3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_peer_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_peer_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_peer_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_peer_relationship.go index 75b3464603..329630f5eb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_peer_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_peer_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_peer_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_peer_response.go index 7bca4cf260..fa88db5c3c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_peer_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vpc_peer_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vrf.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vrf.go index 844ca0ac7a..7efa87dd2c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vrf.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vrf.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vrf_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vrf_list.go index ab9d755403..e9e41ac40b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vrf_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vrf_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vrf_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vrf_relationship.go index 485b964db4..a962aa91ee 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vrf_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vrf_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vrf_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vrf_response.go index 9c37c51063..642c849e65 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vrf_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_network_vrf_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_networkconfig_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_networkconfig_policy.go index 570bafeee2..a7640de7d5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_networkconfig_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_networkconfig_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type NetworkconfigPolicy struct { // IP address of the secondary DNS server. AlternateIpv6dnsServer *string `json:"AlternateIpv6dnsServer,omitempty"` // The domain name appended to a hostname for a Dynamic DNS (DDNS) update. If left blank, only a hostname is sent to the DDNS update request. - DynamicDnsDomain *string `json:"DynamicDnsDomain,omitempty"` + DynamicDnsDomain *string `json:"DynamicDnsDomain,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+([-.]{1}[a-zA-Z0-9]+)*$"` // If enabled, updates the resource records to the DNS from Cisco IMC. EnableDynamicDns *bool `json:"EnableDynamicDns,omitempty"` // If enabled, Cisco IMC retrieves the DNS server addresses from DHCP. Use DHCP field must be enabled for IPv4 in Cisco IMC to enable it. @@ -665,7 +665,7 @@ func (o *NetworkconfigPolicy) UnmarshalJSON(data []byte) (err error) { // IP address of the secondary DNS server. AlternateIpv6dnsServer *string `json:"AlternateIpv6dnsServer,omitempty"` // The domain name appended to a hostname for a Dynamic DNS (DDNS) update. If left blank, only a hostname is sent to the DDNS update request. - DynamicDnsDomain *string `json:"DynamicDnsDomain,omitempty"` + DynamicDnsDomain *string `json:"DynamicDnsDomain,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+([-.]{1}[a-zA-Z0-9]+)*$"` // If enabled, updates the resource records to the DNS from Cisco IMC. EnableDynamicDns *bool `json:"EnableDynamicDns,omitempty"` // If enabled, Cisco IMC retrieves the DNS server addresses from DHCP. Use DHCP field must be enabled for IPv4 in Cisco IMC to enable it. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_networkconfig_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_networkconfig_policy_inventory.go index e47373bbb6..4422946aa0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_networkconfig_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_networkconfig_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type NetworkconfigPolicyInventory struct { // IP address of the secondary DNS server. AlternateIpv6dnsServer *string `json:"AlternateIpv6dnsServer,omitempty"` // The domain name appended to a hostname for a Dynamic DNS (DDNS) update. If left blank, only a hostname is sent to the DDNS update request. - DynamicDnsDomain *string `json:"DynamicDnsDomain,omitempty"` + DynamicDnsDomain *string `json:"DynamicDnsDomain,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+([-.]{1}[a-zA-Z0-9]+)*$"` // If enabled, updates the resource records to the DNS from Cisco IMC. EnableDynamicDns *bool `json:"EnableDynamicDns,omitempty"` // If enabled, Cisco IMC retrieves the DNS server addresses from DHCP. Use DHCP field must be enabled for IPv4 in Cisco IMC to enable it. @@ -580,7 +580,7 @@ func (o *NetworkconfigPolicyInventory) UnmarshalJSON(data []byte) (err error) { // IP address of the secondary DNS server. AlternateIpv6dnsServer *string `json:"AlternateIpv6dnsServer,omitempty"` // The domain name appended to a hostname for a Dynamic DNS (DDNS) update. If left blank, only a hostname is sent to the DDNS update request. - DynamicDnsDomain *string `json:"DynamicDnsDomain,omitempty"` + DynamicDnsDomain *string `json:"DynamicDnsDomain,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+([-.]{1}[a-zA-Z0-9]+)*$"` // If enabled, updates the resource records to the DNS from Cisco IMC. EnableDynamicDns *bool `json:"EnableDynamicDns,omitempty"` // If enabled, Cisco IMC retrieves the DNS server addresses from DHCP. Use DHCP field must be enabled for IPv4 in Cisco IMC to enable it. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_networkconfig_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_networkconfig_policy_inventory_list.go index 2ee1e6af1d..25820a2860 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_networkconfig_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_networkconfig_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_networkconfig_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_networkconfig_policy_inventory_response.go index 8319bbc18b..aecf3a8695 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_networkconfig_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_networkconfig_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_networkconfig_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_networkconfig_policy_list.go index 711041dec0..a1804d1a5e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_networkconfig_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_networkconfig_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_networkconfig_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_networkconfig_policy_response.go index 5ca13c037d..cd603e4b92 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_networkconfig_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_networkconfig_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_cco_post.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_cco_post.go index 471722c502..28904333f1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_cco_post.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_cco_post.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_cco_post_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_cco_post_list.go index 44b89a4f09..91f0eebca0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_cco_post_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_cco_post_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_cco_post_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_cco_post_response.go index 53e0a45545..e5ce937c69 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_cco_post_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_cco_post_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_field_notice.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_field_notice.go index f8d10927d5..e16b055bde 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_field_notice.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_field_notice.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_field_notice_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_field_notice_list.go index 072a468b42..a4319b169a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_field_notice_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_field_notice_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_field_notice_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_field_notice_response.go index 299b7e3d89..8d07ed654c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_field_notice_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_field_notice_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_hweol.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_hweol.go index 2a1e197943..bde70f0c95 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_hweol.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_hweol.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_hweol_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_hweol_list.go index cc323fa8f0..7e3155e3af 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_hweol_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_hweol_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_hweol_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_hweol_response.go index 715261466f..eddffd7356 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_hweol_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_hweol_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_latest_maintained_release.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_latest_maintained_release.go index 2e0a255ec7..aeff690a17 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_latest_maintained_release.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_latest_maintained_release.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_latest_maintained_release_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_latest_maintained_release_list.go index eed93e9b1b..c915a612b3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_latest_maintained_release_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_latest_maintained_release_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_latest_maintained_release_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_latest_maintained_release_response.go index c5ad041f3c..c59e1a48ca 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_latest_maintained_release_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_latest_maintained_release_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_release_recommend.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_release_recommend.go index 0ee79c418a..b3d63e5ee1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_release_recommend.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_release_recommend.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_release_recommend_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_release_recommend_list.go index 99bf16c50d..3c7481ebb2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_release_recommend_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_release_recommend_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_release_recommend_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_release_recommend_response.go index 4a4bf51c40..9575e1f0fc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_release_recommend_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_release_recommend_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_sweol.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_sweol.go index 03b6a0b0d8..923e5c60f3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_sweol.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_sweol.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_sweol_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_sweol_list.go index d83cfcaedd..5229154e8f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_sweol_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_sweol_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_sweol_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_sweol_response.go index 6e340921bd..c7f299aaeb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_sweol_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_apic_sweol_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_cco_post.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_cco_post.go index ce4eedc785..a7928ed6fa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_cco_post.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_cco_post.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_cco_post_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_cco_post_list.go index fe0d5a4863..27f316b82b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_cco_post_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_cco_post_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_cco_post_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_cco_post_response.go index 20c44c4b41..5e800b47ad 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_cco_post_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_cco_post_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_field_notice.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_field_notice.go index 50195a814d..b35c4193ae 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_field_notice.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_field_notice.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_field_notice_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_field_notice_list.go index 6639f90549..11053c5662 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_field_notice_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_field_notice_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_field_notice_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_field_notice_response.go index a591804ba7..0d6198eb1a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_field_notice_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_field_notice_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_hweol.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_hweol.go index a4d8f92b5f..ddfeda1521 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_hweol.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_hweol.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_hweol_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_hweol_list.go index ceb6557677..3367f9d8cd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_hweol_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_hweol_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_hweol_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_hweol_response.go index 496c325744..7cdd12d1e6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_hweol_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_hweol_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_latest_maintained_release.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_latest_maintained_release.go index ac63e8c4c5..edd6ac7041 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_latest_maintained_release.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_latest_maintained_release.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_latest_maintained_release_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_latest_maintained_release_list.go index caf056f7a4..69d56aecef 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_latest_maintained_release_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_latest_maintained_release_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_latest_maintained_release_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_latest_maintained_release_response.go index a0dabf7dbb..e3be2f29c5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_latest_maintained_release_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_latest_maintained_release_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_release_recommend.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_release_recommend.go index 7450903058..a66371574c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_release_recommend.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_release_recommend.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_release_recommend_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_release_recommend_list.go index 7c0bde6564..2a36441f79 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_release_recommend_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_release_recommend_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_release_recommend_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_release_recommend_response.go index 733cac776d..97dd4b9b29 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_release_recommend_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_release_recommend_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_sweol.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_sweol.go index 92f98ce799..d0a2cfccdc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_sweol.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_sweol.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_sweol_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_sweol_list.go index 97906bb161..7eb672f2f1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_sweol_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_sweol_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_sweol_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_sweol_response.go index 9e374eeed3..11b8e43f3f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_sweol_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_dcnm_sweol_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_detail.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_detail.go index 63186450a5..51898724f6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_detail.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_detail.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_field_notice.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_field_notice.go index 2e0ac6056e..9ecff3fae5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_field_notice.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_field_notice.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_file_downloader.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_file_downloader.go index bd6ecc8572..946e72547e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_file_downloader.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_file_downloader.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_file_downloader_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_file_downloader_list.go index 82007795a1..60294dacd6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_file_downloader_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_file_downloader_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_file_downloader_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_file_downloader_response.go index b58337cfa2..cf44512cbe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_file_downloader_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_file_downloader_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_hardware_eol.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_hardware_eol.go index f6bfdabc40..f4ff3443f7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_hardware_eol.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_hardware_eol.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_maintained_release.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_maintained_release.go index 43a2644e95..089a832cf2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_maintained_release.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_maintained_release.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_new_release_detail.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_new_release_detail.go index eeeef2c8be..809f7a81be 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_new_release_detail.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_new_release_detail.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_new_release_post.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_new_release_post.go index cbbb6eedd2..f9ebbc62f7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_new_release_post.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_new_release_post.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nia_metadata.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nia_metadata.go index 662fcd8e63..32f763950e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nia_metadata.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nia_metadata.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nia_metadata_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nia_metadata_list.go index 400ae6d1eb..c56b9bf684 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nia_metadata_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nia_metadata_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nia_metadata_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nia_metadata_response.go index 2f80f2e5de..326b1266ef 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nia_metadata_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nia_metadata_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nib_file_downloader.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nib_file_downloader.go index a813826b3e..da0718ac61 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nib_file_downloader.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nib_file_downloader.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nib_file_downloader_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nib_file_downloader_list.go index c4ad943797..26e7af67ed 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nib_file_downloader_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nib_file_downloader_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nib_file_downloader_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nib_file_downloader_response.go index fdbdafae32..e2ea012086 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nib_file_downloader_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nib_file_downloader_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nib_metadata.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nib_metadata.go index f7ace6574b..496084fb77 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nib_metadata.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nib_metadata.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nib_metadata_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nib_metadata_list.go index 2506c889dd..d576ceab43 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nib_metadata_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nib_metadata_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nib_metadata_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nib_metadata_response.go index e7a3bf1636..5603156968 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nib_metadata_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_nib_metadata_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_puv_script_downloader.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_puv_script_downloader.go index ecf782ab17..ef4b205dac 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_puv_script_downloader.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_puv_script_downloader.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_puv_script_downloader_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_puv_script_downloader_list.go index da34296daf..9dd79f431d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_puv_script_downloader_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_puv_script_downloader_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_puv_script_downloader_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_puv_script_downloader_response.go index 9f6e4c6b22..7d9e6883ed 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_puv_script_downloader_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_puv_script_downloader_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_release_recommend.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_release_recommend.go index 663396b676..f9ea3e4abb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_release_recommend.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_release_recommend.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_revision_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_revision_info.go index bb6bfbb9a1..104a5cfecf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_revision_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_revision_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_sn_validator_metadata.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_sn_validator_metadata.go index 1e2d928309..fbd3681864 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_sn_validator_metadata.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_sn_validator_metadata.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_sn_validator_metadata_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_sn_validator_metadata_list.go index fb736fa1b9..4c595b1773 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_sn_validator_metadata_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_sn_validator_metadata_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_sn_validator_metadata_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_sn_validator_metadata_response.go index 39e8314ff8..280532ff95 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_sn_validator_metadata_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_sn_validator_metadata_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_software_eol.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_software_eol.go index 6946104062..f06cebecc0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_software_eol.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_software_eol.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_software_regex.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_software_regex.go index a83cac9936..593c3aae92 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_software_regex.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_software_regex.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_upgrade_assist_file.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_upgrade_assist_file.go index 75f29ae5b6..3d322a38ca 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_upgrade_assist_file.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_upgrade_assist_file.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_upgrade_assist_file_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_upgrade_assist_file_list.go index d44031c1f5..ebbfcba96d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_upgrade_assist_file_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_upgrade_assist_file_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_upgrade_assist_file_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_upgrade_assist_file_response.go index 11315b93d2..dc884ab17a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_upgrade_assist_file_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_upgrade_assist_file_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_version_regex.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_version_regex.go index 4b9b50f0fe..c1364dfb61 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_version_regex.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_version_regex.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_version_regex_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_version_regex_list.go index 317891ff8d..7b6eee1d98 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_version_regex_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_version_regex_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_version_regex_platform.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_version_regex_platform.go index 6b732aca2f..6278895a25 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_version_regex_platform.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_version_regex_platform.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_version_regex_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_version_regex_response.go index a9def44790..39125b3448 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_version_regex_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niaapi_version_regex_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_ldap_provider_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_ldap_provider_details.go index 85c5a7bb26..3c3f73f85a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_ldap_provider_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_ldap_provider_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_ldap_provider_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_ldap_provider_details_list.go index 78b027e9ff..09540baff2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_ldap_provider_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_ldap_provider_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_ldap_provider_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_ldap_provider_details_response.go index 66875c6639..d37435513b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_ldap_provider_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_ldap_provider_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_radius_provider_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_radius_provider_details.go index d611a723b9..5b60f66da5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_radius_provider_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_radius_provider_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_radius_provider_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_radius_provider_details_list.go index f536ccb5cb..9e152e661a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_radius_provider_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_radius_provider_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_radius_provider_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_radius_provider_details_response.go index 52f37f6033..3f41f786c9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_radius_provider_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_radius_provider_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_tacacs_provider_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_tacacs_provider_details.go index 850631e0fd..91b419c073 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_tacacs_provider_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_tacacs_provider_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_tacacs_provider_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_tacacs_provider_details_list.go index 063042109a..fc469c939f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_tacacs_provider_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_tacacs_provider_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_tacacs_provider_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_tacacs_provider_details_response.go index 826b93a9ce..3e4108ad51 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_tacacs_provider_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_aaa_tacacs_provider_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_app_plugin_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_app_plugin_details.go index 40f2e18b28..79ff2bd69b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_app_plugin_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_app_plugin_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_app_plugin_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_app_plugin_details_list.go index 02da186575..b850a981af 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_app_plugin_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_app_plugin_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_app_plugin_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_app_plugin_details_response.go index bc757742ad..3923f28c11 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_app_plugin_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_app_plugin_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_core_file_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_core_file_details.go index c89bc52430..7788e4c7d5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_core_file_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_core_file_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_core_file_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_core_file_details_list.go index 4c7ba68cd9..d412ed8d36 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_core_file_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_core_file_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_core_file_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_core_file_details_response.go index 1c2f6b0f77..3099f15623 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_core_file_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_core_file_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_export_dest.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_export_dest.go index 8a917978d8..893e9cc76f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_export_dest.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_export_dest.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_export_dest_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_export_dest_list.go index b5d12e9a84..c9516407fc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_export_dest_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_export_dest_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_export_dest_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_export_dest_response.go index f37a4e22b8..397b4962c8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_export_dest_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_export_dest_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_ts_scheduler.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_ts_scheduler.go index 8e1186363f..4ffe86b609 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_ts_scheduler.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_ts_scheduler.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_ts_scheduler_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_ts_scheduler_list.go index 83649abd92..5c9aa691f6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_ts_scheduler_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_ts_scheduler_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_ts_scheduler_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_ts_scheduler_response.go index da027ca233..3d98c948aa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_ts_scheduler_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_dbgexp_rs_ts_scheduler_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_fan_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_fan_details.go index 85d2e30983..cec91103fb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_fan_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_fan_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_fan_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_fan_details_list.go index 504d8497e0..21909eb115 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_fan_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_fan_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_fan_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_fan_details_response.go index 0ac659c6ac..18924fbd7b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_fan_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_fan_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_fex_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_fex_details.go index 919433dc62..f097345760 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_fex_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_fex_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_fex_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_fex_details_list.go index 86baedc977..5e619c1362 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_fex_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_fex_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_fex_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_fex_details_response.go index 9d62520e1c..3e63bceace 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_fex_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_fex_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_flash_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_flash_details.go index d60faa6468..4d9e76c7dd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_flash_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_flash_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_flash_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_flash_details_list.go index 3963ba16c5..f1a9ad25d9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_flash_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_flash_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_flash_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_flash_details_response.go index ff3061ca37..e4e34431ae 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_flash_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_flash_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_ntp_auth.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_ntp_auth.go index 9a613f0d16..eb658e216d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_ntp_auth.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_ntp_auth.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_ntp_auth_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_ntp_auth_list.go index c2f0bcb348..2a85220f47 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_ntp_auth_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_ntp_auth_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_ntp_auth_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_ntp_auth_response.go index 3e0448f5db..7ccd6f79d5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_ntp_auth_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_ntp_auth_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_performance_data.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_performance_data.go index 4095013d97..8e45933c9b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_performance_data.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_performance_data.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_performance_data_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_performance_data_list.go index 34f6933906..fd3fe06d6d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_performance_data_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_performance_data_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_performance_data_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_performance_data_response.go index 3ee03bf5b6..2d68fcec91 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_performance_data_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_performance_data_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_pod_data.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_pod_data.go index 81e346f06d..71b5762f97 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_pod_data.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_pod_data.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_pod_data_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_pod_data_list.go index e33b898e60..5274abffb0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_pod_data_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_pod_data_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_pod_data_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_pod_data_response.go index e8480f32d4..cccbec8db0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_pod_data_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_pod_data_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_psu_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_psu_details.go index dcda0f8f13..3abc11f25c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_psu_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_psu_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_psu_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_psu_details_list.go index 3b1d06b9ca..64d999d33f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_psu_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_psu_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_psu_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_psu_details_response.go index 121adab7be..cc256d2f93 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_psu_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_psu_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_realm_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_realm_details.go index 1293b42261..25d076e7c4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_realm_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_realm_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_realm_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_realm_details_list.go index 47ed70854f..52fc531430 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_realm_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_realm_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_realm_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_realm_details_response.go index 44e1b3477c..582a0a3330 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_realm_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_realm_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_client_grp_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_client_grp_details.go index fa2caae4b1..b469e19ecc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_client_grp_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_client_grp_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_client_grp_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_client_grp_details_list.go index 659f836e72..6538f63f6c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_client_grp_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_client_grp_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_client_grp_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_client_grp_details_response.go index 8604fc59a2..c80c24200c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_client_grp_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_client_grp_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_community_access_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_community_access_details.go index e72a541c4b..4684b29abe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_community_access_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_community_access_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_community_access_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_community_access_details_list.go index 2c44565ca1..a18a4a73a5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_community_access_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_community_access_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_community_access_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_community_access_details_response.go index 9c4c587a7e..5ef866ea59 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_community_access_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_community_access_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_community_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_community_details.go index 417cbc8eae..7e36f5088f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_community_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_community_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_community_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_community_details_list.go index e209a946c0..dc2291c441 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_community_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_community_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_community_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_community_details_response.go index ae7a737516..c5f91eacfc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_community_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_community_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_trap_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_trap_details.go index 39bb2456a4..4c34405130 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_trap_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_trap_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_trap_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_trap_details_list.go index b827f97b51..0e8ed82204 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_trap_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_trap_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_trap_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_trap_details_response.go index 3583f11d6d..19994af0fa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_trap_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_trap_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_trap_fwd_server_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_trap_fwd_server_details.go index 55c3244883..a8f58e4721 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_trap_fwd_server_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_trap_fwd_server_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_trap_fwd_server_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_trap_fwd_server_details_list.go index 966b8ab475..b4140e66ec 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_trap_fwd_server_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_trap_fwd_server_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_trap_fwd_server_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_trap_fwd_server_details_response.go index 95c408506b..f30844e81b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_trap_fwd_server_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_trap_fwd_server_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_version_three_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_version_three_details.go index 44cd41504b..8225b531d2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_version_three_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_version_three_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_version_three_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_version_three_details_list.go index 544d4de2aa..98a2305dcb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_version_three_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_version_three_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_version_three_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_version_three_details_response.go index 002b7c37e2..91bb3cd7ee 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_version_three_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_snmp_version_three_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_sys_log_grp.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_sys_log_grp.go index 862add87ce..d325756ccd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_sys_log_grp.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_sys_log_grp.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_sys_log_grp_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_sys_log_grp_list.go index 3a80880190..0219cd1c06 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_sys_log_grp_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_sys_log_grp_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_sys_log_grp_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_sys_log_grp_response.go index 9309b7b3b0..9e495ed1d3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_sys_log_grp_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_sys_log_grp_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_sys_log_src.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_sys_log_src.go index 0e5d9c22d0..e39abef4b1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_sys_log_src.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_sys_log_src.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_sys_log_src_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_sys_log_src_list.go index f600f02e9f..5e23f8dd3e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_sys_log_src_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_sys_log_src_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_sys_log_src_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_sys_log_src_response.go index b87b3bebb2..87fa49a5f3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_sys_log_src_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_sys_log_src_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_transceiver_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_transceiver_details.go index a99d9b906e..23d98e4f5e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_transceiver_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_transceiver_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_transceiver_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_transceiver_details_list.go index aebddfd80b..355168e2c9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_transceiver_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_transceiver_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_transceiver_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_transceiver_details_response.go index 8d9d7d330b..e6edf5dba3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_transceiver_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_transceiver_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_ui_page_counts.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_ui_page_counts.go index d6309a757f..638fd13e73 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_ui_page_counts.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_ui_page_counts.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_ui_page_counts_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_ui_page_counts_list.go index a1873cc84d..f29939eb47 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_ui_page_counts_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_ui_page_counts_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_ui_page_counts_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_ui_page_counts_response.go index 12bbe245cb..1d38bccf36 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_ui_page_counts_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_ui_page_counts_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_vision.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_vision.go index 285647c7ea..1cd41280c0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_vision.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_vision.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_vision_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_vision_list.go index b508c8f8e0..6129a8affd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_vision_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_vision_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_vision_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_vision_response.go index 23a9914092..6e3aec76cd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_vision_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_apic_vision_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_app_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_app_details.go index c1bd6ffa66..53382245a0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_app_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_app_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_app_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_app_details_list.go index ac4702bedf..615480f395 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_app_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_app_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_app_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_app_details_response.go index 2c2409f1e3..222fcb9700 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_app_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_app_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_bootflash_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_bootflash_details.go index 254f192f53..9c649e236b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_bootflash_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_bootflash_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_cloud_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_cloud_details.go index 77634fc3de..ac9122b2c6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_cloud_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_cloud_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_cloud_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_cloud_details_list.go index 2a5755f6de..b94cce2b80 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_cloud_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_cloud_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_cloud_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_cloud_details_response.go index 8dd5bc964b..d742100542 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_cloud_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_cloud_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_cloud_regions_element.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_cloud_regions_element.go index ea3f81b53b..5f8fe5ca4a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_cloud_regions_element.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_cloud_regions_element.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_cloud_routers_element.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_cloud_routers_element.go index 5afdf32649..875461c2a0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_cloud_routers_element.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_cloud_routers_element.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_common_policies.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_common_policies.go index 656d11461a..2438bab28a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_common_policies.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_common_policies.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_common_policies_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_common_policies_list.go index b94db569f3..6c585ef733 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_common_policies_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_common_policies_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_common_policies_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_common_policies_response.go index b5ced53a35..1b679cb15f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_common_policies_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_common_policies_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_fan_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_fan_details.go index 53700b11eb..8bff6e320a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_fan_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_fan_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_fan_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_fan_details_list.go index 153b12d2f8..69d9c8944d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_fan_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_fan_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_fan_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_fan_details_response.go index 5fbd0a5421..0983b99b2c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_fan_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_fan_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_fex_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_fex_details.go index c9d66a5510..ed6562cad2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_fex_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_fex_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_fex_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_fex_details_list.go index 25a950977f..5c9d81ff57 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_fex_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_fex_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_fex_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_fex_details_response.go index 053bedb5ac..6ac8be1b63 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_fex_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_fex_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_module_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_module_details.go index 0852ef8da1..3829fa5b33 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_module_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_module_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_module_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_module_details_list.go index 96b840993f..3a5b0c1c92 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_module_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_module_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_module_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_module_details_response.go index 001904a6a6..09ab3581ff 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_module_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_module_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_psu_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_psu_details.go index 1ee4454063..bab6b26085 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_psu_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_psu_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_psu_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_psu_details_list.go index f8c546a445..1e53ca8c11 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_psu_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_psu_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_psu_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_psu_details_response.go index 4cacbf599c..54efa52699 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_psu_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_psu_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_transceiver_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_transceiver_details.go index af14dde142..e9b884deba 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_transceiver_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_transceiver_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_transceiver_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_transceiver_details_list.go index 3ab3790828..850e5777d9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_transceiver_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_transceiver_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_transceiver_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_transceiver_details_response.go index 73010d4ecc..1267e76e03 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_transceiver_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_dcnm_transceiver_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_deployment_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_deployment_status.go index d91c84c5a8..6724502d02 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_deployment_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_deployment_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_digital_optical_monitoring.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_digital_optical_monitoring.go index e5648d2aac..da8cbc5d2d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_digital_optical_monitoring.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_digital_optical_monitoring.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_diskinfo.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_diskinfo.go index 01a25c0dec..ca10ac9fa7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_diskinfo.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_diskinfo.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_epg.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_epg.go index e5135c7b65..35e9698e8a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_epg.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_epg.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_epg_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_epg_list.go index 50c35f8e24..b9bcc5324e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_epg_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_epg_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_epg_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_epg_response.go index 0e026745d7..75b4635ae2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_epg_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_epg_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_eqpt_storage_firmware.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_eqpt_storage_firmware.go index f668ff21bb..7f42bfcbcc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_eqpt_storage_firmware.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_eqpt_storage_firmware.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_eqptcapacity_pol_usage5min.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_eqptcapacity_pol_usage5min.go index 609a13848e..d8475e1b9d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_eqptcapacity_pol_usage5min.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_eqptcapacity_pol_usage5min.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_eqptcapacity_prefix_entries15min.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_eqptcapacity_prefix_entries15min.go index 1b4b47f5ca..48f4ff2d61 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_eqptcapacity_prefix_entries15min.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_eqptcapacity_prefix_entries15min.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_eqptcapacity_prefix_entries5min.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_eqptcapacity_prefix_entries5min.go index ab491e8366..e043c1c483 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_eqptcapacity_prefix_entries5min.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_eqptcapacity_prefix_entries5min.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_module_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_module_details.go index bed4e703fa..53b72b761e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_module_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_module_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_module_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_module_details_list.go index a0422c81ff..292272b4db 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_module_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_module_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_module_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_module_details_response.go index 8ff3cb5f90..196f6ff35c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_module_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_module_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_node_control_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_node_control_details.go index 542025120e..123a0c7ff4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_node_control_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_node_control_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_node_control_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_node_control_details_list.go index d041f25fa1..9006fee081 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_node_control_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_node_control_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_node_control_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_node_control_details_response.go index 6bf783c5ec..34a86f8cf8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_node_control_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_node_control_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_pod_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_pod_profile.go index 6e86d5924d..1871301ba2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_pod_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_pod_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_pod_profile_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_pod_profile_list.go index 467c2b351b..ece7d6929a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_pod_profile_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_pod_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_pod_profile_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_pod_profile_response.go index ecf13f2ad9..ddf106f2d6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_pod_profile_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_pod_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_pod_ss.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_pod_ss.go index 3bba0ec51d..f8f134657b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_pod_ss.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_pod_ss.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_pod_ss_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_pod_ss_list.go index 6c20a658d1..d397e123ac 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_pod_ss_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_pod_ss_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_pod_ss_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_pod_ss_response.go index 97f5e71e6d..11df0d0593 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_pod_ss_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fabric_pod_ss_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fan_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fan_details.go index 1a81cdfe4e..5486b677be 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fan_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fan_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fault.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fault.go index ddd46bde1f..976b5a210b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fault.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fault.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fault_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fault_list.go index 1e9c2d5390..8926d1586a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fault_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fault_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fault_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fault_response.go index cdcbf50afe..df758e8011 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fault_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_fault_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_hcloud_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_hcloud_details.go index 8633eb4b35..071e18c8b7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_hcloud_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_hcloud_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_hcloud_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_hcloud_details_list.go index e63fe158a7..f70aad5d81 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_hcloud_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_hcloud_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_hcloud_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_hcloud_details_response.go index 50b122a517..9936014366 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_hcloud_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_hcloud_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_health_insights_data.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_health_insights_data.go index 6e77d9db43..55792dbc28 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_health_insights_data.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_health_insights_data.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_health_insights_data_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_health_insights_data_list.go index a75909fc2f..5996c59e55 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_health_insights_data_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_health_insights_data_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_health_insights_data_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_health_insights_data_response.go index 4402a7f4d6..78b618ff18 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_health_insights_data_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_health_insights_data_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_contract_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_contract_details.go index 30ae1e03e7..3b16ac11d8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_contract_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_contract_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_contract_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_contract_details_list.go index 4266a731f8..9dadb623b0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_contract_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_contract_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_contract_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_contract_details_response.go index c26605f2a4..7d1070a567 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_contract_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_contract_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_contract_filter_map.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_contract_filter_map.go index a3a909879a..9d0ed504a1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_contract_filter_map.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_contract_filter_map.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_contract_filter_map_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_contract_filter_map_list.go index dc47cdec26..0f21dd843a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_contract_filter_map_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_contract_filter_map_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_contract_filter_map_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_contract_filter_map_response.go index a969f73043..481a806b03 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_contract_filter_map_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_contract_filter_map_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_epg_contract_map.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_epg_contract_map.go index 3641490552..b84a3839eb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_epg_contract_map.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_epg_contract_map.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_epg_contract_map_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_epg_contract_map_list.go index 55284c75f1..284564a3db 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_epg_contract_map_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_epg_contract_map_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_epg_contract_map_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_epg_contract_map_response.go index a7c4273d40..8069bd6397 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_epg_contract_map_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_epg_contract_map_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_epg_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_epg_details.go index 3dd6964152..d7b44e7745 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_epg_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_epg_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_epg_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_epg_details_list.go index 4ee20ae9a4..5031b0220c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_epg_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_epg_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_epg_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_epg_details_response.go index e2b98065af..b352739067 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_epg_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_epg_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_filter_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_filter_details.go index 715efb942d..67227e7115 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_filter_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_filter_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_filter_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_filter_details_list.go index b4fa0ffa86..1aad9e353a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_filter_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_filter_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_filter_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_filter_details_response.go index 267dd71b32..5072f38a53 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_filter_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_https_acl_filter_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_image_detail.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_image_detail.go index 50c5b2eb13..773363d485 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_image_detail.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_image_detail.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_insight_group_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_insight_group_details.go index 893aefe98c..496a303bdf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_insight_group_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_insight_group_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_insight_group_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_insight_group_details_list.go index 147cad48cc..e2e0cc530e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_insight_group_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_insight_group_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_insight_group_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_insight_group_details_response.go index 79854b9b82..377335656b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_insight_group_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_insight_group_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_interface.go index ed84461c1a..402c05b5af 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_interface_element.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_interface_element.go index ef47808ec6..6c805aa5aa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_interface_element.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_interface_element.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_job_detail.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_job_detail.go index 6ea2fee8b2..12b55a9d2c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_job_detail.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_job_detail.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_lc.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_lc.go index 7be3cebee2..1db091125d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_lc.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_lc.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_lc_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_lc_list.go index 3122fe08aa..9572686986 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_lc_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_lc_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_lc_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_lc_response.go index 7d18d97d2a..4666ac647c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_lc_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_lc_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_leaf_pol_grp_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_leaf_pol_grp_details.go index 652754ef5c..bc35651346 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_leaf_pol_grp_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_leaf_pol_grp_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_leaf_pol_grp_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_leaf_pol_grp_details_list.go index 7c9e5dc5d7..093a0629e8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_leaf_pol_grp_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_leaf_pol_grp_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_leaf_pol_grp_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_leaf_pol_grp_details_response.go index 6a8a08af8a..f18e8e843a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_leaf_pol_grp_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_leaf_pol_grp_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_logical_link.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_logical_link.go index 1e52eaec85..663393e83d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_logical_link.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_logical_link.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mds_neighbor_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mds_neighbor_info.go index 0848cdbe5e..d0060ab670 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mds_neighbor_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mds_neighbor_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mds_neighbors.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mds_neighbors.go index ae29563f3c..841d753720 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mds_neighbors.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mds_neighbors.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mds_neighbors_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mds_neighbors_list.go index 1d6db259c8..93ab5ab884 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mds_neighbors_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mds_neighbors_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mds_neighbors_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mds_neighbors_response.go index da61016c7e..1681282290 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mds_neighbors_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mds_neighbors_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_contract_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_contract_details.go index d3a0080a3f..0cb6850a7e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_contract_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_contract_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_contract_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_contract_details_list.go index f52c5c44ec..1cb968b809 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_contract_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_contract_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_contract_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_contract_details_response.go index d8943ef3d8..d01525a898 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_contract_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_contract_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_epg_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_epg_details.go index 0a6c97a403..aa35cda3fb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_epg_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_epg_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_epg_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_epg_details_list.go index 5d7238f869..4568e0d3f7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_epg_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_epg_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_epg_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_epg_details_response.go index 99ad98cf17..ff3ce044d0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_epg_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_epg_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_schema_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_schema_details.go index d8222743ec..ed28f89e23 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_schema_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_schema_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_schema_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_schema_details_list.go index 22122742da..66d8110f8d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_schema_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_schema_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_schema_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_schema_details_response.go index fe419153fb..b83364490c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_schema_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_schema_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_site_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_site_details.go index db5a69e564..15975a1f75 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_site_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_site_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_site_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_site_details_list.go index d0db059c45..45ab49cad2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_site_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_site_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_site_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_site_details_response.go index 8f334695ac..914acd1ed6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_site_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_site_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_tenant_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_tenant_details.go index 70e81f4a7f..d224d8add0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_tenant_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_tenant_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_tenant_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_tenant_details_list.go index 27d96d4b52..b14aac2a03 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_tenant_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_tenant_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_tenant_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_tenant_details_response.go index db4fa7c2b1..10882c2ea7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_tenant_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_mso_tenant_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_network_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_network_info.go index ef6910fe68..6871806964 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_network_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_network_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_account.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_account.go index f172bce92d..2d5f55db15 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_account.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_account.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_account_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_account_list.go index a481789e85..83774a5a7b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_account_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_account_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_account_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_account_relationship.go index a9c3f290d6..3adad6b428 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_account_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_account_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_account_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_account_response.go index 7d25dd1e74..afdbca2556 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_account_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_account_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_site.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_site.go index b160c92fd0..d01dacab6d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_site.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_site.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_site_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_site_list.go index 808f9e6267..e9ae3065df 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_site_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_site_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_site_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_site_response.go index d65d5de8f1..8e9369b6ce 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_site_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_cloud_site_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_controller_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_controller_details.go index 9a8000ae4d..4e330a8b0e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_controller_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_controller_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_controller_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_controller_details_list.go index 70c5124acb..074a9f55d4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_controller_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_controller_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_controller_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_controller_details_response.go index 5e2952e80a..dbe50112a8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_controller_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_controller_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_details.go index c4151d44c1..017063ae2f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_details_list.go index 833e49a182..0ea2f6f223 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_details_response.go index 4b69ef2239..d5abb39288 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_memory_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_memory_details.go index 724526d8f7..33e805e9c8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_memory_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_memory_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_memory_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_memory_details_list.go index 48428e1fb4..ccc95755cb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_memory_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_memory_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_memory_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_memory_details_response.go index baf9d21c26..23e93856b8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_memory_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboard_memory_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboards.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboards.go index 3a5b1e76af..ea83b81fc6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboards.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboards.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboards_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboards_list.go index 0113ecda3c..00a4068222 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboards_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboards_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboards_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboards_relationship.go index 9323de173d..fc5662008c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboards_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboards_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboards_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboards_response.go index 6152c5f18d..2003e4a616 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboards_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nexus_dashboards_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_feature_usage.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_feature_usage.go index 7afcc14734..6f98122d08 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_feature_usage.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_feature_usage.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_feature_usage_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_feature_usage_list.go index 1074a77a07..a9052a38a6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_feature_usage_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_feature_usage_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_feature_usage_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_feature_usage_response.go index 27531a626f..73bd678ccb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_feature_usage_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_feature_usage_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory.go index 1a282df22c..f638c512ef 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_dcnm.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_dcnm.go index 64df8e3208..0ffe50eb51 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_dcnm.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_dcnm.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_dcnm_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_dcnm_list.go index cbe1a56d7b..becb83b625 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_dcnm_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_dcnm_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_dcnm_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_dcnm_response.go index 71cf200ab7..d24f9a4988 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_dcnm_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_dcnm_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_fabric.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_fabric.go index dad6daf159..131be73a1b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_fabric.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_fabric.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_fabric_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_fabric_list.go index 1d9f514777..3a4a32c842 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_fabric_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_fabric_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_fabric_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_fabric_response.go index 6d721819ae..d11e39eac1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_fabric_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_fabric_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_list.go index fc61f8f037..0bba7ce9f3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_relationship.go index 560234496b..9ca451ae7e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_response.go index 193fb72982..8e1eada197 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_license_state.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_license_state.go index 5329e9135d..24c99f1141 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_license_state.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_license_state.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_license_state_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_license_state_list.go index 511f3591bc..7b7492408a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_license_state_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_license_state_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_license_state_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_license_state_relationship.go index 56580e9084..0895238be6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_license_state_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_license_state_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_license_state_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_license_state_response.go index 4e2ceb6f62..b10c1fd909 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_license_state_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nia_license_state_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nicc.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nicc.go index b3bc5e8391..532c3bca7b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nicc.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nicc.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nicc_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nicc_list.go index 986952bda7..87a6188d8e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nicc_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nicc_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nicc_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nicc_response.go index 9f42527d46..bbf97a2132 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nicc_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nicc_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_node.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_node.go index a9ba9d235d..d25ed19844 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_node.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_node.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nve_packet_counters.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nve_packet_counters.go index 6bc80efe4b..4970929457 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nve_packet_counters.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nve_packet_counters.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nve_vni.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nve_vni.go index 10e0c34033..d055c97bec 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nve_vni.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nve_vni.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nxos_bgp_evpn.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nxos_bgp_evpn.go index a4068a5e64..f749d245ae 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nxos_bgp_evpn.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nxos_bgp_evpn.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nxos_bgp_mvpn.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nxos_bgp_mvpn.go index 5c4ebccf5f..ef93deca56 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nxos_bgp_mvpn.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nxos_bgp_mvpn.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nxos_vtp.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nxos_vtp.go index 69273585ed..dba1913654 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nxos_vtp.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_nxos_vtp.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_password_strength_check.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_password_strength_check.go index b9d97687d7..ca242eef5c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_password_strength_check.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_password_strength_check.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_password_strength_check_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_password_strength_check_list.go index dbe3bdae5b..c6542aa64e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_password_strength_check_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_password_strength_check_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_password_strength_check_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_password_strength_check_response.go index b5ac3b1036..361fd23a67 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_password_strength_check_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_password_strength_check_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_comm_policies.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_comm_policies.go index 5b42b36909..bdb62461fb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_comm_policies.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_comm_policies.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_comm_policies_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_comm_policies_list.go index 3c455fe30f..68911cc7df 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_comm_policies_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_comm_policies_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_comm_policies_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_comm_policies_response.go index 1fc8f7ed03..8577bfdcad 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_comm_policies_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_comm_policies_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_snmp_policies.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_snmp_policies.go index d4b9481d6e..be8d536299 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_snmp_policies.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_snmp_policies.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_snmp_policies_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_snmp_policies_list.go index fa9a193f10..35a89a0c7c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_snmp_policies_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_snmp_policies_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_snmp_policies_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_snmp_policies_response.go index 675c3cd0e7..f825059b8b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_snmp_policies_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_snmp_policies_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_time_server_policies.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_time_server_policies.go index 02a7ff557b..fefeb08ec4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_time_server_policies.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_time_server_policies.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_time_server_policies_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_time_server_policies_list.go index 798fa4604c..ef613a47d6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_time_server_policies_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_time_server_policies_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_time_server_policies_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_time_server_policies_response.go index b1236dae01..dec4149390 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_time_server_policies_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_pod_time_server_policies_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_proc_sys_cpu15min.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_proc_sys_cpu15min.go index 4fbe7f0a75..2b301969fb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_proc_sys_cpu15min.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_proc_sys_cpu15min.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_proc_sys_cpu5min.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_proc_sys_cpu5min.go index 5d8453ddfd..9807b0fb97 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_proc_sys_cpu5min.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_proc_sys_cpu5min.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_proc_sys_mem15min.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_proc_sys_mem15min.go index 5f92587cdb..1441f0c8b3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_proc_sys_mem15min.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_proc_sys_mem15min.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_proc_sys_mem5min.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_proc_sys_mem5min.go index 6a6a1597b4..5ee6cf55e2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_proc_sys_mem5min.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_proc_sys_mem5min.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_site_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_site_inventory.go index 4e1bf1d243..e761080e2c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_site_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_site_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_site_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_site_inventory_list.go index f33e9a2782..8a4ad6561c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_site_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_site_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_site_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_site_inventory_response.go index e2c1862999..aed9c083d5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_site_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_site_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_sites.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_sites.go index b3e205d2cf..7592708e82 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_sites.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_sites.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_smart_license.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_smart_license.go index 63886b6aa9..4a15af829e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_smart_license.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_smart_license.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_snmp_src.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_snmp_src.go index da88d9b4bc..f818e7f850 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_snmp_src.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_snmp_src.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_snmp_src_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_snmp_src_list.go index aef7704a4c..364185a8ed 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_snmp_src_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_snmp_src_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_snmp_src_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_snmp_src_response.go index bcad9fbe6a..3ba183a43c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_snmp_src_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_snmp_src_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_spine_pol_grp_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_spine_pol_grp_details.go index fa5c1dc37f..8a51f80d1f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_spine_pol_grp_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_spine_pol_grp_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_spine_pol_grp_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_spine_pol_grp_details_list.go index 9ed6ee75e5..5aebdfffad 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_spine_pol_grp_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_spine_pol_grp_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_spine_pol_grp_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_spine_pol_grp_details_response.go index f1228bb79f..9a83788291 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_spine_pol_grp_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_spine_pol_grp_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_ssh_version_two.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_ssh_version_two.go index cedb24e95c..2b381af2dc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_ssh_version_two.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_ssh_version_two.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_ssh_version_two_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_ssh_version_two_list.go index 4c45c2b456..daceffab00 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_ssh_version_two_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_ssh_version_two_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_ssh_version_two_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_ssh_version_two_response.go index ff1bb59b86..c4f6c5e7d4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_ssh_version_two_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_ssh_version_two_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_supervisor_module_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_supervisor_module_details.go index e95537c7d3..0bfe90c601 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_supervisor_module_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_supervisor_module_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_supervisor_module_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_supervisor_module_details_list.go index 3038d7dd76..0d6fde69d8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_supervisor_module_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_supervisor_module_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_supervisor_module_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_supervisor_module_details_response.go index 04c16632bc..8df1f90318 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_supervisor_module_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_supervisor_module_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_switch_disk_utilization.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_switch_disk_utilization.go index 3b36311f58..2970e5a04c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_switch_disk_utilization.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_switch_disk_utilization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_remote_dest.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_remote_dest.go index 1eda884f8d..6a82007e3f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_remote_dest.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_remote_dest.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_remote_dest_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_remote_dest_list.go index e179c9dc19..8214488ede 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_remote_dest_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_remote_dest_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_remote_dest_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_remote_dest_response.go index e5049bd930..f1a541f5f4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_remote_dest_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_remote_dest_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_sys_msg.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_sys_msg.go index 4749b08a44..450cd0f579 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_sys_msg.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_sys_msg.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_sys_msg_fac_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_sys_msg_fac_filter.go index ace481eab4..c8a155df19 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_sys_msg_fac_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_sys_msg_fac_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_sys_msg_fac_filter_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_sys_msg_fac_filter_list.go index 9e6de216bf..54df689c8c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_sys_msg_fac_filter_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_sys_msg_fac_filter_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_sys_msg_fac_filter_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_sys_msg_fac_filter_response.go index aa85608410..804cd71dc1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_sys_msg_fac_filter_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_sys_msg_fac_filter_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_sys_msg_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_sys_msg_list.go index 80dd1a215f..6ccd97c773 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_sys_msg_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_sys_msg_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_sys_msg_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_sys_msg_response.go index 3f6b119fdf..878c646812 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_sys_msg_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_syslog_sys_msg_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_system_controller_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_system_controller_details.go index a6d7463e3b..41a9f5e999 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_system_controller_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_system_controller_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_system_controller_details_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_system_controller_details_list.go index a9d9f7c605..071ab289da 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_system_controller_details_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_system_controller_details_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_system_controller_details_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_system_controller_details_response.go index bd506eaca3..6d9a814822 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_system_controller_details_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_system_controller_details_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_tenant.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_tenant.go index 2ab8d48a82..c1246dd6ec 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_tenant.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_tenant.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_tenant_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_tenant_list.go index 526e510234..91139653b5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_tenant_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_tenant_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_tenant_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_tenant_response.go index 561e50b738..3501e0aa64 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_tenant_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_tenant_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_vni_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_vni_status.go index ac1a09ef05..44d9833aca 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_vni_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_vni_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_vpc_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_vpc_details.go index 33afe9450a..01643a3683 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_vpc_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_niatelemetry_vpc_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_abstract_condition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_abstract_condition.go index 9cc65addd7..55039a3a09 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_abstract_condition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_abstract_condition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_abstract_mo_condition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_abstract_mo_condition.go index 4dacbe2caa..d3720255e4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_abstract_mo_condition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_abstract_mo_condition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_account_subscription.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_account_subscription.go index 43f1cf39aa..2956b5e5e2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_account_subscription.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_account_subscription.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type NotificationAccountSubscription struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The name of the subscription. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` // The chosen subscription type imposes it is own validation rules. When 'email' type is chosen, actions array can contain only one entry and it is entry should be of can be only notification.SendEmail; conditions can contain only notification.AlarmMoCondition and condition types should be unique. When the 'webhook' type is chosen, the actions array can contain only one entry and it is entry should be of can be only notification.TriggerWebhook; conditions can contain up to a limited amount of entries and all of them should be of type notification.MoCondition. * `email` - Email type requires usage of notification.SendEmail complex types for actionsand notification.AlarmMoCondition complex types for conditions. * `webhook` - Webhook type requires usage of notification.TriggerWebhook complex types for actionsand notification.MoCondition complex types for conditions. Type *string `json:"Type,omitempty"` // Used to verify the actions of the Subscription MO. For a 'webhook' type Ping event is sent to verify that the webhook server is accessible. For an 'email' type there will be a verification email sent. * `none` - No actions will be verified. Default value. * `all` - All actions will be re-verified. The previous state of the verification will be preserved. @@ -362,7 +362,7 @@ func (o *NotificationAccountSubscription) UnmarshalJSON(data []byte) (err error) // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The name of the subscription. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` // The chosen subscription type imposes it is own validation rules. When 'email' type is chosen, actions array can contain only one entry and it is entry should be of can be only notification.SendEmail; conditions can contain only notification.AlarmMoCondition and condition types should be unique. When the 'webhook' type is chosen, the actions array can contain only one entry and it is entry should be of can be only notification.TriggerWebhook; conditions can contain up to a limited amount of entries and all of them should be of type notification.MoCondition. * `email` - Email type requires usage of notification.SendEmail complex types for actionsand notification.AlarmMoCondition complex types for conditions. * `webhook` - Webhook type requires usage of notification.TriggerWebhook complex types for actionsand notification.MoCondition complex types for conditions. Type *string `json:"Type,omitempty"` // Used to verify the actions of the Subscription MO. For a 'webhook' type Ping event is sent to verify that the webhook server is accessible. For an 'email' type there will be a verification email sent. * `none` - No actions will be verified. Default value. * `all` - All actions will be re-verified. The previous state of the verification will be preserved. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_account_subscription_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_account_subscription_list.go index b864da718d..56fe1bd990 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_account_subscription_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_account_subscription_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_account_subscription_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_account_subscription_response.go index db51114b87..5b860405b8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_account_subscription_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_account_subscription_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_action.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_action.go index 9195b18740..af56c9350d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_action.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_action.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_aggregation_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_aggregation_settings.go index 2087d5f9ac..f20fe82bfb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_aggregation_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_aggregation_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_alarm_mo_condition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_alarm_mo_condition.go index 52a5ac3d64..92a65540a2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_alarm_mo_condition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_alarm_mo_condition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_distributable_mo_condition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_distributable_mo_condition.go index 380c73391b..6c040d1679 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_distributable_mo_condition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_distributable_mo_condition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_mo_condition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_mo_condition.go index 6a92a2a45f..36ed7a788b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_mo_condition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_mo_condition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_send_email.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_send_email.go index 11bd4047c9..85e7ee0f62 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_send_email.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_send_email.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_software_release_meta_mo_condition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_software_release_meta_mo_condition.go index 3c24adae88..814735a767 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_software_release_meta_mo_condition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_software_release_meta_mo_condition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_subscription.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_subscription.go index ea9fb00931..51c8b5cc1b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_subscription.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_subscription.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_trigger_webhook.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_trigger_webhook.go index 94afe62998..21c2fbd43e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_trigger_webhook.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_notification_trigger_webhook.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -42,7 +42,7 @@ type NotificationTriggerWebhook struct { // State of the action shows whether this action passes the verification or not. If this property holds 'Inactive' value, this action will not be executed. To verify action again, use the Verify property from the MO. * `Inactive` - Inactive state means action didn't pass the verification and it won't be executed. * `Active` - Active state means that action successfully passed the verification and it is ready to be performed. State *string `json:"State,omitempty"` // Payload URL of the recipient app, which is intended to serve the events that happens in Intersight. - Url *string `json:"Url,omitempty"` + Url *string `json:"Url,omitempty" validate:"regexp=^https:\\/\\/[\\\\w.-]+(?:\\\\.[\\\\w\\\\.-]+)+[\\\\w\\\\-\\\\._~:\\/?#[\\\\]@!\\\\$&'\\\\(\\\\)\\\\*\\\\+,;=.]+$"` AdditionalProperties map[string]interface{} } @@ -468,7 +468,7 @@ func (o *NotificationTriggerWebhook) UnmarshalJSON(data []byte) (err error) { // State of the action shows whether this action passes the verification or not. If this property holds 'Inactive' value, this action will not be executed. To verify action again, use the Verify property from the MO. * `Inactive` - Inactive state means action didn't pass the verification and it won't be executed. * `Active` - Active state means that action successfully passed the verification and it is ready to be performed. State *string `json:"State,omitempty"` // Payload URL of the recipient app, which is intended to serve the events that happens in Intersight. - Url *string `json:"Url,omitempty"` + Url *string `json:"Url,omitempty" validate:"regexp=^https:\\/\\/[\\\\w.-]+(?:\\\\.[\\\\w\\\\.-]+)+[\\\\w\\\\-\\\\._~:\\/?#[\\\\]@!\\\\$&'\\\\(\\\\)\\\\*\\\\+,;=.]+$"` } varNotificationTriggerWebhookWithoutEmbeddedStruct := NotificationTriggerWebhookWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_auth_ntp_server.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_auth_ntp_server.go index 7d0fc10118..1cb0e65c10 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_auth_ntp_server.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_auth_ntp_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_ntp_server.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_ntp_server.go index c6468f34a9..c3e9f7c2d0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_ntp_server.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_ntp_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_ntp_server_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_ntp_server_list.go index 261381968f..f8c3070615 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_ntp_server_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_ntp_server_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_ntp_server_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_ntp_server_relationship.go index 177b5a7f32..5f4739f5b8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_ntp_server_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_ntp_server_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_ntp_server_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_ntp_server_response.go index 396db646d7..69a5576cc6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_ntp_server_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_ntp_server_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_policy.go index 640c746584..8f16dd99a0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_policy_list.go index cfda606f15..e740088d9c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_policy_response.go index 22136c2743..05da67180e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ntp_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_access_token.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_access_token.go index 000ddfa3df..0688b6a974 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_access_token.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_access_token.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_access_token_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_access_token_list.go index ad6fd1953b..16b27a781c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_access_token_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_access_token_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_access_token_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_access_token_relationship.go index cdcbe2f50b..bae9331120 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_access_token_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_access_token_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_access_token_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_access_token_response.go index b7345e9873..5463c88280 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_access_token_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_access_token_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_authorization.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_authorization.go index 96f7a6ccb2..6425295be7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_authorization.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_authorization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_authorization_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_authorization_list.go index 63334edfab..f6c25bcc82 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_authorization_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_authorization_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_authorization_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_authorization_response.go index 380f4744d3..2d9bd62ca1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_authorization_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oauth_authorization_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_cluster_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_cluster_info.go index 7f8b40c041..b5ce88a204 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_cluster_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_cluster_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_cluster_node.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_cluster_node.go index 3d563f04d8..17ed7857f2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_cluster_node.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_cluster_node.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_image_package.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_image_package.go index 0f32107461..df8161d6f9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_image_package.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_image_package.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_resource_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_resource_info.go index 5b8a84c028..cfaff8d0e0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_resource_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_resource_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_schedule.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_schedule.go index 5fd570a746..b216ccd8a1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_schedule.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_schedule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_upgrade_note.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_upgrade_note.go index f097cc163e..5dbc8c0557 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_upgrade_note.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_upgrade_note.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_upgrade_phase.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_upgrade_phase.go index 00031afa82..88959df984 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_upgrade_phase.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_onprem_upgrade_phase.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_api_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_api_info.go index 924c39b8ab..80c43ae70f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_api_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_api_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_api_method_meta.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_api_method_meta.go index 35c56428ef..ea26657e3b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_api_method_meta.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_api_method_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_api_method_meta_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_api_method_meta_list.go index 662b743c1d..c268c53bec 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_api_method_meta_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_api_method_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_api_method_meta_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_api_method_meta_response.go index 6c68b91b91..c7395060df 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_api_method_meta_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_api_method_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_failed_task.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_failed_task.go index b8b72ad2f0..b9d8adefd8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_failed_task.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_failed_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_key_value_pair.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_key_value_pair.go index c6da586d56..f36f9a3cde 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_key_value_pair.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_key_value_pair.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_open_api_specification.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_open_api_specification.go index d1d79dc8d8..27d427a4c1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_open_api_specification.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_open_api_specification.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_open_api_specification_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_open_api_specification_list.go index 6459d89c8c..9f879bf30e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_open_api_specification_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_open_api_specification_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_open_api_specification_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_open_api_specification_relationship.go index 36b332c057..9602d88290 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_open_api_specification_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_open_api_specification_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_open_api_specification_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_open_api_specification_response.go index 6a9c581a62..c44ca1de65 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_open_api_specification_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_open_api_specification_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_process_file.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_process_file.go index 51906bb951..205847da29 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_process_file.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_process_file.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_process_file_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_process_file_list.go index f663aaeec9..d4b1acd2a1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_process_file_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_process_file_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_process_file_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_process_file_relationship.go index 1fc4cea976..5fde5c3854 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_process_file_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_process_file_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_process_file_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_process_file_response.go index 6b3aa01ffa..1930afbc29 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_process_file_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_process_file_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_request.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_request.go index 57e3c05005..686c9fc9b6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_request.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_request_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_request_list.go index 2ee6f0541e..b9950ef9b2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_request_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_request_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_request_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_request_relationship.go index af15d10bd5..bbc389392f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_request_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_request_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_request_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_request_response.go index bff2babc5e..fbb82153c1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_request_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_request_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_result.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_result.go index fcb41a2144..d3e52fb656 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_result.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_result_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_result_list.go index 7c13aefd60..f02e91d7e5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_result_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_result_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_result_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_result_response.go index 16f8b61280..53a39a578d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_result_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_openapi_task_generation_result_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_deployment.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_deployment.go index a285e55a65..881f9c75c4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_deployment.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_deployment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_deployment_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_deployment_list.go index 905792ea2b..ed5fb1ce19 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_deployment_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_deployment_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_deployment_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_deployment_response.go index ead2be1444..6525ae3777 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_deployment_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_deployment_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_kvpair.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_kvpair.go index 74a074b7d5..4d917a1a62 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_kvpair.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_kvpair.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_sync_target_list_message.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_sync_target_list_message.go index e6f43889f4..4fe636845f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_sync_target_list_message.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_sync_target_list_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_sync_target_list_message_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_sync_target_list_message_list.go index c594de48be..2399d132d7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_sync_target_list_message_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_sync_target_list_message_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_sync_target_list_message_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_sync_target_list_message_response.go index 2ba703559b..6619f7ea99 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_sync_target_list_message_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_oprs_sync_target_list_message_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_organization_organization.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_organization_organization.go index 93f1540040..519821028f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_organization_organization.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_organization_organization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type OrganizationOrganization struct { // The informative description about the usage of this organization. Description *string `json:"Description,omitempty"` // The name of the organization. There can be multiple organizations under an account. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` Account NullableIamAccountRelationship `json:"Account,omitempty"` // An array of relationships to resourceGroup resources. ResourceGroups []ResourceGroupRelationship `json:"ResourceGroups,omitempty"` @@ -395,7 +395,7 @@ func (o *OrganizationOrganization) UnmarshalJSON(data []byte) (err error) { // The informative description about the usage of this organization. Description *string `json:"Description,omitempty"` // The name of the organization. There can be multiple organizations under an account. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` Account NullableIamAccountRelationship `json:"Account,omitempty"` // An array of relationships to resourceGroup resources. ResourceGroups []ResourceGroupRelationship `json:"ResourceGroups,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_organization_organization_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_organization_organization_list.go index ffedecfd5d..ae8601d2fa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_organization_organization_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_organization_organization_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_organization_organization_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_organization_organization_relationship.go index 37e95b5a46..c0188dad84 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_organization_organization_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_organization_organization_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_organization_organization_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_organization_organization_response.go index 4c88116185..f2ed6114d6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_organization_organization_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_organization_organization_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_answers.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_answers.go index 019563fd12..96004a95d2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_answers.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_answers.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_base_install_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_base_install_config.go index 63f4dcc0a5..4a55e7944c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_base_install_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_base_install_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_bulk_install_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_bulk_install_info.go index 02fd8dd7a1..145c2788f0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_bulk_install_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_bulk_install_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_bulk_install_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_bulk_install_info_list.go index 0d5e465480..b2135fdcbd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_bulk_install_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_bulk_install_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_bulk_install_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_bulk_install_info_response.go index 668a4723ce..e3d2b0ff6a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_bulk_install_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_bulk_install_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_catalog.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_catalog.go index 7fc00ae003..7fb36e19a0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_catalog.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_catalog.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_catalog_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_catalog_list.go index 657ff6fc08..3abdb246fe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_catalog_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_catalog_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_catalog_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_catalog_relationship.go index 94cd3f1b16..9306d2cdd3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_catalog_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_catalog_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_catalog_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_catalog_response.go index f4e5bd59cc..bc8875d558 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_catalog_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_catalog_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_configuration_file.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_configuration_file.go index fb4c120051..6298673573 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_configuration_file.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_configuration_file.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type OsConfigurationFile struct { // The internal flag is set to true when configuration file is uploaded from OS Install wizard. Internal Configuration files will not be displayed in Answer Management Page. Internal *bool `json:"Internal,omitempty"` // The name of the OS ConfigurationFile that uniquely identifies the configuration file. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\._\\\\-]+$"` Placeholders []OsPlaceHolder `json:"Placeholders,omitempty"` // An internal property that is used to distinguish between the pre-canned OS configuration file entries and user provided entries. Supported *bool `json:"Supported,omitempty"` @@ -513,7 +513,7 @@ func (o *OsConfigurationFile) UnmarshalJSON(data []byte) (err error) { // The internal flag is set to true when configuration file is uploaded from OS Install wizard. Internal Configuration files will not be displayed in Answer Management Page. Internal *bool `json:"Internal,omitempty"` // The name of the OS ConfigurationFile that uniquely identifies the configuration file. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\._\\\\-]+$"` Placeholders []OsPlaceHolder `json:"Placeholders,omitempty"` // An internal property that is used to distinguish between the pre-canned OS configuration file entries and user provided entries. Supported *bool `json:"Supported,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_configuration_file_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_configuration_file_list.go index cb30615616..f64131d0e9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_configuration_file_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_configuration_file_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_configuration_file_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_configuration_file_relationship.go index 677c2261f2..55c08b37bf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_configuration_file_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_configuration_file_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_configuration_file_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_configuration_file_response.go index 0cddf89830..d47c55c365 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_configuration_file_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_configuration_file_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_distribution.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_distribution.go index 7cddde6c94..80365fd13d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_distribution.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_distribution.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_distribution_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_distribution_list.go index d2f21558f6..d366219b88 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_distribution_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_distribution_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_distribution_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_distribution_relationship.go index feafca2158..7c0b8d9c88 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_distribution_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_distribution_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_distribution_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_distribution_response.go index d527650c9c..6c179ea7e6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_distribution_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_distribution_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_fibre_channel_target.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_fibre_channel_target.go index fdc902425a..999fec5a10 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_fibre_channel_target.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_fibre_channel_target.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,11 +29,11 @@ type OsFibreChannelTarget struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The WWPN Address of the underlying fibre channel interface at initator used for SAN boot. Value must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. For example, 20:00:D4:C9:3C:35:02:01. - InitiatorWwpn *string `json:"InitiatorWwpn,omitempty"` + InitiatorWwpn *string `json:"InitiatorWwpn,omitempty" validate:"regexp=(^([0-9a-fA-F]{2}:){7}[0-9a-fA-F]{2}$)"` // Logical Unit Number (LUN) of the install target. LunId *int64 `json:"LunId,omitempty"` // The WWPN Address of the underlying fibre channel interface at target used by the SAN boot device. Value must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. For example, 51:4F:0C:50:14:1F:AF:01. - TargetWwpn *string `json:"TargetWwpn,omitempty"` + TargetWwpn *string `json:"TargetWwpn,omitempty" validate:"regexp=(^([0-9a-fA-F]{2}:){7}[0-9a-fA-F]{2}$)"` AdditionalProperties map[string]interface{} } @@ -311,11 +311,11 @@ func (o *OsFibreChannelTarget) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The WWPN Address of the underlying fibre channel interface at initator used for SAN boot. Value must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. For example, 20:00:D4:C9:3C:35:02:01. - InitiatorWwpn *string `json:"InitiatorWwpn,omitempty"` + InitiatorWwpn *string `json:"InitiatorWwpn,omitempty" validate:"regexp=(^([0-9a-fA-F]{2}:){7}[0-9a-fA-F]{2}$)"` // Logical Unit Number (LUN) of the install target. LunId *int64 `json:"LunId,omitempty"` // The WWPN Address of the underlying fibre channel interface at target used by the SAN boot device. Value must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. For example, 51:4F:0C:50:14:1F:AF:01. - TargetWwpn *string `json:"TargetWwpn,omitempty"` + TargetWwpn *string `json:"TargetWwpn,omitempty" validate:"regexp=(^([0-9a-fA-F]{2}:){7}[0-9a-fA-F]{2}$)"` } varOsFibreChannelTargetWithoutEmbeddedStruct := OsFibreChannelTargetWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_global_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_global_config.go index ad263ec82f..91a1e7c20b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_global_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_global_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type OsGlobalConfig struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of the Configuration file. - ConfigurationFileName *string `json:"ConfigurationFileName,omitempty"` + ConfigurationFileName *string `json:"ConfigurationFileName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9\\\\._\\\\-]+$"` // Configuration source for the OS Installation. ConfigurationSource *string `json:"ConfigurationSource,omitempty"` // The install method to be used for OS installation - vMedia, iPXE. Only vMedia is supported as of now. @@ -543,7 +543,7 @@ func (o *OsGlobalConfig) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of the Configuration file. - ConfigurationFileName *string `json:"ConfigurationFileName,omitempty"` + ConfigurationFileName *string `json:"ConfigurationFileName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9\\\\._\\\\-]+$"` // Configuration source for the OS Installation. ConfigurationSource *string `json:"ConfigurationSource,omitempty"` // The install method to be used for OS installation - vMedia, iPXE. Only vMedia is supported as of now. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_install.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_install.go index c94ce348fd..958915b494 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_install.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_install.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_install_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_install_list.go index 6f740a512b..90e7a8a7ee 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_install_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_install_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_install_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_install_response.go index beed6f1ce5..0e63ae399d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_install_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_install_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_install_target.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_install_target.go index 8c6e47b2e3..a26369c9cb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_install_target.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_install_target.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_install_target_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_install_target_response.go index ab8fa8a6a3..7d47d214c4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_install_target_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_install_target_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_ip_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_ip_configuration.go index eec756ce88..c78ad0027e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_ip_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_ip_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_ipv4_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_ipv4_configuration.go index 2f9026e968..946aed4675 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_ipv4_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_ipv4_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_ipv6_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_ipv6_configuration.go index e3d4356b37..f1abea5747 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_ipv6_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_ipv6_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_iscsi_target.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_iscsi_target.go index 51a870760b..1585a30484 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_iscsi_target.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_iscsi_target.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,9 +31,9 @@ type OsIscsiTarget struct { // The Logical Unit Number (LUN) of the install target. LunId *int64 `json:"LunId,omitempty"` // IQN (iSCSI qualified name) of Storage iSCSI target.Can be up to 255 characters long and has the following format, iqn.yyyy-mm.naming-authority:unique_name. - TargetIqn *string `json:"TargetIqn,omitempty"` + TargetIqn *string `json:"TargetIqn,omitempty" validate:"regexp=^(iqn\\\\.(\\\\d{4}-(0[1-9]|1[0-2]))\\\\.([a-zA-Z0-9]+)([a-zA-Z0-9-.]*)(:)+([^,\\\\s']+))$"` // MAC address of the VNIC used as iSCSI initiator interface. - VnicMac *string `json:"VnicMac,omitempty"` + VnicMac *string `json:"VnicMac,omitempty" validate:"regexp=^([0-9A-Fa-f]{2}[:]){5}([0-9A-Fa-f]{2})$"` AdditionalProperties map[string]interface{} } @@ -313,9 +313,9 @@ func (o *OsIscsiTarget) UnmarshalJSON(data []byte) (err error) { // The Logical Unit Number (LUN) of the install target. LunId *int64 `json:"LunId,omitempty"` // IQN (iSCSI qualified name) of Storage iSCSI target.Can be up to 255 characters long and has the following format, iqn.yyyy-mm.naming-authority:unique_name. - TargetIqn *string `json:"TargetIqn,omitempty"` + TargetIqn *string `json:"TargetIqn,omitempty" validate:"regexp=^(iqn\\\\.(\\\\d{4}-(0[1-9]|1[0-2]))\\\\.([a-zA-Z0-9]+)([a-zA-Z0-9-.]*)(:)+([^,\\\\s']+))$"` // MAC address of the VNIC used as iSCSI initiator interface. - VnicMac *string `json:"VnicMac,omitempty"` + VnicMac *string `json:"VnicMac,omitempty" validate:"regexp=^([0-9A-Fa-f]{2}[:]){5}([0-9A-Fa-f]{2})$"` } varOsIscsiTargetWithoutEmbeddedStruct := OsIscsiTargetWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_operating_system_parameters.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_operating_system_parameters.go index 0b3fe8016e..fd31bbdb16 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_operating_system_parameters.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_operating_system_parameters.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_os_support.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_os_support.go index d1ea4ec226..43d4494d07 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_os_support.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_os_support.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_physical_disk.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_physical_disk.go index 61a2175cf0..c00330b989 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_physical_disk.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_physical_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_physical_disk_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_physical_disk_response.go index b4b00497cd..b9b7e74317 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_physical_disk_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_physical_disk_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_place_holder.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_place_holder.go index e18da80af5..aaa12a0d6c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_place_holder.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_place_holder.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_san_target.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_san_target.go index a46d0a17a8..d68faa6229 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_san_target.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_san_target.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_server_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_server_config.go index 3419fcd3a9..afb1b062a5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_server_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_server_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -32,7 +32,7 @@ type OsServerConfig struct { Answers NullableOsAnswers `json:"Answers,omitempty"` ErrorMsgs []string `json:"ErrorMsgs,omitempty"` // The WWPN Address of the underlying fibre channel interface at the host side used for SAN accesss. Value must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. For example, 20:00:D4:C9:3C:35:02:01. - InitiatorWwpn *string `json:"InitiatorWwpn,omitempty"` + InitiatorWwpn *string `json:"InitiatorWwpn,omitempty" validate:"regexp=^$|(^([0-9a-fA-F]{2}:){7}[0-9a-fA-F]{2}$)"` // The target in which OS installation triggered, the value represented is StorageControllerID follwed by PhysicalDisk SerialNumber in case of Physcial disk or VirtualDriveId for virtual drive. InstallTarget *string `json:"InstallTarget,omitempty"` // The Logical Unit Number (LUN) of the install target. @@ -44,9 +44,9 @@ type OsServerConfig struct { // IQN (iSCSI qualified name) of Storage iSCSI target. Can be up to 255 characters long and has the following format, iqn.yyyy-mm.naming-authority:unique_name. TargetIqn *string `json:"TargetIqn,omitempty"` // The WWPN Address of the underlying fibre channel interface at the target used by the storage. Value must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. For example, 51:4F:0C:50:14:1F:AF:01. - TargetWwpn *string `json:"TargetWwpn,omitempty"` + TargetWwpn *string `json:"TargetWwpn,omitempty" validate:"regexp=^$|(^([0-9a-fA-F]{2}:){7}[0-9a-fA-F]{2}$)"` // MAC address of the VNIC used as iSCSI initiator interface. - VnicMac *string `json:"VnicMac,omitempty"` + VnicMac *string `json:"VnicMac,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:]){5}([0-9A-Fa-f]{2})$"` AdditionalProperties map[string]interface{} } @@ -673,7 +673,7 @@ func (o *OsServerConfig) UnmarshalJSON(data []byte) (err error) { Answers NullableOsAnswers `json:"Answers,omitempty"` ErrorMsgs []string `json:"ErrorMsgs,omitempty"` // The WWPN Address of the underlying fibre channel interface at the host side used for SAN accesss. Value must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. For example, 20:00:D4:C9:3C:35:02:01. - InitiatorWwpn *string `json:"InitiatorWwpn,omitempty"` + InitiatorWwpn *string `json:"InitiatorWwpn,omitempty" validate:"regexp=^$|(^([0-9a-fA-F]{2}:){7}[0-9a-fA-F]{2}$)"` // The target in which OS installation triggered, the value represented is StorageControllerID follwed by PhysicalDisk SerialNumber in case of Physcial disk or VirtualDriveId for virtual drive. InstallTarget *string `json:"InstallTarget,omitempty"` // The Logical Unit Number (LUN) of the install target. @@ -685,9 +685,9 @@ func (o *OsServerConfig) UnmarshalJSON(data []byte) (err error) { // IQN (iSCSI qualified name) of Storage iSCSI target. Can be up to 255 characters long and has the following format, iqn.yyyy-mm.naming-authority:unique_name. TargetIqn *string `json:"TargetIqn,omitempty"` // The WWPN Address of the underlying fibre channel interface at the target used by the storage. Value must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. For example, 51:4F:0C:50:14:1F:AF:01. - TargetWwpn *string `json:"TargetWwpn,omitempty"` + TargetWwpn *string `json:"TargetWwpn,omitempty" validate:"regexp=^$|(^([0-9a-fA-F]{2}:){7}[0-9a-fA-F]{2}$)"` // MAC address of the VNIC used as iSCSI initiator interface. - VnicMac *string `json:"VnicMac,omitempty"` + VnicMac *string `json:"VnicMac,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:]){5}([0-9A-Fa-f]{2})$"` } varOsServerConfigWithoutEmbeddedStruct := OsServerConfigWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_supported_version.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_supported_version.go index 1f7cc29de1..4af76fb1e6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_supported_version.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_supported_version.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_supported_version_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_supported_version_list.go index 4e491d1fe4..a5046121f6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_supported_version_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_supported_version_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_supported_version_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_supported_version_response.go index 6e8e436caa..9fdf091671 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_supported_version_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_supported_version_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_template_file.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_template_file.go index 4546850773..76c3fb9b84 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_template_file.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_template_file.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_valid_install_target.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_valid_install_target.go index a694ec6027..eb94b31659 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_valid_install_target.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_valid_install_target.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_validation_information.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_validation_information.go index d8460803f8..370b07270f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_validation_information.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_validation_information.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_virtual_drive.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_virtual_drive.go index 48c31574b7..912f6a818a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_virtual_drive.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_virtual_drive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_virtual_drive_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_virtual_drive_response.go index bb814c8d1b..f697754d75 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_virtual_drive_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_virtual_drive_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_vmware_parameters.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_vmware_parameters.go index a307fc0e0d..4a0a9ee7ab 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_vmware_parameters.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_vmware_parameters.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_windows_parameters.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_windows_parameters.go index 389f07899f..2de483c8c4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_windows_parameters.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_os_windows_parameters.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_dc_logs.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_dc_logs.go index 021c40946a..b551ef8d3e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_dc_logs.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_dc_logs.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_dc_logs_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_dc_logs_list.go index 848b0c6d4d..dc143c1cc4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_dc_logs_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_dc_logs_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_dc_logs_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_dc_logs_relationship.go index 65c395d904..24ce377433 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_dc_logs_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_dc_logs_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_dc_logs_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_dc_logs_response.go index 01ac144960..784c8bd638 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_dc_logs_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_dc_logs_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_device_connector.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_device_connector.go index 53f736b184..1cb25ee0ef 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_device_connector.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_device_connector.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -37,7 +37,7 @@ type PartnerintegrationDeviceConnector struct { // Name of the docker image that is built. ImageName *string `json:"ImageName,omitempty"` // Name of the device connector recipe. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` // Name of the bucket to pick up the file from. SrcBucket *string `json:"SrcBucket,omitempty"` // Name of source file to upload. @@ -552,7 +552,7 @@ func (o *PartnerintegrationDeviceConnector) UnmarshalJSON(data []byte) (err erro // Name of the docker image that is built. ImageName *string `json:"ImageName,omitempty"` // Name of the device connector recipe. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` // Name of the bucket to pick up the file from. SrcBucket *string `json:"SrcBucket,omitempty"` // Name of source file to upload. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_device_connector_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_device_connector_list.go index dd94c147b1..15ec8a43a8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_device_connector_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_device_connector_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_device_connector_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_device_connector_relationship.go index 2fa8be2f85..fb81db7faf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_device_connector_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_device_connector_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_device_connector_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_device_connector_response.go index c9fd9b861b..68bb5066c4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_device_connector_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_device_connector_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_doc_issues.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_doc_issues.go index f1bf464731..b814ce007e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_doc_issues.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_doc_issues.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_doc_issues_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_doc_issues_list.go index 31edf7aefe..812799b021 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_doc_issues_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_doc_issues_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_doc_issues_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_doc_issues_relationship.go index b74c67c328..65477ec385 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_doc_issues_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_doc_issues_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_doc_issues_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_doc_issues_response.go index 98726619a7..53587764a5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_doc_issues_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_doc_issues_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_etl.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_etl.go index 06b3206740..acefe8274c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_etl.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_etl.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type PartnerintegrationEtl struct { // Transformation model in yaml format. Data interface{} `json:"Data,omitempty"` // Placeholder name for the ETL. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` Inventory NullablePartnerintegrationInventoryRelationship `json:"Inventory,omitempty"` AdditionalProperties map[string]interface{} } @@ -320,7 +320,7 @@ func (o *PartnerintegrationEtl) UnmarshalJSON(data []byte) (err error) { // Transformation model in yaml format. Data interface{} `json:"Data,omitempty"` // Placeholder name for the ETL. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` Inventory NullablePartnerintegrationInventoryRelationship `json:"Inventory,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_etl_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_etl_list.go index 3ac0f8d0e2..c7ac089676 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_etl_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_etl_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_etl_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_etl_relationship.go index 2f1d4c3c9f..9f0348b4c9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_etl_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_etl_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_etl_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_etl_response.go index 56fc702d5c..f6babfd9d7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_etl_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_etl_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_file.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_file.go index 8699ec3573..83b978bef4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_file.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_file.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_file_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_file_list.go index c687d28222..139241543b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_file_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_file_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_file_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_file_response.go index 1bd3b0524e..2e78e4fd67 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_file_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_file_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_inventory.go index 7675f670fd..9da254fe58 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -43,7 +43,7 @@ type PartnerintegrationInventory struct { // Name of the docker image that is built. ImageName *string `json:"ImageName,omitempty"` // Name of the inventory collection. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` // Link to the generated v3 python SDK. PythonSdkUrl *string `json:"PythonSdkUrl,omitempty"` // An array of relationships to partnerintegrationDocIssues resources. @@ -793,7 +793,7 @@ func (o *PartnerintegrationInventory) UnmarshalJSON(data []byte) (err error) { // Name of the docker image that is built. ImageName *string `json:"ImageName,omitempty"` // Name of the inventory collection. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` // Link to the generated v3 python SDK. PythonSdkUrl *string `json:"PythonSdkUrl,omitempty"` // An array of relationships to partnerintegrationDocIssues resources. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_inventory_list.go index 9729eaee6a..8889fe798e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_inventory_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_inventory_relationship.go index 11f3827f9f..dee3883edd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_inventory_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_inventory_response.go index 85908d7f30..4d47f05da3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_logs.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_logs.go index d70e62689c..d3711519be 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_logs.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_logs.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_logs_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_logs_list.go index c0dd782e92..0f14c17a70 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_logs_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_logs_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_logs_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_logs_relationship.go index 1ee5d725c8..97f1e181f7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_logs_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_logs_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_logs_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_logs_response.go index c7a8fc78fb..2730ddf764 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_logs_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_logs_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_metrics.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_metrics.go index 5dacfdc6d8..1d5d724378 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_metrics.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_metrics.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,7 +30,7 @@ type PartnerintegrationMetrics struct { ObjectType string `json:"ObjectType"` Data NullablePartnerintegrationMetricsModel `json:"Data,omitempty"` // Placeholder name for the Metrics. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` Inventory NullablePartnerintegrationInventoryRelationship `json:"Inventory,omitempty"` AdditionalProperties map[string]interface{} } @@ -328,7 +328,7 @@ func (o *PartnerintegrationMetrics) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` Data NullablePartnerintegrationMetricsModel `json:"Data,omitempty"` // Placeholder name for the Metrics. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` Inventory NullablePartnerintegrationInventoryRelationship `json:"Inventory,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_metrics_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_metrics_list.go index 26802accb4..32e203dacf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_metrics_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_metrics_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_metrics_model.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_metrics_model.go index abc44b9ee7..abf19153c3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_metrics_model.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_metrics_model.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_metrics_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_metrics_relationship.go index 237bb283a7..cb6831de49 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_metrics_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_metrics_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_metrics_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_metrics_response.go index b9163218b9..3e4ebe62a4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_metrics_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_metrics_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_model.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_model.go index fa18508d1e..c13b3c9487 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_model.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_model.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type PartnerintegrationModel struct { // Endpoint model in yaml format. Data interface{} `json:"Data,omitempty"` // Placeholder name for the model. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` Inventory NullablePartnerintegrationInventoryRelationship `json:"Inventory,omitempty"` AdditionalProperties map[string]interface{} } @@ -320,7 +320,7 @@ func (o *PartnerintegrationModel) UnmarshalJSON(data []byte) (err error) { // Endpoint model in yaml format. Data interface{} `json:"Data,omitempty"` // Placeholder name for the model. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` Inventory NullablePartnerintegrationInventoryRelationship `json:"Inventory,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_model_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_model_list.go index 75f471e4a8..c201b0ceab 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_model_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_model_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_model_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_model_relationship.go index 44d249efb7..443ce252ba 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_model_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_model_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_model_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_model_response.go index 2576755722..d400f79b5d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_model_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_partnerintegration_model_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_patch_document.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_patch_document.go index f9eb2fc5c9..c1624bfc52 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_patch_document.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_patch_document.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_coprocessor_card.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_coprocessor_card.go index 22d90fa4ec..320e34583b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_coprocessor_card.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_coprocessor_card.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_coprocessor_card_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_coprocessor_card_list.go index c6a1caa3dc..c8d98e2895 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_coprocessor_card_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_coprocessor_card_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_coprocessor_card_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_coprocessor_card_relationship.go index b786a738f6..e8189dabc1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_coprocessor_card_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_coprocessor_card_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_coprocessor_card_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_coprocessor_card_response.go index eb9883ec77..273e51a4df 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_coprocessor_card_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_coprocessor_card_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_device.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_device.go index 9c018921da..1240f93470 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_device.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_device_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_device_list.go index c56e9cb17d..9d798bbf98 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_device_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_device_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_device_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_device_relationship.go index 6086d8b0aa..24450916c3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_device_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_device_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_device_response.go index 48f07bf4b7..af958314ce 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_device_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_device_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_link.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_link.go index 1ea77a46e6..04072893b0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_link.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_link.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_link_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_link_list.go index b2a66556be..0452a22520 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_link_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_link_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_link_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_link_relationship.go index 011d6779e7..4ae4d14ea2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_link_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_link_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_link_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_link_response.go index 0957c61c20..6d1c641636 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_link_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_link_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_node.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_node.go index 2e1f3d3ed4..cbaa8dbc9b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_node.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_node.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_node_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_node_list.go index b501ca8960..8459908692 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_node_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_node_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_node_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_node_relationship.go index cd4dc2fbad..1df9d9044a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_node_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_node_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_node_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_node_response.go index ff0513ea04..1ea6dcaf7f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_node_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_node_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_switch.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_switch.go index 0f8c62c2cc..8174588aac 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_switch.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_switch.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_switch_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_switch_list.go index b13b61b387..5854a15323 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_switch_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_switch_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_switch_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_switch_relationship.go index f63e8bba32..d7a2b46717 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_switch_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_switch_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_switch_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_switch_response.go index e478b08e71..0547c19c06 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_switch_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pci_switch_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pkix_distinguished_name.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pkix_distinguished_name.go index d0310e8cbd..4561c99bb9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pkix_distinguished_name.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pkix_distinguished_name.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pkix_ecdsa_key_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pkix_ecdsa_key_spec.go index 3edf6748d5..f1b0c17a3b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pkix_ecdsa_key_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pkix_ecdsa_key_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pkix_eddsa_key_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pkix_eddsa_key_spec.go index a6425b166e..2de4782294 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pkix_eddsa_key_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pkix_eddsa_key_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pkix_key_generation_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pkix_key_generation_spec.go index b5ff6b6032..6c31747838 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pkix_key_generation_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pkix_key_generation_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pkix_rsa_algorithm.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pkix_rsa_algorithm.go index 58946cd020..9caa7e76f1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pkix_rsa_algorithm.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pkix_rsa_algorithm.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pkix_subject_alternate_name.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pkix_subject_alternate_name.go index c30d236c05..d5988a5d7c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pkix_subject_alternate_name.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pkix_subject_alternate_name.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_config_change_detail.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_config_change_detail.go index f88ad61f78..e772ffcba5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_config_change_detail.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_config_change_detail.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_config_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_config_profile.go index 2cdf17c900..75b45e25a3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_config_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_config_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_config_profile_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_config_profile_relationship.go index 08e6827acd..6d938ebc2a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_config_profile_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_config_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_config_result.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_config_result.go index e7f42a73b5..594e3bf57c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_config_result.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_config_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_config_result_entry.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_config_result_entry.go index 023e794cd6..af9740f073 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_config_result_entry.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_config_result_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_configuration_object.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_configuration_object.go index 67e8f05e60..0568ccd161 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_configuration_object.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_configuration_object.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_disruption.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_disruption.go index 9ba5c5a0bb..07e20a9199 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_disruption.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_disruption.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_inventory.go index aa28e39f49..5f00528319 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_policy.go index 2bb6feb441..056b8fa6ef 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type PolicyAbstractPolicy struct { // 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. ObjectType string `json:"ObjectType"` // Description of the policy. - Description *string `json:"Description,omitempty"` + Description *string `json:"Description,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\x00-\\\\xFF]*$"` // Name of the concrete policy. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` AdditionalProperties map[string]interface{} } @@ -247,9 +247,9 @@ func (o *PolicyAbstractPolicy) UnmarshalJSON(data []byte) (err error) { // 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. ObjectType string `json:"ObjectType"` // Description of the policy. - Description *string `json:"Description,omitempty"` + Description *string `json:"Description,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\x00-\\\\xFF]*$"` // Name of the concrete policy. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` } varPolicyAbstractPolicyWithoutEmbeddedStruct := PolicyAbstractPolicyWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_policy_inventory.go index 527cefa2eb..e9b4cf40af 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type PolicyAbstractPolicyInventory struct { // 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. ObjectType string `json:"ObjectType"` // Description of the policy. - Description *string `json:"Description,omitempty"` + Description *string `json:"Description,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_'.:-]*$"` // Name of the inventoried policy object. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,512}$"` AdditionalProperties map[string]interface{} } @@ -247,9 +247,9 @@ func (o *PolicyAbstractPolicyInventory) UnmarshalJSON(data []byte) (err error) { // 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. ObjectType string `json:"ObjectType"` // Description of the policy. - Description *string `json:"Description,omitempty"` + Description *string `json:"Description,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_'.:-]*$"` // Name of the inventoried policy object. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,512}$"` } varPolicyAbstractPolicyInventoryWithoutEmbeddedStruct := PolicyAbstractPolicyInventoryWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_policy_item.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_policy_item.go index a702c06eb0..16aada62d2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_policy_item.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_policy_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_policy_relationship.go index 1027f481ef..654ffa1d8a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_profile.go index 3c2c880137..ae56e65517 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type PolicyAbstractProfile struct { // 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. ObjectType string `json:"ObjectType"` // Description of the profile. - Description *string `json:"Description,omitempty"` + Description *string `json:"Description,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\x00-\\\\xFF]*$"` // Name of the profile instance or profile template. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` // 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. Type *string `json:"Type,omitempty"` SrcTemplate NullablePolicyAbstractProfileRelationship `json:"SrcTemplate,omitempty"` @@ -335,9 +335,9 @@ func (o *PolicyAbstractProfile) UnmarshalJSON(data []byte) (err error) { // 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. ObjectType string `json:"ObjectType"` // Description of the profile. - Description *string `json:"Description,omitempty"` + Description *string `json:"Description,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\x00-\\\\xFF]*$"` // Name of the profile instance or profile template. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` // 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. Type *string `json:"Type,omitempty"` SrcTemplate NullablePolicyAbstractProfileRelationship `json:"SrcTemplate,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_profile_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_profile_relationship.go index 4ac0e70235..02bb09d879 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_profile_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_abstract_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_action_param.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_action_param.go index a6fc8c0ff1..4b0722a50d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_action_param.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_action_param.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_action_qualifier.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_action_qualifier.go index 8b6a99f6ef..ff9d0faf98 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_action_qualifier.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_action_qualifier.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_config_change.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_config_change.go index fe1dd05e57..06d0f0a192 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_config_change.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_config_change.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_config_change_context.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_config_change_context.go index 8f44c4c689..483312b9ac 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_config_change_context.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_config_change_context.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_config_change_disruption_detail_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_config_change_disruption_detail_type.go index e7050c6a92..16c081bb8b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_config_change_disruption_detail_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_config_change_disruption_detail_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_config_context.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_config_context.go index cf4a3e4f6a..b9e66ac0de 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_config_context.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_config_context.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_config_result_context.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_config_result_context.go index 1b86a4c7ff..df755e362e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_config_result_context.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_config_result_context.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_policy_error.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_policy_error.go index cdf3ccdc8f..ec6863b85a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_policy_error.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_policy_error.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_policy_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_policy_status.go index a0f02b5c00..6e29ad20ca 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_policy_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_policy_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_qualifier.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_qualifier.go index 2b4c3bf264..db2b610299 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_qualifier.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_qualifier.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_scheduled_action.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_scheduled_action.go index a00004ab37..12198e912f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_scheduled_action.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policy_scheduled_action.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policyinventory_abstract_device_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policyinventory_abstract_device_info.go index 008d2eeb55..2c063ddfd7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policyinventory_abstract_device_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policyinventory_abstract_device_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policyinventory_job_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policyinventory_job_info.go index 4de8321e67..8e8482831d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policyinventory_job_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_policyinventory_job_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_block.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_block.go index a72d3d2373..71788dd8ea 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_block.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_block_lease.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_block_lease.go index 2950df25ea..c76f266ecf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_block_lease.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_block_lease.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_block_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_block_type.go index feea3e9e63..4f8f8a402f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_block_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_block_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_id_pool_member.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_id_pool_member.go index c8df1c2898..ff8ba8ae12 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_id_pool_member.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_id_pool_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_lease.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_lease.go index 71428277cc..adbc04f238 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_lease.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_lease.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_pool.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_pool.go index 67da97cc17..6c31f3f2ab 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_pool.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_pool_member.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_pool_member.go index cf2059e2ac..ef3dfd4b3d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_pool_member.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_abstract_pool_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_reservation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_reservation.go index 8f9c4d01dd..9946e3ce9f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_reservation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_reservation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_reservation_reference.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_reservation_reference.go index fa34e2e82c..284b7133b8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_reservation_reference.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_pool_reservation_reference.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_group.go index e871dadff9..17097bae9e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_group_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_group_list.go index d2640555be..164e925940 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_group_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_group_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_group_relationship.go index 7f537b0238..1851d69416 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_group_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_group_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_group_response.go index cc9fec10d1..f6fa0c8d2d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_group_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_interface_base.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_interface_base.go index c833f2bc2e..ee3db4e0f1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_interface_base.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_interface_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_interface_base_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_interface_base_relationship.go index 1c28ecb0ad..08a67406cf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_interface_base_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_interface_base_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_mac_binding.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_mac_binding.go index e58c8df47b..5628fd9663 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_mac_binding.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_mac_binding.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_mac_binding_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_mac_binding_list.go index a693afb614..6dcd1a09c5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_mac_binding_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_mac_binding_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_mac_binding_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_mac_binding_relationship.go index 57812be67e..e3081577b4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_mac_binding_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_mac_binding_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_mac_binding_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_mac_binding_response.go index fb28f7e949..fb43ae4e6b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_mac_binding_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_mac_binding_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_physical.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_physical.go index 3992530d85..998246946d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_physical.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_physical.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_sub_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_sub_group.go index f10aeec196..671aa6cf86 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_sub_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_sub_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_sub_group_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_sub_group_list.go index 627639e4f0..2d2874bf95 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_sub_group_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_sub_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_sub_group_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_sub_group_relationship.go index 7cad2e05b5..1e65adb59a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_sub_group_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_sub_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_sub_group_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_sub_group_response.go index 8e38cf86c6..cd2dbeb32c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_sub_group_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_port_sub_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_control_state.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_control_state.go index 89cdf75e9c..e93a207bb1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_control_state.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_control_state.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_control_state_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_control_state_list.go index e76a10fbf9..a7451491e3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_control_state_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_control_state_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_control_state_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_control_state_relationship.go index 83cfb1b769..d05d59df95 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_control_state_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_control_state_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_control_state_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_control_state_response.go index 34f8a0f589..ad15f8e455 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_control_state_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_control_state_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_policy.go index 6da68e9f4e..43c1b493e3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_policy_inventory.go index 97bfc5ce8d..f55787e235 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_policy_inventory_list.go index 698670a1b8..976d78d43a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_policy_inventory_response.go index 2eb02a91c0..83f1eb6ee3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_policy_list.go index ab46afe7e6..4b7d39022f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_policy_response.go index 2a8fd271f4..6f7c958333 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_power_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_processor_unit.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_processor_unit.go index 4af1061c23..d30788203e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_processor_unit.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_processor_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_processor_unit_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_processor_unit_list.go index 0f4b0dd1b3..4663c4b94d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_processor_unit_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_processor_unit_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_processor_unit_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_processor_unit_relationship.go index 5b44b23757..97e72cf649 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_processor_unit_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_processor_unit_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_processor_unit_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_processor_unit_response.go index 6c92e455ea..d773f736d9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_processor_unit_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_processor_unit_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_rack_unit_personality.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_rack_unit_personality.go index 2d2f2cded8..a1a9b14224 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_rack_unit_personality.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_rack_unit_personality.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_rack_unit_personality_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_rack_unit_personality_list.go index c1d320ae4c..659414779d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_rack_unit_personality_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_rack_unit_personality_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_rack_unit_personality_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_rack_unit_personality_relationship.go index 00ffaac9df..aabe796bf1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_rack_unit_personality_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_rack_unit_personality_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_rack_unit_personality_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_rack_unit_personality_response.go index 335ae09161..ebbbb6b192 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_rack_unit_personality_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_rack_unit_personality_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_abstract_item.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_abstract_item.go index 868754cec4..9d821f519d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_abstract_item.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_abstract_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_base.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_base.go index 1f7f7751e7..356841372b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_base.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_capacity_runway.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_capacity_runway.go index 472d31a3fc..28b497c17c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_capacity_runway.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_capacity_runway.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_capacity_runway_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_capacity_runway_list.go index f8b4d6598b..6e83f5bf06 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_capacity_runway_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_capacity_runway_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_capacity_runway_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_capacity_runway_relationship.go index 9121e3b631..822e39ce7c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_capacity_runway_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_capacity_runway_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_capacity_runway_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_capacity_runway_response.go index d9c42169dd..b942c329ab 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_capacity_runway_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_capacity_runway_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_cluster_expansion.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_cluster_expansion.go index 98f4ddab69..c18943ad00 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_cluster_expansion.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_cluster_expansion.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_cluster_expansion_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_cluster_expansion_list.go index bbeadfd570..0f414dbffd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_cluster_expansion_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_cluster_expansion_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_cluster_expansion_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_cluster_expansion_relationship.go index 23493a7ddc..e197e02b73 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_cluster_expansion_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_cluster_expansion_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_cluster_expansion_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_cluster_expansion_response.go index 70705c9076..8b08a02734 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_cluster_expansion_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_cluster_expansion_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_expansion_request.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_expansion_request.go index 27818d4707..7c06a59b02 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_expansion_request.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_expansion_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request.go index bf00891c7e..2e3ca0e77b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_item.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_item.go index be72fb673b..dbe49453e7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_item.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_item_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_item_list.go index a70c28dbc7..0445982992 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_item_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_item_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_item_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_item_relationship.go index 89cf712157..d0ffdbe8df 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_item_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_item_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_item_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_item_response.go index 826d832adb..5efa7e99e6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_item_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_item_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_list.go index 4f94c471c1..70431aef3b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_relationship.go index 2c6a26b670..efebed0fef 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_response.go index 62b46b369a..c8ff9fcd01 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_hardware_expansion_request_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_physical_item.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_physical_item.go index 8847898f8c..0c53392b76 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_physical_item.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_physical_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_physical_item_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_physical_item_list.go index 57592d4c2f..52c09e0187 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_physical_item_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_physical_item_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_physical_item_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_physical_item_relationship.go index 15c64d02b2..79ee2b81ff 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_physical_item_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_physical_item_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_physical_item_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_physical_item_response.go index 92e44069e3..a586339ebe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_physical_item_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_physical_item_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_purchase_order_estimate.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_purchase_order_estimate.go index 31dae44971..ca7887c4fe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_purchase_order_estimate.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_purchase_order_estimate.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_purchase_order_estimate_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_purchase_order_estimate_list.go index a6e6798cde..d9a9a44572 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_purchase_order_estimate_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_purchase_order_estimate_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_purchase_order_estimate_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_purchase_order_estimate_response.go index 3034af70f1..f201beb692 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_purchase_order_estimate_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_purchase_order_estimate_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_purchase_order_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_purchase_order_list.go index c6b9345552..9c02b947e0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_purchase_order_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_purchase_order_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_purchase_order_list_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_purchase_order_list_list.go index 5c15e36cc5..13d0399dd6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_purchase_order_list_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_purchase_order_list_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_purchase_order_list_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_purchase_order_list_response.go index 366aba99d8..ddf2a53ce1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_purchase_order_list_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_purchase_order_list_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_software_item.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_software_item.go index b38792f57a..f2c88ddee7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_software_item.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_software_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_software_item_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_software_item_list.go index 516b5acef7..4fbf680584 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_software_item_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_software_item_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_software_item_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_software_item_relationship.go index ba798d4b2c..7da9750810 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_software_item_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_software_item_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_software_item_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_software_item_response.go index 2044993b4a..49dc7703b8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_software_item_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recommendation_software_item_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_abstract_backup_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_abstract_backup_config.go index e6360ea170..ce04941eff 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_abstract_backup_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_abstract_backup_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_abstract_backup_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_abstract_backup_info.go index af3e8d0fdd..be0ed4eddf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_abstract_backup_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_abstract_backup_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_abstract_backup_info_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_abstract_backup_info_relationship.go index 664ff969ae..8a010cb284 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_abstract_backup_info_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_abstract_backup_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_config_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_config_policy.go index fa5b6e4279..7e398b6755 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_config_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_config_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_config_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_config_policy_list.go index 30316939bb..49a6da9de9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_config_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_config_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_config_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_config_policy_relationship.go index 255e61937d..f8912f5ea0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_config_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_config_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_config_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_config_policy_response.go index 5af48ba42b..29ba6a9124 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_config_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_config_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_profile.go index 27432f2e84..8ca5214b42 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_profile_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_profile_list.go index f41062f353..def31144cc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_profile_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_profile_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_profile_relationship.go index 33c75ca959..e58864dcac 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_profile_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_profile_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_profile_response.go index e8937f04d6..62b4c07f0c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_profile_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_schedule.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_schedule.go index 563ee28322..bb6092c88d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_schedule.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_backup_schedule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_params.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_params.go index 34a0fb7b44..a9115f4c21 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_params.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result.go index 2036f88f35..80ff1f8a03 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_entry.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_entry.go index 0cae9fa7b5..846f8e358f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_entry.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_entry_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_entry_list.go index 5beb256ce4..b0ff5dd471 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_entry_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_entry_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_entry_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_entry_relationship.go index 51e3598a93..8ae6b398e8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_entry_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_entry_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_entry_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_entry_response.go index c63b5e4016..967033e9b2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_entry_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_entry_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_list.go index 1803f7a530..5d851fc323 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_relationship.go index c705dae879..59cb6db2f1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_response.go index cf6d45799f..321cb9a38e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_config_result_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_on_demand_backup.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_on_demand_backup.go index f8e39c3896..e60fd30780 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_on_demand_backup.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_on_demand_backup.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_on_demand_backup_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_on_demand_backup_list.go index ac2f730c38..46d11e82c7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_on_demand_backup_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_on_demand_backup_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_on_demand_backup_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_on_demand_backup_response.go index d0001d01d7..a87643b461 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_on_demand_backup_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_on_demand_backup_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_restore.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_restore.go index dc933bd270..814efc7696 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_restore.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_restore.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_restore_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_restore_list.go index 871500a693..fa08f71add 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_restore_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_restore_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_restore_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_restore_response.go index c4853a0bce..4cacae81dd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_restore_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_restore_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_schedule_config_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_schedule_config_policy.go index af9e76cbdb..aa1f82dc38 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_schedule_config_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_schedule_config_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_schedule_config_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_schedule_config_policy_list.go index 17d306c3d1..b55b2c744e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_schedule_config_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_schedule_config_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_schedule_config_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_schedule_config_policy_relationship.go index 649581b934..031068812f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_schedule_config_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_schedule_config_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_schedule_config_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_schedule_config_policy_response.go index 0e69a49634..9966ad82a7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_schedule_config_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_recovery_schedule_config_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_abstract_reservation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_abstract_reservation.go index d9bcf6ad17..5aa6c0b1a5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_abstract_reservation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_abstract_reservation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group.go index 5603165749..325d800b75 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type ResourceGroup struct { // The informative description about the usage of this Resource Group. Description *string `json:"Description,omitempty"` // The name of this resource group. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,128}$"` PerTypeCombinedSelector []ResourcePerTypeCombinedSelector `json:"PerTypeCombinedSelector,omitempty"` // Qualifier shall be used to specify if we want to organize resources using multiple resource group or single For an account, resource groups can be of only one of the above types. (Both the types are mutually exclusive for an account.). * `Allow-Selectors` - Resources will be added to resource groups based on ODATA filter. Multiple resource group can be created to organize resources. * `Allow-All` - All resources will become part of the Resource Group. Only one resource group can be created to organize resources. Qualifier *string `json:"Qualifier,omitempty"` @@ -546,7 +546,7 @@ func (o *ResourceGroup) UnmarshalJSON(data []byte) (err error) { // The informative description about the usage of this Resource Group. Description *string `json:"Description,omitempty"` // The name of this resource group. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,128}$"` PerTypeCombinedSelector []ResourcePerTypeCombinedSelector `json:"PerTypeCombinedSelector,omitempty"` // Qualifier shall be used to specify if we want to organize resources using multiple resource group or single For an account, resource groups can be of only one of the above types. (Both the types are mutually exclusive for an account.). * `Allow-Selectors` - Resources will be added to resource groups based on ODATA filter. Multiple resource group can be created to organize resources. * `Allow-All` - All resources will become part of the Resource Group. Only one resource group can be created to organize resources. Qualifier *string `json:"Qualifier,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group_list.go index a06be20a64..71b22eed1e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group_member.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group_member.go index 9b0ae77928..6d4a8c8764 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group_member.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group_member_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group_member_list.go index 1dcca9f690..0790afb5b1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group_member_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group_member_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group_member_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group_member_response.go index c6b6e8e1a0..2d73bccf90 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group_member_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group_member_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group_relationship.go index 80adbf386d..e128323f77 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group_response.go index 9e6cf8e672..f393f168a2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_license_resource_count.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_license_resource_count.go index 2e4354661f..3437a28929 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_license_resource_count.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_license_resource_count.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_license_resource_count_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_license_resource_count_list.go index 72b36b4683..85aa036986 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_license_resource_count_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_license_resource_count_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_license_resource_count_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_license_resource_count_response.go index cb7dc29e0e..856b677a9f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_license_resource_count_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_license_resource_count_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership.go index f2b64cd6a2..e8ab7704bf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership_holder.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership_holder.go index 58e8a0619f..3a94d3480d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership_holder.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership_holder.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership_holder_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership_holder_list.go index 5044f6d11c..2073ab9ce3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership_holder_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership_holder_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership_holder_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership_holder_relationship.go index b4a8c9160e..6a42122e40 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership_holder_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership_holder_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership_holder_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership_holder_response.go index 65ec9a51f9..9ea5f24838 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership_holder_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership_holder_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership_list.go index dd639bdb56..5d36c2344f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership_response.go index 5d77ed2df9..b025b56316 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_membership_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_per_type_combined_selector.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_per_type_combined_selector.go index 436cebc9cf..13b9c2fd54 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_per_type_combined_selector.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_per_type_combined_selector.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_reservation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_reservation.go index bc59543a88..02c5f37b3e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_reservation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_reservation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_reservation_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_reservation_list.go index d9e8f3614c..9e8283d277 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_reservation_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_reservation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_reservation_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_reservation_relationship.go index 58a6310a4f..65e7b1023e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_reservation_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_reservation_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_reservation_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_reservation_response.go index 964da96ad0..3702983a9c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_reservation_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_reservation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_selection_criteria.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_selection_criteria.go index c1f5428da3..7d87044194 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_selection_criteria.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_selection_criteria.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type ResourceSelectionCriteria struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The description of the Resource Selection Criteria. - Description *string `json:"Description,omitempty"` + Description *string `json:"Description,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\x00-\\\\xFF]*$"` // Name of the Resource Selection Criteria. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,128}$"` PlaceHolders []string `json:"PlaceHolders,omitempty"` Selectors []ResourceSelector `json:"Selectors,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` @@ -391,9 +391,9 @@ func (o *ResourceSelectionCriteria) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The description of the Resource Selection Criteria. - Description *string `json:"Description,omitempty"` + Description *string `json:"Description,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\x00-\\\\xFF]*$"` // Name of the Resource Selection Criteria. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,128}$"` PlaceHolders []string `json:"PlaceHolders,omitempty"` Selectors []ResourceSelector `json:"Selectors,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_selection_criteria_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_selection_criteria_list.go index 76126a40d2..8a3d8c9dce 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_selection_criteria_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_selection_criteria_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_selection_criteria_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_selection_criteria_response.go index cc21f8e4dc..e58eb192ab 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_selection_criteria_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_selection_criteria_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_selector.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_selector.go index e371b9b994..1a516999b0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_selector.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_selector.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type ResourceSelector struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // ODATA filter to select resources. The group selector may include URLs of individual resource, or OData query with filters that match multiple queries. The URLs must be relative (i.e. do not include the host). - Selector *string `json:"Selector,omitempty"` + Selector *string `json:"Selector,omitempty" validate:"regexp=^$|\\/api\\/v1\\/.*"` AdditionalProperties map[string]interface{} } @@ -233,7 +233,7 @@ func (o *ResourceSelector) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // ODATA filter to select resources. The group selector may include URLs of individual resource, or OData query with filters that match multiple queries. The URLs must be relative (i.e. do not include the host). - Selector *string `json:"Selector,omitempty"` + Selector *string `json:"Selector,omitempty" validate:"regexp=^$|\\/api\\/v1\\/.*"` } varResourceSelectorWithoutEmbeddedStruct := ResourceSelectorWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_shared_resources_info_holder.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_shared_resources_info_holder.go index 3e65180849..6eb58aac66 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_shared_resources_info_holder.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_shared_resources_info_holder.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_shared_resources_info_holder_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_shared_resources_info_holder_list.go index 991002855c..391baf173f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_shared_resources_info_holder_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_shared_resources_info_holder_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_shared_resources_info_holder_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_shared_resources_info_holder_response.go index b61240db93..373ef283ef 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_shared_resources_info_holder_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_shared_resources_info_holder_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_source_to_permission_resources.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_source_to_permission_resources.go index 4fab5e1faa..e465e93c96 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_source_to_permission_resources.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_source_to_permission_resources.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_source_to_permission_resources_holder.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_source_to_permission_resources_holder.go index 4a73186069..5dba8fcac4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_source_to_permission_resources_holder.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resource_source_to_permission_resources_holder.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease.go index ee97b15afb..0b7cbab345 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_list.go index da60f2aef9..eea445dc0b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_parameters.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_parameters.go index 02a7c4a87f..02af3a8417 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_parameters.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_parameters.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_relationship.go index d9a0e604f7..4398745617 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_resource.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_resource.go index 2c52ce1346..ca2e4adae6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_resource.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_resource.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_resource_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_resource_list.go index 392a973020..bf5f4ab38a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_resource_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_resource_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_resource_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_resource_relationship.go index d7a3c68f08..d4b53aece2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_resource_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_resource_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_resource_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_resource_response.go index 53c29644a1..64bcb91b9b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_resource_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_resource_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_response.go index f9fff7a71d..c68ca0599b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_lease_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_membership_reservation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_membership_reservation.go index f04b7ffd5e..1795a5ffd4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_membership_reservation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_membership_reservation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_membership_reservation_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_membership_reservation_list.go index 0ae9d26be6..4e479cce11 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_membership_reservation_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_membership_reservation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_membership_reservation_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_membership_reservation_response.go index 97d285de85..fa8bfecb85 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_membership_reservation_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_membership_reservation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool.go index 8f662920f6..20cd579fba 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_list.go index 2139121d22..a9debb2f26 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_member.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_member.go index fb0dccbfe1..e8abbe99c5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_member.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_member_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_member_list.go index a9d40be430..9a7cd4032a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_member_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_member_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_member_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_member_relationship.go index 17f2018bdf..069044f186 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_member_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_member_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_member_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_member_response.go index 8c0e12b54e..aa468e0e8c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_member_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_member_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_relationship.go index 3d4d41e663..865e32017f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_response.go index afe55df031..6677e73994 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_pool_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_resource_pool_parameters.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_resource_pool_parameters.go index 450c69eba5..457f6f51bb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_resource_pool_parameters.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_resource_pool_parameters.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_server_lease_parameters.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_server_lease_parameters.go index 4181823d9e..94ff09afa9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_server_lease_parameters.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_server_lease_parameters.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_server_pool_parameters.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_server_pool_parameters.go index a21a5abe4b..89a9ffb1ae 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_server_pool_parameters.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_server_pool_parameters.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_universe.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_universe.go index ed1cfd7d47..80a6405382 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_universe.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_universe.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_universe_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_universe_list.go index 3d7e816a84..a1321c7776 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_universe_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_universe_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_universe_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_universe_relationship.go index 36fe793a67..359390db87 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_universe_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_universe_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_universe_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_universe_response.go index 5c70911108..cc8e60ec41 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_universe_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_resourcepool_universe_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_rproxy_reverse_proxy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_rproxy_reverse_proxy.go index a3b4b5e0ff..4944210a89 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_rproxy_reverse_proxy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_rproxy_reverse_proxy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_abstract_scheduling_params.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_abstract_scheduling_params.go index 82405857d2..8b42984e94 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_abstract_scheduling_params.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_abstract_scheduling_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_abstract_task_request.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_abstract_task_request.go index b2c0481a92..bf8557b619 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_abstract_task_request.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_abstract_task_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_base_cadence_params.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_base_cadence_params.go index cab911c755..ec6f3733e9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_base_cadence_params.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_base_cadence_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_base_monthly_cadence_params.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_base_monthly_cadence_params.go index c77c437fd5..26ef905188 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_base_monthly_cadence_params.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_base_monthly_cadence_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_base_schedule_params.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_base_schedule_params.go index 994840a838..fb96e24db1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_base_schedule_params.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_base_schedule_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_daily_cadence_params.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_daily_cadence_params.go index 417efb559e..ef8d1a2abe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_daily_cadence_params.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_daily_cadence_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_every_cadence_params.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_every_cadence_params.go index 21fff905d4..7802f9624f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_every_cadence_params.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_every_cadence_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_monthly_cadence_params.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_monthly_cadence_params.go index 46af307c57..8c36ae9cfd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_monthly_cadence_params.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_monthly_cadence_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_monthly_week_day_format.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_monthly_week_day_format.go index a74b4df626..dc8c1eacb1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_monthly_week_day_format.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_monthly_week_day_format.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_one_time_schedule_params.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_one_time_schedule_params.go index 5c7bc00f29..0134864801 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_one_time_schedule_params.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_one_time_schedule_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_recurring_schedule_params.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_recurring_schedule_params.go index 5a2bf986f3..bc66ec9a8e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_recurring_schedule_params.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_recurring_schedule_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_rest_stim_task_request.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_rest_stim_task_request.go index 139c5a41b7..4a2562f45f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_rest_stim_task_request.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_rest_stim_task_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_result.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_result.go index 4a272115a5..aad025f436 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_result.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_result_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_result_list.go index 05701aa291..b3ac414c2f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_result_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_result_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_result_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_result_response.go index e09d9d6da6..fd26738efd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_result_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_result_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_result_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_result_status.go index 77f03727d2..26386d67c1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_result_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_result_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_schedule.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_schedule.go index c681a2774a..0776d65b23 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_schedule.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_schedule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_schedule_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_schedule_list.go index c0bc9c22db..9f95e28b9a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_schedule_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_schedule_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_schedule_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_schedule_relationship.go index 51f12293d0..088a36fd25 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_schedule_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_schedule_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_schedule_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_schedule_response.go index 97779d5944..2806e1bb32 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_schedule_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_schedule_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_schedule_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_schedule_status.go index d7835f7b2b..4a18b37441 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_schedule_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_task_schedule_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_weekly_cadence_params.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_weekly_cadence_params.go index 1b42cf7ce0..e90304125c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_weekly_cadence_params.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_weekly_cadence_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_yearly_cadence_params.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_yearly_cadence_params.go index 36c107aeae..81c08f608b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_yearly_cadence_params.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_yearly_cadence_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection.go index e8f51eb974..7b0ce3fc97 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -39,7 +39,7 @@ type SdaaciConnection struct { // Application EPG Name of this connection. Epg *string `json:"Epg,omitempty"` // EPG Subnet Ipv4Cidr which is configured on APIC. - EpgSubnet *string `json:"EpgSubnet,omitempty"` + EpgSubnet *string `json:"EpgSubnet,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Device within the selected domain used to configure Firewall. FirewallDevice *string `json:"FirewallDevice,omitempty"` // Domain used to configure Firewall. @@ -916,7 +916,7 @@ func (o *SdaaciConnection) UnmarshalJSON(data []byte) (err error) { // Application EPG Name of this connection. Epg *string `json:"Epg,omitempty"` // EPG Subnet Ipv4Cidr which is configured on APIC. - EpgSubnet *string `json:"EpgSubnet,omitempty"` + EpgSubnet *string `json:"EpgSubnet,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Device within the selected domain used to configure Firewall. FirewallDevice *string `json:"FirewallDevice,omitempty"` // Domain used to configure Firewall. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection_detail.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection_detail.go index fc54f61e90..a35a4dcf11 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection_detail.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection_detail.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -37,7 +37,7 @@ type SdaaciConnectionDetail struct { // Interface id configured on Peer A. PeerAinterface *string `json:"PeerAinterface,omitempty"` // The IP Address of the device used as the local peer. - PeerAipAddress *string `json:"PeerAipAddress,omitempty"` + PeerAipAddress *string `json:"PeerAipAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Type of device used as Peer A for this peer connection. PeerAtype *string `json:"PeerAtype,omitempty"` // Interface id configured on Peer B. @@ -736,7 +736,7 @@ func (o *SdaaciConnectionDetail) UnmarshalJSON(data []byte) (err error) { // Interface id configured on Peer A. PeerAinterface *string `json:"PeerAinterface,omitempty"` // The IP Address of the device used as the local peer. - PeerAipAddress *string `json:"PeerAipAddress,omitempty"` + PeerAipAddress *string `json:"PeerAipAddress,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\/([0-9]|[1-2][0-9]|3[0-2])$"` // Type of device used as Peer A for this peer connection. PeerAtype *string `json:"PeerAtype,omitempty"` // Interface id configured on Peer B. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection_detail_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection_detail_list.go index f0afb0de2b..c285f08fb3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection_detail_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection_detail_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection_detail_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection_detail_response.go index d48996eb27..bda99fcedc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection_detail_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection_detail_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection_list.go index 67926478ad..910c0be91c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection_relationship.go index 7efa40dd02..787d8c3b50 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection_response.go index 4607e3f22f..bbea4c99a2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdaaci_connection_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_diagnostics.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_diagnostics.go index 5ef837eacc..99d66f96c0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_diagnostics.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_diagnostics.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_drivers.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_drivers.go index 48ffac058f..341a36042c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_drivers.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_drivers.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_host_upgrade_utility.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_host_upgrade_utility.go index 3f2b112250..48aed978da 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_host_upgrade_utility.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_host_upgrade_utility.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_operating_system.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_operating_system.go index 7d0b015294..88082541aa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_operating_system.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_operating_system.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_partition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_partition.go index 3e0f98923c..2ab5b1aed2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_partition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_partition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_policy.go index 548e0454b7..4cd076146d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_policy_inventory.go index 773c27f8ed..2039502cc9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_policy_inventory_list.go index 8db8b96005..3ef0e449d4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_policy_inventory_response.go index 4ec89e7fed..7c7efa1346 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_policy_list.go index b0abec83b8..f2243a79b5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_policy_response.go index bd58341783..294466ca3e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_server_configuration_utility.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_server_configuration_utility.go index 8fdf708301..0e1f2da1b3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_server_configuration_utility.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_server_configuration_utility.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_user_partition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_user_partition.go index 812283d0a8..6063800b51 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_user_partition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_user_partition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_virtual_drive.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_virtual_drive.go index bc01c8d693..b24d11647c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_virtual_drive.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sdcard_virtual_drive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_search_item.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_search_item.go index d6f4e30ed5..32f52f94c8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_search_item.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_search_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_search_item_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_search_item_list.go index 04de7259f0..80d9e2d3d9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_search_item_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_search_item_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_search_item_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_search_item_response.go index 3839d44b28..70aa8c16ac 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_search_item_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_search_item_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_suggest_item.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_suggest_item.go index 7727179966..2482998a7c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_suggest_item.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_suggest_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_suggest_item_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_suggest_item_list.go index 83852c4e30..d91929c7bd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_suggest_item_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_suggest_item_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_suggest_item_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_suggest_item_response.go index d83acdfbe8..af8f5e322e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_suggest_item_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_suggest_item_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_tag_item.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_tag_item.go index 8583861523..8d977c6920 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_tag_item.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_tag_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_tag_item_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_tag_item_list.go index 54a76a930d..a87c1cf8a3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_tag_item_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_tag_item_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_tag_item_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_tag_item_response.go index 027a9ea825..d296785b97 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_tag_item_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_search_tag_item_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_security_unit.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_security_unit.go index 69b7340db1..2129beac3f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_security_unit.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_security_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_security_unit_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_security_unit_list.go index ea9e37b815..454edadabc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_security_unit_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_security_unit_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_security_unit_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_security_unit_relationship.go index 79abe4aa16..3bbf38942a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_security_unit_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_security_unit_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_security_unit_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_security_unit_response.go index ddd59437df..d6a7b3e319 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_security_unit_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_security_unit_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_base_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_base_profile.go index 72ad26c81e..cf4641ecdb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_base_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_base_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_base_profile_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_base_profile_relationship.go index bee0b95634..cef75e8121 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_base_profile_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_base_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_change_detail.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_change_detail.go index 2fdbf76c5a..fcd5e3e86a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_change_detail.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_change_detail.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_change_detail_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_change_detail_list.go index b55a4f498b..52c5e07e1a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_change_detail_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_change_detail_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_change_detail_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_change_detail_relationship.go index 8f07b2de70..7db9a4ea51 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_change_detail_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_change_detail_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_change_detail_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_change_detail_response.go index 4a6494905f..6c41c30c7b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_change_detail_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_change_detail_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_import.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_import.go index 31ac8cdc70..35b17920e6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_import.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_import.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,10 +31,10 @@ type ServerConfigImport struct { // Description of the imported profile. Description *string `json:"Description,omitempty"` // Policy prefix for the policies of the imported server profile. - PolicyPrefix *string `json:"PolicyPrefix,omitempty"` + PolicyPrefix *string `json:"PolicyPrefix,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,32}$"` PolicyTypes []string `json:"PolicyTypes,omitempty"` // Profile name for the imported server profile. - ProfileName *string `json:"ProfileName,omitempty"` + ProfileName *string `json:"ProfileName,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` Server NullableComputeRackUnitRelationship `json:"Server,omitempty"` ServerProfile NullableServerProfileRelationship `json:"ServerProfile,omitempty"` @@ -487,10 +487,10 @@ func (o *ServerConfigImport) UnmarshalJSON(data []byte) (err error) { // Description of the imported profile. Description *string `json:"Description,omitempty"` // Policy prefix for the policies of the imported server profile. - PolicyPrefix *string `json:"PolicyPrefix,omitempty"` + PolicyPrefix *string `json:"PolicyPrefix,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,32}$"` PolicyTypes []string `json:"PolicyTypes,omitempty"` // Profile name for the imported server profile. - ProfileName *string `json:"ProfileName,omitempty"` + ProfileName *string `json:"ProfileName,omitempty" validate:"regexp=^[a-zA-Z0-9_.-]{1,64}$"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` Server NullableComputeRackUnitRelationship `json:"Server,omitempty"` ServerProfile NullableServerProfileRelationship `json:"ServerProfile,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_import_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_import_list.go index 9175b571ed..70ce768a09 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_import_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_import_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_import_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_import_response.go index d9b93d096d..4d9b1ab036 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_import_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_import_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result.go index 37e78558e3..eec66e8455 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_entry.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_entry.go index 1928fbacb8..3794f84f00 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_entry.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_entry_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_entry_list.go index feb6274627..6bed895291 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_entry_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_entry_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_entry_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_entry_relationship.go index f06c3915a4..f303954e3a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_entry_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_entry_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_entry_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_entry_response.go index cc0a648808..c56bddd577 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_entry_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_entry_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_list.go index 1232affad0..f40ed223bc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_relationship.go index de39122153..2ea229df70 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_response.go index 9d85ca7be9..029ce2415c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_config_result_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_disruption.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_disruption.go index 4b12094843..cecc75048d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_disruption.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_disruption.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_disruption_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_disruption_list.go index 47bd609fda..673fc4f92e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_disruption_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_disruption_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_disruption_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_disruption_response.go index a81c79c1bb..657ab69e0f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_disruption_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_disruption_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_pending_workflow_trigger.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_pending_workflow_trigger.go index d8cd8a19ba..69c9e3c39f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_pending_workflow_trigger.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_pending_workflow_trigger.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile.go index dea307a0ab..483375e3ac 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -43,12 +43,12 @@ type ServerProfile struct { // 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 a Server Profile. Pool is used if a resource pool is attached to a Server Profile. None is used if no server or resource pool is attached to a Server Profile. Slot or Serial pre-assignment is also considered to be None as it is different form of Assign Later. * `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. ServerAssignmentMode *string `json:"ServerAssignmentMode,omitempty"` // Serial number of the server that would be assigned to this pre-assigned Server Profile. It can be any string that adheres to the following constraints: It should start and end with an alphanumeric character. It cannot be more than 20 characters. - ServerPreAssignBySerial *string `json:"ServerPreAssignBySerial,omitempty"` + ServerPreAssignBySerial *string `json:"ServerPreAssignBySerial,omitempty" validate:"regexp=^[a-zA-Z0-9]{0,20}$"` ServerPreAssignBySlot NullableServerServerAssignTypeSlot `json:"ServerPreAssignBySlot,omitempty"` // The UUID address for the server must include UUID prefix xxxxxxxx-xxxx-xxxx along with the UUID suffix of format xxxx-xxxxxxxxxxxx. - StaticUuidAddress *string `json:"StaticUuidAddress,omitempty"` + StaticUuidAddress *string `json:"StaticUuidAddress,omitempty" validate:"regexp=^$|^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"` // User label assigned to the server profile. - UserLabel *string `json:"UserLabel,omitempty"` + UserLabel *string `json:"UserLabel,omitempty" validate:"regexp=^[ !#$%&\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}~a-zA-Z0-9]*$"` // The UUID address that is assigned to the server based on the UUID pool. Uuid *string `json:"Uuid,omitempty"` AssignedServer NullableComputePhysicalRelationship `json:"AssignedServer,omitempty"` @@ -1222,12 +1222,12 @@ func (o *ServerProfile) UnmarshalJSON(data []byte) (err error) { // 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 a Server Profile. Pool is used if a resource pool is attached to a Server Profile. None is used if no server or resource pool is attached to a Server Profile. Slot or Serial pre-assignment is also considered to be None as it is different form of Assign Later. * `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. ServerAssignmentMode *string `json:"ServerAssignmentMode,omitempty"` // Serial number of the server that would be assigned to this pre-assigned Server Profile. It can be any string that adheres to the following constraints: It should start and end with an alphanumeric character. It cannot be more than 20 characters. - ServerPreAssignBySerial *string `json:"ServerPreAssignBySerial,omitempty"` + ServerPreAssignBySerial *string `json:"ServerPreAssignBySerial,omitempty" validate:"regexp=^[a-zA-Z0-9]{0,20}$"` ServerPreAssignBySlot NullableServerServerAssignTypeSlot `json:"ServerPreAssignBySlot,omitempty"` // The UUID address for the server must include UUID prefix xxxxxxxx-xxxx-xxxx along with the UUID suffix of format xxxx-xxxxxxxxxxxx. - StaticUuidAddress *string `json:"StaticUuidAddress,omitempty"` + StaticUuidAddress *string `json:"StaticUuidAddress,omitempty" validate:"regexp=^$|^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"` // User label assigned to the server profile. - UserLabel *string `json:"UserLabel,omitempty"` + UserLabel *string `json:"UserLabel,omitempty" validate:"regexp=^[ !#$%&\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;\\\\?@\\\\[\\\\]_\\\\{\\\\|\\\\}~a-zA-Z0-9]*$"` // The UUID address that is assigned to the server based on the UUID pool. Uuid *string `json:"Uuid,omitempty"` AssignedServer NullableComputePhysicalRelationship `json:"AssignedServer,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile_list.go index 9be8ef1fb9..02fc751ba3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile_relationship.go index bfe3d06ac2..d19e5df4c1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile_response.go index 9329ab248c..43222ec843 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile_template.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile_template.go index 8d02e09d3f..753bd15c67 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile_template.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile_template.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile_template_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile_template_list.go index d3bfe825ff..7ff168ac96 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile_template_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile_template_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile_template_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile_template_response.go index 1efb35044c..eaebf8a86b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile_template_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_profile_template_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_server_assign_type_slot.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_server_assign_type_slot.go index 8c8759eae4..5d6fac6ce1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_server_assign_type_slot.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_server_server_assign_type_slot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type ServerServerAssignTypeSlot struct { // Chassis-id of the slot that would be assigned to this pre-assigned server profile. ChassisId *int64 `json:"ChassisId,omitempty"` // Domain name of the Fabric Interconnect to which the chassis is or to be connected. It can be any string that adheres to the following constraints: It should start and end with an alphanumeric character. It can have underscores and hyphens. It cannot be more than 30 characters. - DomainName *string `json:"DomainName,omitempty"` + DomainName *string `json:"DomainName,omitempty" validate:"regexp=^[a-zA-Z0-9_\\\\-]{0,30}$"` // Slot-id of the server that would be assigned to this pre-assigned server profile. SlotId *int64 `json:"SlotId,omitempty"` AdditionalProperties map[string]interface{} @@ -317,7 +317,7 @@ func (o *ServerServerAssignTypeSlot) UnmarshalJSON(data []byte) (err error) { // Chassis-id of the slot that would be assigned to this pre-assigned server profile. ChassisId *int64 `json:"ChassisId,omitempty"` // Domain name of the Fabric Interconnect to which the chassis is or to be connected. It can be any string that adheres to the following constraints: It should start and end with an alphanumeric character. It can have underscores and hyphens. It cannot be more than 30 characters. - DomainName *string `json:"DomainName,omitempty"` + DomainName *string `json:"DomainName,omitempty" validate:"regexp=^[a-zA-Z0-9_\\\\-]{0,30}$"` // Slot-id of the server that would be assigned to this pre-assigned server profile. SlotId *int64 `json:"SlotId,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_serviceitem_base_message.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_serviceitem_base_message.go index 363161d280..f68e1daf64 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_serviceitem_base_message.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_serviceitem_base_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_serviceitem_health_check_error_element.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_serviceitem_health_check_error_element.go index 882e1fd1ce..5640e02ce4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_serviceitem_health_check_error_element.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_serviceitem_health_check_error_element.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_serviceitem_message.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_serviceitem_message.go index c6480b38ac..f3fec8dbe3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_serviceitem_message.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_serviceitem_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_serviceitem_selection_criteria_input.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_serviceitem_selection_criteria_input.go index 27381d2f9a..4066fd68d3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_serviceitem_selection_criteria_input.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_serviceitem_selection_criteria_input.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_change_request.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_change_request.go index 80a5faadea..57872ced7c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_change_request.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_change_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_change_request_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_change_request_list.go index e78e663573..3e2ac41400 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_change_request_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_change_request_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_change_request_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_change_request_response.go index 7e8dacb580..726b95fdc3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_change_request_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_change_request_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_incident.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_incident.go index e0f316fbdd..58e74a0c0f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_incident.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_incident.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_incident_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_incident_list.go index 8487458623..9119a6cf1f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_incident_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_incident_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_incident_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_incident_response.go index 0a8cbf22ed..77accbbea0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_incident_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_incident_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_inventory_entity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_inventory_entity.go index 5c0d2ebc1d..954cb02e0b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_inventory_entity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicenow_inventory_entity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicerequest_message.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicerequest_message.go index 9031b71d39..30622c1f45 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicerequest_message.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_servicerequest_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_session_abstract_session.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_session_abstract_session.go index 6a022787a2..df2070aca7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_session_abstract_session.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_session_abstract_session.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_session_abstract_session_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_session_abstract_session_relationship.go index 96eb61a8d8..8f412e22af 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_session_abstract_session_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_session_abstract_session_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_session_abstract_sub_session.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_session_abstract_sub_session.go index 7a382de71d..f8c9454a55 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_session_abstract_sub_session.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_session_abstract_sub_session.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_smtp_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_smtp_policy.go index 194cc263f9..364f886aa9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_smtp_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_smtp_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type SmtpPolicy struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Authorization password for the process. - AuthPassword *string `json:"AuthPassword,omitempty"` + AuthPassword *string `json:"AuthPassword,omitempty" validate:"regexp=^[\\\\S+]{0,254}$"` // If enabled, lets user input username and password. EnableAuth *bool `json:"EnableAuth,omitempty"` // If enabled, lets user input valid CA certificates for authorization. @@ -41,7 +41,7 @@ type SmtpPolicy struct { // Minimum fault severity level to receive email notifications. Email notifications are sent for all faults whose severity is equal to or greater than the chosen level. * `critical` - Minimum severity to report is critical. * `condition` - Minimum severity to report is informational. * `warning` - Minimum severity to report is warning. * `minor` - Minimum severity to report is minor. * `major` - Minimum severity to report is major. MinSeverity *string `json:"MinSeverity,omitempty"` // The email address entered here will be displayed as the from address (mail received from address) of all the SMTP mail alerts that are received. If not configured, the hostname of the server is used in the from address field. - SenderEmail *string `json:"SenderEmail,omitempty"` + SenderEmail *string "json:\"SenderEmail,omitempty\" validate:\"regexp=^$|^[a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$\"" // Port number used by the SMTP server for outgoing SMTP communication. SmtpPort *int64 `json:"SmtpPort,omitempty"` SmtpRecipients []string `json:"SmtpRecipients,omitempty"` @@ -802,7 +802,7 @@ func (o *SmtpPolicy) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Authorization password for the process. - AuthPassword *string `json:"AuthPassword,omitempty"` + AuthPassword *string `json:"AuthPassword,omitempty" validate:"regexp=^[\\\\S+]{0,254}$"` // If enabled, lets user input username and password. EnableAuth *bool `json:"EnableAuth,omitempty"` // If enabled, lets user input valid CA certificates for authorization. @@ -814,7 +814,7 @@ func (o *SmtpPolicy) UnmarshalJSON(data []byte) (err error) { // Minimum fault severity level to receive email notifications. Email notifications are sent for all faults whose severity is equal to or greater than the chosen level. * `critical` - Minimum severity to report is critical. * `condition` - Minimum severity to report is informational. * `warning` - Minimum severity to report is warning. * `minor` - Minimum severity to report is minor. * `major` - Minimum severity to report is major. MinSeverity *string `json:"MinSeverity,omitempty"` // The email address entered here will be displayed as the from address (mail received from address) of all the SMTP mail alerts that are received. If not configured, the hostname of the server is used in the from address field. - SenderEmail *string `json:"SenderEmail,omitempty"` + SenderEmail *string "json:\"SenderEmail,omitempty\" validate:\"regexp=^$|^[a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$\"" // Port number used by the SMTP server for outgoing SMTP communication. SmtpPort *int64 `json:"SmtpPort,omitempty"` SmtpRecipients []string `json:"SmtpRecipients,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_smtp_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_smtp_policy_list.go index 41d19d6522..c885aadecd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_smtp_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_smtp_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_smtp_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_smtp_policy_response.go index 7c0a2b40c5..bb8b822b24 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_smtp_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_smtp_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_policy.go index 542c535099..e61dca6cb9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type SnmpPolicy struct { // State of the SNMP Policy on the endpoint. If enabled, the endpoint sends SNMP traps to the designated host. Enabled *bool `json:"Enabled,omitempty"` // User-defined unique identification of the static engine. - EngineId *string `json:"EngineId,omitempty"` + EngineId *string `json:"EngineId,omitempty" validate:"regexp=^[^#!&]*$"` // Port on which Cisco IMC SNMP agent runs. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269). SnmpPort *int64 `json:"SnmpPort,omitempty"` SnmpTraps []SnmpTrap `json:"SnmpTraps,omitempty"` @@ -751,7 +751,7 @@ func (o *SnmpPolicy) UnmarshalJSON(data []byte) (err error) { // State of the SNMP Policy on the endpoint. If enabled, the endpoint sends SNMP traps to the designated host. Enabled *bool `json:"Enabled,omitempty"` // User-defined unique identification of the static engine. - EngineId *string `json:"EngineId,omitempty"` + EngineId *string `json:"EngineId,omitempty" validate:"regexp=^[^#!&]*$"` // Port on which Cisco IMC SNMP agent runs. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269). SnmpPort *int64 `json:"SnmpPort,omitempty"` SnmpTraps []SnmpTrap `json:"SnmpTraps,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_policy_inventory.go index ed1db55b39..f6c76f9658 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type SnmpPolicyInventory struct { // State of the SNMP Policy on the endpoint. If enabled, the endpoint sends SNMP traps to the designated host. Enabled *bool `json:"Enabled,omitempty"` // User-defined unique identification of the static engine. - EngineId *string `json:"EngineId,omitempty"` + EngineId *string `json:"EngineId,omitempty" validate:"regexp=^[^#!&]*$"` // Port on which Cisco IMC SNMP agent runs. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269). SnmpPort *int64 `json:"SnmpPort,omitempty"` SnmpTraps []SnmpTrap `json:"SnmpTraps,omitempty"` @@ -693,7 +693,7 @@ func (o *SnmpPolicyInventory) UnmarshalJSON(data []byte) (err error) { // State of the SNMP Policy on the endpoint. If enabled, the endpoint sends SNMP traps to the designated host. Enabled *bool `json:"Enabled,omitempty"` // User-defined unique identification of the static engine. - EngineId *string `json:"EngineId,omitempty"` + EngineId *string `json:"EngineId,omitempty" validate:"regexp=^[^#!&]*$"` // Port on which Cisco IMC SNMP agent runs. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269). SnmpPort *int64 `json:"SnmpPort,omitempty"` SnmpTraps []SnmpTrap `json:"SnmpTraps,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_policy_inventory_list.go index c4960c63e6..7b66bfacad 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_policy_inventory_response.go index c75c8066a0..f298bc6e0f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_policy_list.go index 50245406a6..b98933ef3d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_policy_response.go index eaa91fe2b2..ffa637eae6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_trap.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_trap.go index 9a77eb7e08..e7e135af20 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_trap.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_trap.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_user.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_user.go index 6ccec1074d..266e37d5be 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_user.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_snmp_user.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_appliance_distributable.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_appliance_distributable.go index 4d7d4440f0..767bcda7c5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_appliance_distributable.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_appliance_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_appliance_distributable_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_appliance_distributable_list.go index afadc0d768..f26d8ab35c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_appliance_distributable_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_appliance_distributable_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_appliance_distributable_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_appliance_distributable_response.go index 237d4c6173..ee43eb0d7f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_appliance_distributable_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_appliance_distributable_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_download_history.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_download_history.go index 80cd9521fc..c58d90cf0c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_download_history.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_download_history.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_download_history_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_download_history_list.go index f7800f78be..ce9adabe01 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_download_history_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_download_history_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_download_history_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_download_history_response.go index 12725818e0..6043755f9d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_download_history_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_download_history_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_bundle_distributable.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_bundle_distributable.go index ec1763d1f1..12af7097d6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_bundle_distributable.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_bundle_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_bundle_distributable_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_bundle_distributable_list.go index 1c7755cdaf..d1ad2ef227 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_bundle_distributable_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_bundle_distributable_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_bundle_distributable_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_bundle_distributable_response.go index 6de6e7b0f6..f7a79fe5e9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_bundle_distributable_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_bundle_distributable_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_distributable.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_distributable.go index 2a3ec28210..588a8da118 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_distributable.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_distributable_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_distributable_list.go index 9baec29604..19da8d680d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_distributable_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_distributable_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_distributable_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_distributable_relationship.go index 01a481ab4c..e83077563f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_distributable_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_distributable_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_distributable_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_distributable_response.go index ff88ebd773..caa8501e78 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_distributable_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hci_distributable_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hcl_meta.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hcl_meta.go index 7704574e17..aa14f1be48 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hcl_meta.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hcl_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hcl_meta_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hcl_meta_list.go index 95d013023e..28bbe12e24 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hcl_meta_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hcl_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hcl_meta_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hcl_meta_response.go index 92590d4c3e..d6a75c6eda 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hcl_meta_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hcl_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_bundle_distributable.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_bundle_distributable.go index 6558ac4fc0..0f2443b54b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_bundle_distributable.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_bundle_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_bundle_distributable_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_bundle_distributable_list.go index 5ffaa35ddd..dcc8f583d2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_bundle_distributable_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_bundle_distributable_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_bundle_distributable_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_bundle_distributable_response.go index 4510e351b3..8d968dc7f2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_bundle_distributable_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_bundle_distributable_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_distributable.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_distributable.go index 41bbbbcdc7..6bd5a09093 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_distributable.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_distributable_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_distributable_list.go index 8dc345d6dd..084243aec3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_distributable_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_distributable_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_distributable_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_distributable_relationship.go index 1c0fa1aa24..736e90dd66 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_distributable_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_distributable_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_distributable_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_distributable_response.go index 7d551cf79f..a909584bef 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_distributable_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_hyperflex_distributable_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_iks_bundle_distributable.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_iks_bundle_distributable.go index 50c1f390e4..9e46007b1e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_iks_bundle_distributable.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_iks_bundle_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_iks_bundle_distributable_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_iks_bundle_distributable_list.go index ebc401715e..73cd7968b1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_iks_bundle_distributable_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_iks_bundle_distributable_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_iks_bundle_distributable_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_iks_bundle_distributable_response.go index cdbc161b0b..9f6b44d5f5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_iks_bundle_distributable_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_iks_bundle_distributable_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_release_meta.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_release_meta.go index 33ee44c616..58ba6e3b6e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_release_meta.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_release_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_release_meta_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_release_meta_list.go index d46dcf18e8..ff181e530b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_release_meta_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_release_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_release_meta_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_release_meta_response.go index ddce5282ed..1570180320 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_release_meta_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_release_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_solution_distributable.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_solution_distributable.go index b65ea766fc..aa95de0032 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_solution_distributable.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_solution_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_solution_distributable_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_solution_distributable_list.go index 3e66f1a5bc..10be281666 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_solution_distributable_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_solution_distributable_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_solution_distributable_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_solution_distributable_relationship.go index f016bea014..ed46a70f0a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_solution_distributable_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_solution_distributable_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_solution_distributable_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_solution_distributable_response.go index fd06c9d4c8..9afc1dab45 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_solution_distributable_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_solution_distributable_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_bundle_distributable.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_bundle_distributable.go index fe5cc076cf..15ff52fccf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_bundle_distributable.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_bundle_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_bundle_distributable_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_bundle_distributable_list.go index 5f7e3cbcb6..b73bfc3c58 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_bundle_distributable_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_bundle_distributable_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_bundle_distributable_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_bundle_distributable_response.go index b82e3324cd..46fe5ea4a7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_bundle_distributable_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_bundle_distributable_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_distributable.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_distributable.go index 29a8bd8492..9a6e0ee1a2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_distributable.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_distributable.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_distributable_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_distributable_list.go index ad64a7a1ca..52493985ad 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_distributable_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_distributable_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_distributable_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_distributable_relationship.go index a6b1279133..a226a66e89 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_distributable_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_distributable_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_distributable_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_distributable_response.go index 3954f84c14..c4e02ac2ff 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_distributable_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_software_ucsd_distributable_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_appliance_upload.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_appliance_upload.go index 92761e20f7..4cf06c5c03 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_appliance_upload.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_appliance_upload.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_authorization.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_authorization.go index 3344ac6e99..df5153afb6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_authorization.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_authorization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_authorization_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_authorization_list.go index b2efcb81cc..c9f4b71682 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_authorization_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_authorization_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_authorization_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_authorization_response.go index 23073a4225..5aa7c95300 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_authorization_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_authorization_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_cached_image.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_cached_image.go index 039aa891d2..0dfc352d46 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_cached_image.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_cached_image.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_cached_image_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_cached_image_list.go index 2ab4463c69..9ab69fce64 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_cached_image_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_cached_image_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_cached_image_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_cached_image_response.go index 385e2b2140..d04c43bfe3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_cached_image_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_cached_image_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_catalog.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_catalog.go index 6bb24904e1..7ecf985b42 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_catalog.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_catalog.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_catalog_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_catalog_list.go index c68a4b23b8..8ab65415bd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_catalog_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_catalog_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_catalog_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_catalog_relationship.go index 34a9377a9f..89fb212ff3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_catalog_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_catalog_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_catalog_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_catalog_response.go index 09f96c4cc2..e911d1a995 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_catalog_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_catalog_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_mapper.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_mapper.go index fc720920ab..4af5435683 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_mapper.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_mapper.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_mapper_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_mapper_list.go index fa96665ef2..c7e1157a10 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_mapper_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_mapper_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_mapper_model.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_mapper_model.go index c67d5c259a..22281cc7b3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_mapper_model.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_mapper_model.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_mapper_model_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_mapper_model_list.go index ad4c93e58a..029e947d99 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_mapper_model_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_mapper_model_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_mapper_model_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_mapper_model_response.go index 5b59e6124e..64473670e4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_mapper_model_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_mapper_model_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_mapper_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_mapper_response.go index 939f58b040..881443b5b1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_mapper_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_mapper_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_support_constraint.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_support_constraint.go index 7ed1b42a55..57b2506799 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_support_constraint.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_support_constraint.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_support_constraint_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_support_constraint_list.go index bbd0b2a416..37a4b23614 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_support_constraint_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_support_constraint_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_support_constraint_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_support_constraint_response.go index ccd61624d1..6c80962a23 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_support_constraint_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_support_constraint_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_unsupported_models.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_unsupported_models.go index 4cc1909fa0..925d634be7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_unsupported_models.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_unsupported_models.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_unsupported_models_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_unsupported_models_list.go index fbc805c324..eadd04dada 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_unsupported_models_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_unsupported_models_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_unsupported_models_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_unsupported_models_response.go index 86d9a38ad8..3665c68b99 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_unsupported_models_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_category_unsupported_models_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_cifs_server.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_cifs_server.go index 408920f8d8..c1be8777a6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_cifs_server.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_cifs_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_constraint_models.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_constraint_models.go index 5a23a84544..bbb3e512b3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_constraint_models.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_constraint_models.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_download_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_download_spec.go index e3c7ec701d..a1d3caeb4e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_download_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_download_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_download_spec_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_download_spec_list.go index c5658bc3e9..55ea6de399 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_download_spec_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_download_spec_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_download_spec_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_download_spec_response.go index 239c409892..c2f5be82c2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_download_spec_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_download_spec_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_file.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_file.go index e5fb71c3b4..c160e0fedc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_file.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_file.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_file_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_file_relationship.go index 9111d678e7..7581bd46c4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_file_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_file_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_file_server.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_file_server.go index 4406890a32..137385a060 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_file_server.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_file_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_http_server.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_http_server.go index 82c9ff4d44..28b8b5dce5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_http_server.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_http_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_import_result.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_import_result.go index afe95c14dc..950e53ee27 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_import_result.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_import_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_local_machine.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_local_machine.go index c87f66477b..fb61fbc6fd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_local_machine.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_local_machine.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_nfs_server.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_nfs_server.go index 356e5b0dc1..4a26d7a54b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_nfs_server.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_nfs_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_operating_system_file.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_operating_system_file.go index b89737de43..c60a156432 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_operating_system_file.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_operating_system_file.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_operating_system_file_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_operating_system_file_list.go index dad42deb97..56b66d90e9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_operating_system_file_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_operating_system_file_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_operating_system_file_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_operating_system_file_relationship.go index ea7e5cab92..5e5cd4e1cf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_operating_system_file_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_operating_system_file_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_operating_system_file_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_operating_system_file_response.go index 085ce2626a..05fff7bc05 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_operating_system_file_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_operating_system_file_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_release.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_release.go index 25505db67e..938b06ce43 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_release.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_release.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_release_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_release_list.go index a45cd672ec..6527d58501 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_release_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_release_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_release_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_release_relationship.go index d89f26f870..b3e3e41491 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_release_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_release_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_release_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_release_response.go index 6db002a150..45ce7cb139 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_release_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_release_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_unsupported_model_constraint.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_unsupported_model_constraint.go index 2657c9d246..d0480551bc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_unsupported_model_constraint.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_softwarerepository_unsupported_model_constraint.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sol_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sol_policy.go index f016971645..1910b4ea67 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sol_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sol_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sol_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sol_policy_inventory.go index 9e0ab2d95c..1f5b9dc0a7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sol_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sol_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sol_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sol_policy_inventory_list.go index 8319f1e8e6..45ad4a9dd2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sol_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sol_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sol_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sol_policy_inventory_response.go index f0ccf50fb7..4af710b6ea 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sol_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sol_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sol_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sol_policy_list.go index 364b85c351..36785f59a0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sol_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sol_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sol_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sol_policy_response.go index 0a86bb9e73..868f71ba95 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sol_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sol_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ssh_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ssh_policy.go index 4e3afb6c92..95d58f2130 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ssh_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ssh_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ssh_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ssh_policy_inventory.go index 679711fb7a..d50bcc9f79 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ssh_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ssh_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ssh_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ssh_policy_inventory_list.go index f39f694406..c322da1726 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ssh_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ssh_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ssh_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ssh_policy_inventory_response.go index c1e709e159..b04bec89be 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ssh_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ssh_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ssh_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ssh_policy_list.go index 7595a277f4..8831f213a6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ssh_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ssh_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ssh_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ssh_policy_response.go index 8ffd491297..a6ce6ccc8f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ssh_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ssh_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_automatic_drive_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_automatic_drive_group.go index c17d02e978..50e2412edc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_automatic_drive_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_automatic_drive_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type StorageAutomaticDriveGroup struct { // Minimum size of the drive to be used for creating this RAID group. MinimumDriveSize *int64 `json:"MinimumDriveSize,omitempty"` // Number of dedicated hot spare disks for this RAID group. Allowed value is a comma or hyphen separated number range. - NumDedicatedHotSpares *string `json:"NumDedicatedHotSpares,omitempty"` + NumDedicatedHotSpares *string `json:"NumDedicatedHotSpares,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // Number of span groups to be created for this RAID group. Non-nested RAID levels have a single span. NumberOfSpans *int64 `json:"NumberOfSpans,omitempty"` // This flag enables the drive group to use all the remaining drives on the server. @@ -436,7 +436,7 @@ func (o *StorageAutomaticDriveGroup) UnmarshalJSON(data []byte) (err error) { // Minimum size of the drive to be used for creating this RAID group. MinimumDriveSize *int64 `json:"MinimumDriveSize,omitempty"` // Number of dedicated hot spare disks for this RAID group. Allowed value is a comma or hyphen separated number range. - NumDedicatedHotSpares *string `json:"NumDedicatedHotSpares,omitempty"` + NumDedicatedHotSpares *string `json:"NumDedicatedHotSpares,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // Number of span groups to be created for this RAID group. Non-nested RAID levels have a single span. NumberOfSpans *int64 `json:"NumberOfSpans,omitempty"` // This flag enables the drive group to use all the remaining drives on the server. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_array.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_array.go index b5bf20810c..62bf4b6b9a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_array.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_array.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_array_controller.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_array_controller.go index b213cc36a0..dee1e18475 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_array_controller.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_array_controller.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_array_disk.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_array_disk.go index 8a34bec9ff..ce623481cf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_array_disk.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_array_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_array_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_array_relationship.go index 24a580d3e8..cc7a2a9155 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_array_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_array_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_capacity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_capacity.go index e7311cd17a..ac36750266 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_capacity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_capacity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_cluster.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_cluster.go index ef546074d1..445e7b8b4d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_cluster.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_cluster_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_cluster_relationship.go index ea76a85d8f..46708ebee7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_cluster_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_cluster_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_disk_pool.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_disk_pool.go index dc69f4a591..637e0a841c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_disk_pool.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_disk_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_host.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_host.go index bf8e95b49d..22f1f0480d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_host.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_host.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_host_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_host_group.go index 82d1f3cd29..f401105f74 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_host_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_host_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_host_lun.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_host_lun.go index b01f487090..da15c9aa90 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_host_lun.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_host_lun.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_initiator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_initiator.go index 6104afec2a..054dca45eb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_initiator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_initiator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_nfs_export.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_nfs_export.go index e9ee05a2ae..fce7058202 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_nfs_export.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_nfs_export.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type StorageBaseNfsExport struct { // Name of the NFS export in storage array. Name *string `json:"Name,omitempty"` // The uuid of this NFS export. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` AdditionalProperties map[string]interface{} } @@ -272,7 +272,7 @@ func (o *StorageBaseNfsExport) UnmarshalJSON(data []byte) (err error) { // Name of the NFS export in storage array. Name *string `json:"Name,omitempty"` // The uuid of this NFS export. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` } varStorageBaseNfsExportWithoutEmbeddedStruct := StorageBaseNfsExportWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_performance_metrics_average.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_performance_metrics_average.go index 0d04c0f1ec..028af9beb1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_performance_metrics_average.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_performance_metrics_average.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_physical_port.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_physical_port.go index 427d661c6e..298d763b9d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_physical_port.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_physical_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_protection_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_protection_group.go index 5112af97f2..c8801aade5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_protection_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_protection_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_protection_group_snapshot.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_protection_group_snapshot.go index 5ff84acdbe..4154399da7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_protection_group_snapshot.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_protection_group_snapshot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_raid_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_raid_group.go index c1c432eb37..e0296604f6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_raid_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_raid_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_replication_blackout.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_replication_blackout.go index 4b77c5b4de..74191bf11b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_replication_blackout.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_replication_blackout.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_replication_schedule.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_replication_schedule.go index 256df580b3..93d642765a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_replication_schedule.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_replication_schedule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_snapshot.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_snapshot.go index f5a1d4fbc9..407ad55178 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_snapshot.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_snapshot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_snapshot_schedule.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_snapshot_schedule.go index 756af6b3c2..f51c33bf5d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_snapshot_schedule.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_snapshot_schedule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_storage_container.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_storage_container.go index 5465b00272..5fd909e87e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_storage_container.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_storage_container.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_target.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_target.go index d1ec90466e..31199f18ce 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_target.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_target.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_tenant.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_tenant.go index db09a86db2..5f3e8a1087 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_tenant.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_tenant.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type StorageBaseTenant struct { // The state of this tenant. * `Unknown` - Component state is not available. * `Starting` - Component is being started. * `Running` - Component is currently running. * `Stopping` - Component is being stopped. * `Stopped` - Component has been stopped. * `Deleting` - Component deletion is in progress. State *string `json:"State,omitempty"` // The uuid of this tenant in storage array. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` AdditionalProperties map[string]interface{} } @@ -311,7 +311,7 @@ func (o *StorageBaseTenant) UnmarshalJSON(data []byte) (err error) { // The state of this tenant. * `Unknown` - Component state is not available. * `Starting` - Component is being started. * `Running` - Component is currently running. * `Stopping` - Component is being stopped. * `Stopped` - Component has been stopped. * `Deleting` - Component deletion is in progress. State *string `json:"State,omitempty"` // The uuid of this tenant in storage array. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` } varStorageBaseTenantWithoutEmbeddedStruct := StorageBaseTenantWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_volume.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_volume.go index 5fd080cfac..21b9d5cc38 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_volume.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_base_volume.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_battery_backup_unit.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_battery_backup_unit.go index 345ba39cf6..089cf9d42c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_battery_backup_unit.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_battery_backup_unit.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_battery_backup_unit_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_battery_backup_unit_list.go index afde4e1983..a21ffacbc9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_battery_backup_unit_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_battery_backup_unit_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_battery_backup_unit_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_battery_backup_unit_relationship.go index c5b9008281..868aa354c2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_battery_backup_unit_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_battery_backup_unit_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_battery_backup_unit_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_battery_backup_unit_response.go index ad8f3e1da5..1a1eb4fc9b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_battery_backup_unit_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_battery_backup_unit_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller.go index a785059c63..4f1c1d800a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_drive.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_drive.go index 83692fde37..e7bdebd16b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_drive.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_drive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_drive_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_drive_list.go index 957f3a234b..b089f46bc5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_drive_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_drive_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_drive_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_drive_relationship.go index c1492d7830..adc5e49235 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_drive_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_drive_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_drive_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_drive_response.go index 1185ecbb24..d32284282f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_drive_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_drive_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_list.go index 05c136daea..b4c0017748 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_relationship.go index a40335d79a..eeaeb611b5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_response.go index 93f9817204..09b96094ac 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_controller_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_group.go index 7ac0456d1b..ee8b5c9d3e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_group_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_group_list.go index 70b3409ba9..7dd753cfb5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_group_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_group_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_group_relationship.go index e50e0fee44..f4594eefc4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_group_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_group_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_group_response.go index f63888d110..f28c4e57ba 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_group_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_slot.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_slot.go index ae17beeef8..df1981cac6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_slot.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_slot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_slot_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_slot_list.go index e87a007d60..97c6fd89c0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_slot_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_slot_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_slot_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_slot_relationship.go index 5a4c8bb00e..dbb73a0cde 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_slot_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_slot_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_slot_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_slot_response.go index 46c07b5822..35f731fd76 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_slot_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_disk_slot_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_group.go index 109023177a..8a7075ea48 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type StorageDriveGroup struct { AutomaticDriveGroup NullableStorageAutomaticDriveGroup `json:"AutomaticDriveGroup,omitempty"` ManualDriveGroup NullableStorageManualDriveGroup `json:"ManualDriveGroup,omitempty"` // The name of the drive group. The name can be between 1 and 64 alphanumeric characters. Spaces or any special characters other than - (hyphen), _ (underscore), : (colon), and . (period) are not allowed. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // The supported RAID level for the disk group. * `Raid0` - RAID 0 Stripe Raid Level. * `Raid1` - RAID 1 Mirror Raid Level. * `Raid5` - RAID 5 Mirror Raid Level. * `Raid6` - RAID 6 Mirror Raid Level. * `Raid10` - RAID 10 Mirror Raid Level. * `Raid50` - RAID 50 Mirror Raid Level. * `Raid60` - RAID 60 Mirror Raid Level. RaidLevel *string `json:"RaidLevel,omitempty"` // Enables/disables the drive encryption on all the drives used in this policy. This flag just enables the drive security and only after remote key setting configured, the actual encryption will be done. @@ -528,7 +528,7 @@ func (o *StorageDriveGroup) UnmarshalJSON(data []byte) (err error) { AutomaticDriveGroup NullableStorageAutomaticDriveGroup `json:"AutomaticDriveGroup,omitempty"` ManualDriveGroup NullableStorageManualDriveGroup `json:"ManualDriveGroup,omitempty"` // The name of the drive group. The name can be between 1 and 64 alphanumeric characters. Spaces or any special characters other than - (hyphen), _ (underscore), : (colon), and . (period) are not allowed. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // The supported RAID level for the disk group. * `Raid0` - RAID 0 Stripe Raid Level. * `Raid1` - RAID 1 Mirror Raid Level. * `Raid5` - RAID 5 Mirror Raid Level. * `Raid6` - RAID 6 Mirror Raid Level. * `Raid10` - RAID 10 Mirror Raid Level. * `Raid50` - RAID 50 Mirror Raid Level. * `Raid60` - RAID 60 Mirror Raid Level. RaidLevel *string `json:"RaidLevel,omitempty"` // Enables/disables the drive encryption on all the drives used in this policy. This flag just enables the drive security and only after remote key setting configured, the actual encryption will be done. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_group_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_group_list.go index be2cc495a3..ed0e8b1b31 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_group_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_group_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_group_relationship.go index ea2075bc84..94e8a452e0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_group_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_group_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_group_response.go index 05edda0cb6..214c3cd63f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_group_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_security_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_security_policy.go index fddb2d8507..8ef9b82e3a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_security_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_security_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_security_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_security_policy_list.go index 2b12d51a0b..798feccfe9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_security_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_security_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_security_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_security_policy_response.go index ba33cf96c5..f47b34eecc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_security_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_drive_security_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure.go index 2abf836164..ae9c9bf4dd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk.go index 5b8cf8d1d0..7ca1265c89 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_list.go index 74fe4b19a4..c63100913b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_relationship.go index c8cbc15f94..ea1376b3ba 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_response.go index 73e4c9766c..d4f8fcc8e2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_slot_ep.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_slot_ep.go index 459941f79d..f20ec953a6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_slot_ep.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_slot_ep.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_slot_ep_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_slot_ep_list.go index 2df0303b4f..74fd613e16 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_slot_ep_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_slot_ep_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_slot_ep_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_slot_ep_relationship.go index ecf86e7383..8f54dbea07 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_slot_ep_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_slot_ep_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_slot_ep_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_slot_ep_response.go index 8e2f2791ff..ced3b9635c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_slot_ep_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_disk_slot_ep_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_list.go index 0d7db2a4b8..9ceb074021 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_relationship.go index a8f760eac6..e83a537038 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_response.go index 25dee26bfa..71e1daca15 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_enclosure_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_external_lun.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_external_lun.go index de64d09035..b14a2c48f6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_external_lun.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_external_lun.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_external_parity_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_external_parity_group.go index ad21e1252e..1af812e3a6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_external_parity_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_external_parity_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_external_path.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_external_path.go index 2407c113be..d5fa2d1101 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_external_path.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_external_path.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_file_item.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_file_item.go index 6d0b82a552..36cae9bfe7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_file_item.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_file_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_file_item_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_file_item_list.go index 8d6e7b4857..c7748e64fe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_file_item_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_file_item_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_file_item_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_file_item_relationship.go index 4e7c77d245..dce350ba2c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_file_item_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_file_item_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_file_item_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_file_item_response.go index b308dbd931..8508faf1bf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_file_item_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_file_item_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller.go index 66eac6ccfe..9f287fbe24 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_list.go index 1b711181b1..8b8e76edbb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_props.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_props.go index 7294d51030..4aebb10451 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_props.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_props.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_props_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_props_list.go index 056f845533..669ce330b3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_props_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_props_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_props_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_props_relationship.go index da9d5d2a01..11a159006d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_props_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_props_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_props_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_props_response.go index 0f1cf78fb1..c496053c42 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_props_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_props_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_relationship.go index fc6bfa2e25..7a118e2a42 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_response.go index 89ce922443..f3093315b3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_controller_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_physical_drive.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_physical_drive.go index c450f4d9d9..557711d26a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_physical_drive.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_physical_drive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_physical_drive_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_physical_drive_list.go index aa12294b85..1f7025023c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_physical_drive_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_physical_drive_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_physical_drive_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_physical_drive_relationship.go index 44c54d0785..d0df7d4467 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_physical_drive_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_physical_drive_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_physical_drive_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_physical_drive_response.go index 84ac4f1406..6bdc16c6b0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_physical_drive_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_physical_drive_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_virtual_drive.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_virtual_drive.go index 31080a1dc6..85140e6e9b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_virtual_drive.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_virtual_drive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_virtual_drive_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_virtual_drive_list.go index 44b035d1e5..8a6d8a1b4b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_virtual_drive_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_virtual_drive_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_virtual_drive_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_virtual_drive_relationship.go index 3a96e133eb..e292aa5520 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_virtual_drive_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_virtual_drive_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_virtual_drive_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_virtual_drive_response.go index aab8fa89dc..184917aa49 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_virtual_drive_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_flash_virtual_drive_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_controller.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_controller.go index 6c78d93262..603d0d49b1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_controller.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_controller.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_controller_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_controller_list.go index d46420453a..536a31a025 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_controller_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_controller_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_controller_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_controller_relationship.go index 7379c96a54..871495111d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_controller_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_controller_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_controller_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_controller_response.go index 3206044d5c..8ce5e0e544 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_controller_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_controller_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_physical_drive.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_physical_drive.go index 7e875b107f..f8612f2271 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_physical_drive.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_physical_drive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_physical_drive_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_physical_drive_list.go index 040090fe38..a31763b296 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_physical_drive_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_physical_drive_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_physical_drive_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_physical_drive_relationship.go index ec9c013b07..002139957b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_physical_drive_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_physical_drive_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_physical_drive_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_physical_drive_response.go index 0e41fdbfd2..1a7f248e34 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_physical_drive_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_physical_drive_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_virtual_drive.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_virtual_drive.go index 44ed458512..71b6a9234c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_virtual_drive.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_virtual_drive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_virtual_drive_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_virtual_drive_list.go index 2a8310b155..cfe2ec3fc5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_virtual_drive_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_virtual_drive_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_virtual_drive_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_virtual_drive_relationship.go index b4c81cb8ca..0f203ed357 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_virtual_drive_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_virtual_drive_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_virtual_drive_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_virtual_drive_response.go index fe7dde5f89..8caa779b0a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_virtual_drive_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_flex_util_virtual_drive_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_array.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_array.go index 50df34fc20..250d531c6b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_array.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_array.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_array_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_array_list.go index d5060b127c..b600f46d6a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_array_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_array_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_array_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_array_relationship.go index 784d22b65d..23bf782860 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_array_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_array_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_array_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_array_response.go index 30778fc522..d64fd9aca7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_array_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_array_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_array_utilization.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_array_utilization.go index 3f7e2ef9af..d2b34925e3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_array_utilization.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_array_utilization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_capacity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_capacity.go index 615b7a7fde..68b9190268 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_capacity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_capacity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_controller.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_controller.go index 29e06fe4c7..2849d40dcd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_controller.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_controller.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_controller_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_controller_list.go index 341753a3ab..d8d10a6e08 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_controller_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_controller_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_controller_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_controller_response.go index a9b193d673..c39276803f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_controller_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_controller_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_disk.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_disk.go index c191727d4a..44a6f17b52 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_disk.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_disk_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_disk_list.go index 4b04c74d61..1f17f70515 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_disk_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_disk_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_disk_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_disk_response.go index 8d218defa7..052de8cae4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_disk_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_disk_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_parity_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_parity_group.go index 1f54d02373..49a40bfea8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_parity_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_parity_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_parity_group_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_parity_group_list.go index 540bcb24fc..08f21cd906 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_parity_group_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_parity_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_parity_group_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_parity_group_response.go index 4bc9098862..bc3010798e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_parity_group_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_parity_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_path_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_path_group.go index fe5cdb2d02..143cc7b84d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_path_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_path_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_path_group_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_path_group_list.go index 089cd19493..df127cc47c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_path_group_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_path_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_path_group_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_path_group_response.go index abe8ee6f36..75e616ffc5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_path_group_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_path_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_lun.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_lun.go index a3c1ea5716..2aecd86887 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_lun.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_lun.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_lun_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_lun_list.go index c76b1c360d..29f4f5a48e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_lun_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_lun_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_lun_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_lun_response.go index 80d6e72406..b903acdb52 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_lun_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_lun_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_port.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_port.go index cedde840d6..9db760950a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_port.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_port_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_port_list.go index 4b878ce09e..8633e48435 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_port_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_port_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_port_relationship.go index f36f27dcb1..76beb8dcd4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_port_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_port_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_port_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_port_response.go index 1908a1746e..da44506a68 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_port_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_external_storage_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host.go index 6e08731422..9b3fa2850d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host_list.go index 4abbe24917..29234173b9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host_lun.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host_lun.go index b8357ae1bd..717937d1ed 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host_lun.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host_lun.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host_lun_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host_lun_list.go index 5600fd65f6..dbc2b6155d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host_lun_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host_lun_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host_lun_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host_lun_response.go index e179904c7b..b31c919942 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host_lun_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host_lun_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host_relationship.go index 3f625ee5cc..c297170cfa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host_response.go index c47cde6aca..4183944a49 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_host_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_initiator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_initiator.go index 7dc212c220..d624248a1d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_initiator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_initiator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_parity_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_parity_group.go index e96b067435..e9e1624fbd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_parity_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_parity_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_parity_group_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_parity_group_list.go index dbed8dbca5..a50b1f62be 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_parity_group_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_parity_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_parity_group_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_parity_group_relationship.go index ac3077c099..c41c87e8e6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_parity_group_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_parity_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_parity_group_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_parity_group_response.go index ff4727f76b..1bc9259946 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_parity_group_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_parity_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_pool.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_pool.go index c2000819a4..5b451d32ed 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_pool.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_pool_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_pool_list.go index 896db0b8f8..42dba6df7d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_pool_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_pool_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_pool_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_pool_relationship.go index 5548fd67dc..7c59dea338 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_pool_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_pool_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_pool_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_pool_response.go index d17880ff3e..f2159e7c3f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_pool_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_pool_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_port.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_port.go index 159144310d..e4d7db2842 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_port.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,11 +31,11 @@ type StorageHitachiPort struct { // Fabric mode of the port. true, Set. false, Not set. FabricMode *bool `json:"FabricMode,omitempty"` // IPv4 address of Hitachi Port. - Ipv4Address *string `json:"Ipv4Address,omitempty"` + Ipv4Address *string `json:"Ipv4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IPv6 global address value. - Ipv6GlobalAddress *string `json:"Ipv6GlobalAddress,omitempty"` + Ipv6GlobalAddress *string `json:"Ipv6GlobalAddress,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // IPv6 link local address value. - Ipv6LinkLocalAddress *string `json:"Ipv6LinkLocalAddress,omitempty"` + Ipv6LinkLocalAddress *string `json:"Ipv6LinkLocalAddress,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // Determines if IPv6 mode is enabled on the port. IsIpv6Enable *bool `json:"IsIpv6Enable,omitempty"` // The value set for the port loop ID (AL_PA). @@ -699,11 +699,11 @@ func (o *StorageHitachiPort) UnmarshalJSON(data []byte) (err error) { // Fabric mode of the port. true, Set. false, Not set. FabricMode *bool `json:"FabricMode,omitempty"` // IPv4 address of Hitachi Port. - Ipv4Address *string `json:"Ipv4Address,omitempty"` + Ipv4Address *string `json:"Ipv4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // IPv6 global address value. - Ipv6GlobalAddress *string `json:"Ipv6GlobalAddress,omitempty"` + Ipv6GlobalAddress *string `json:"Ipv6GlobalAddress,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // IPv6 link local address value. - Ipv6LinkLocalAddress *string `json:"Ipv6LinkLocalAddress,omitempty"` + Ipv6LinkLocalAddress *string `json:"Ipv6LinkLocalAddress,omitempty" validate:"regexp=^$|^(([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:([0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{0,4}|:[0-9A-Fa-f]{1,4})?|(:[0-9A-Fa-f]{1,4}){0,2})|(:[0-9A-Fa-f]{1,4}){0,3})|(:[0-9A-Fa-f]{1,4}){0,4})|:(:[0-9A-Fa-f]{1,4}){0,5})((:[0-9A-Fa-f]{1,4}){2}|:(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])(\\\\.(25[0-5]|(2[0-4]|1[0-9]|[1-9])?[0-9])){3})|(([0-9A-Fa-f]{1,4}:){1,6}|:):[0-9A-Fa-f]{0,4}|([0-9A-Fa-f]{1,4}:){7}:)$"` // Determines if IPv6 mode is enabled on the port. IsIpv6Enable *bool `json:"IsIpv6Enable,omitempty"` // The value set for the port loop ID (AL_PA). diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_port_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_port_list.go index b9d11d2402..c3855e3991 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_port_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_port_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_port_response.go index c8627e1eed..023fb01531 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_port_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_gad.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_gad.go index ad5ba6deca..8b77e91ee7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_gad.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_gad.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_gad_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_gad_list.go index dd031a7c68..50bd449833 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_gad_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_gad_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_gad_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_gad_response.go index 5f970172eb..e393da9c31 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_gad_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_gad_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_tc.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_tc.go index 03681dd042..1926c31da0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_tc.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_tc.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_tc_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_tc_list.go index 0fb90480f9..29665d82e5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_tc_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_tc_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_tc_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_tc_response.go index 3969776eb0..28e910febf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_tc_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_tc_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_ur.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_ur.go index aa97f25531..478b58378b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_ur.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_ur.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_ur_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_ur_list.go index fa9c56aa4b..a99733d5f9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_ur_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_ur_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_ur_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_ur_response.go index 450755e081..c9fc8a5485 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_ur_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_copy_pair_ur_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_replication.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_replication.go index 10e528389d..c68cd87be4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_replication.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_replication.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_replication_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_replication_list.go index 7541d07aec..0a9c835c56 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_replication_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_replication_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_replication_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_replication_response.go index c44e57946b..6a434c11cc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_replication_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_remote_replication_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_snapshot.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_snapshot.go index f6d92dd0f2..7ae519b2e4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_snapshot.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_snapshot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_snapshot_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_snapshot_list.go index 498e5d8bbc..be20aeea9d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_snapshot_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_snapshot_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_snapshot_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_snapshot_response.go index 2ad73ded70..b010540076 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_snapshot_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_snapshot_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume.go index e1e4b114f9..687b2ad4db 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume_list.go index 071f6d6b27..d4bdb2c253 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume_migration_pair.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume_migration_pair.go index 99894ce0c1..ca519932fc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume_migration_pair.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume_migration_pair.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume_migration_pair_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume_migration_pair_list.go index c131d2177b..36be80d253 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume_migration_pair_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume_migration_pair_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume_migration_pair_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume_migration_pair_response.go index 78aaf2e326..03517b250b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume_migration_pair_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume_migration_pair_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume_relationship.go index c0a35192d4..aba6f52b7b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume_response.go index 7f06b71aad..6e3e04f5a6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hitachi_volume_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_iscsi_initiator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_iscsi_initiator.go index c536d7d40c..c822992858 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_iscsi_initiator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_iscsi_initiator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_storage_container.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_storage_container.go index c6055a38e3..333ea31d44 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_storage_container.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_storage_container.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_storage_container_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_storage_container_list.go index 1a380d726b..fdd0322bbb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_storage_container_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_storage_container_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_storage_container_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_storage_container_relationship.go index 5e6ba1eb8d..5d9fd78541 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_storage_container_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_storage_container_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_storage_container_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_storage_container_response.go index 21ede834eb..deecdad636 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_storage_container_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_storage_container_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_volume.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_volume.go index a5422d8baf..63769d50cb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_volume.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_volume.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_volume_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_volume_list.go index 65d0a150ac..6bf7e1f898 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_volume_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_volume_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_volume_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_volume_relationship.go index 9a85cb2137..f710cb227f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_volume_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_volume_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_volume_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_volume_response.go index 196729a098..bc0d0d25c9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_volume_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_hyper_flex_volume_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_initiator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_initiator.go index bbbd155e2a..2c70bee688 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_initiator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_initiator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_item.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_item.go index c11827611b..ce7c9f29cf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_item.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_item_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_item_list.go index 02700091bc..a15d37be7e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_item_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_item_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_item_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_item_relationship.go index b25b6eaede..e62e5db209 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_item_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_item_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_item_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_item_response.go index 1dc165c34c..b6793395ad 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_item_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_item_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_key_setting.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_key_setting.go index 444c654409..9aa4e24190 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_key_setting.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_key_setting.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_kmip_auth_credentials.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_kmip_auth_credentials.go index e3fa5e8ba2..188325b04e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_kmip_auth_credentials.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_kmip_auth_credentials.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,11 +31,11 @@ type StorageKmipAuthCredentials struct { // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password for the KMIP server login. - Password *string `json:"Password,omitempty"` + Password *string "json:\"Password,omitempty\" validate:\"regexp=[!\\\"#%&'\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;<>@\\\\[\\\\\\\\\\\\]\\\\^_`\\\\{\\\\|\\\\}~a-zA-Z0-9]{0,80}\"" // Enables/disables the authentication for communicating with KMIP server. This flag enables the authentication which makes authentication mandatory. UseAuthentication *bool `json:"UseAuthentication,omitempty"` // The user name for the KMIP server login. - Username *string `json:"Username,omitempty"` + Username *string `json:"Username,omitempty" validate:"regexp=^$|[a-zA-Z][a-zA-Z0-9_.-]{0,31}"` AdditionalProperties map[string]interface{} } @@ -346,11 +346,11 @@ func (o *StorageKmipAuthCredentials) UnmarshalJSON(data []byte) (err error) { // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // The password for the KMIP server login. - Password *string `json:"Password,omitempty"` + Password *string "json:\"Password,omitempty\" validate:\"regexp=[!\\\"#%&'\\\\(\\\\)\\\\*\\\\+,\\\\-\\\\.\\/:;<>@\\\\[\\\\\\\\\\\\]\\\\^_`\\\\{\\\\|\\\\}~a-zA-Z0-9]{0,80}\"" // Enables/disables the authentication for communicating with KMIP server. This flag enables the authentication which makes authentication mandatory. UseAuthentication *bool `json:"UseAuthentication,omitempty"` // The user name for the KMIP server login. - Username *string `json:"Username,omitempty"` + Username *string `json:"Username,omitempty" validate:"regexp=^$|[a-zA-Z][a-zA-Z0-9_.-]{0,31}"` } varStorageKmipAuthCredentialsWithoutEmbeddedStruct := StorageKmipAuthCredentialsWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_kmip_server.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_kmip_server.go index dfecbcfe93..287deafb27 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_kmip_server.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_kmip_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_local_key_setting.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_local_key_setting.go index 35c33b47f3..6c5227481a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_local_key_setting.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_local_key_setting.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,13 +29,13 @@ type StorageLocalKeySetting struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Current Security Key Passphrase which is already configured on the server. - ExistingKey *string `json:"ExistingKey,omitempty"` + ExistingKey *string `json:"ExistingKey,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` // Indicates whether the value of the 'existingKey' property has been set. IsExistingKeySet *bool `json:"IsExistingKeySet,omitempty"` // Indicates whether the value of the 'newKey' property has been set. IsNewKeySet *bool `json:"IsNewKeySet,omitempty"` // New Security Key Passphrase to be configured on the controller. - NewKey *string `json:"NewKey,omitempty"` + NewKey *string `json:"NewKey,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` AdditionalProperties map[string]interface{} } @@ -344,13 +344,13 @@ func (o *StorageLocalKeySetting) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Current Security Key Passphrase which is already configured on the server. - ExistingKey *string `json:"ExistingKey,omitempty"` + ExistingKey *string `json:"ExistingKey,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` // Indicates whether the value of the 'existingKey' property has been set. IsExistingKeySet *bool `json:"IsExistingKeySet,omitempty"` // Indicates whether the value of the 'newKey' property has been set. IsNewKeySet *bool `json:"IsNewKeySet,omitempty"` // New Security Key Passphrase to be configured on the controller. - NewKey *string `json:"NewKey,omitempty"` + NewKey *string `json:"NewKey,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` } varStorageLocalKeySettingWithoutEmbeddedStruct := StorageLocalKeySettingWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_m2_virtual_drive_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_m2_virtual_drive_config.go index 2afb74fbe8..59f2ff56ce 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_m2_virtual_drive_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_m2_virtual_drive_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type StorageM2VirtualDriveConfig struct { // If enabled, this will create a virtual drive on the M.2 RAID controller. Enable *bool `json:"Enable,omitempty"` // The name of the virtual drive. The name can be between 1 and 15 alphanumeric characters. Spaces or any special characters other than - (hyphen) and _ (underscore) are not allowed. This field will be pre-populated with the default or user configured value which can be edited. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\-_]*$"` AdditionalProperties map[string]interface{} } @@ -323,7 +323,7 @@ func (o *StorageM2VirtualDriveConfig) UnmarshalJSON(data []byte) (err error) { // If enabled, this will create a virtual drive on the M.2 RAID controller. Enable *bool `json:"Enable,omitempty"` // The name of the virtual drive. The name can be between 1 and 15 alphanumeric characters. Spaces or any special characters other than - (hyphen) and _ (underscore) are not allowed. This field will be pre-populated with the default or user configured value which can be edited. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\-_]*$"` } varStorageM2VirtualDriveConfigWithoutEmbeddedStruct := StorageM2VirtualDriveConfigWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_manual_drive_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_manual_drive_group.go index 02e8246c74..32c5a7f057 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_manual_drive_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_manual_drive_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type StorageManualDriveGroup struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // A collection of drives to be used as hot spares for this Drive Group. - DedicatedHotSpares *string `json:"DedicatedHotSpares,omitempty"` + DedicatedHotSpares *string `json:"DedicatedHotSpares,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` SpanGroups []StorageSpanDrives `json:"SpanGroups,omitempty"` AdditionalProperties map[string]interface{} } @@ -270,7 +270,7 @@ func (o *StorageManualDriveGroup) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // A collection of drives to be used as hot spares for this Drive Group. - DedicatedHotSpares *string `json:"DedicatedHotSpares,omitempty"` + DedicatedHotSpares *string `json:"DedicatedHotSpares,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` SpanGroups []StorageSpanDrives `json:"SpanGroups,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate.go index a2627bf7e7..a5afa4b3c6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -45,7 +45,7 @@ type StorageNetAppAggregate struct { // Current state of the NetApp aggregate. * `Unknown` - Specifies that the aggregate is discovered, but the aggregate information is not yet retrieved by the Unified Manager server. * `Online` - Aggregate is ready and available. * `Onlining` - The state is transitioning online. * `Offline` - Aggregate is unavailable. * `Offlining` - The state is transitioning offline. * `Relocating` - The aggregate is being relocated. * `Restricted` - Limited operations (e.g., parity reconstruction) are allowed, but data access is not allowed. * `Failed` - The aggregate cannot be brought online. * `Inconsistent` - The aggregate has been marked corrupted; contact technical support. * `Unmounted` - The aggregate is not mounted. State *string `json:"State,omitempty"` // Uuid of NetApp Aggregate. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` ArrayController NullableStorageNetAppNodeRelationship `json:"ArrayController,omitempty"` // An array of relationships to storageNetAppAggregateEvent resources. Events []StorageNetAppAggregateEventRelationship `json:"Events,omitempty"` @@ -666,7 +666,7 @@ func (o *StorageNetAppAggregate) UnmarshalJSON(data []byte) (err error) { // Current state of the NetApp aggregate. * `Unknown` - Specifies that the aggregate is discovered, but the aggregate information is not yet retrieved by the Unified Manager server. * `Online` - Aggregate is ready and available. * `Onlining` - The state is transitioning online. * `Offline` - Aggregate is unavailable. * `Offlining` - The state is transitioning offline. * `Relocating` - The aggregate is being relocated. * `Restricted` - Limited operations (e.g., parity reconstruction) are allowed, but data access is not allowed. * `Failed` - The aggregate cannot be brought online. * `Inconsistent` - The aggregate has been marked corrupted; contact technical support. * `Unmounted` - The aggregate is not mounted. State *string `json:"State,omitempty"` // Uuid of NetApp Aggregate. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` ArrayController NullableStorageNetAppNodeRelationship `json:"ArrayController,omitempty"` // An array of relationships to storageNetAppAggregateEvent resources. Events []StorageNetAppAggregateEventRelationship `json:"Events,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_event.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_event.go index 5e79b57d3b..5c3f84a1a1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_event.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_event_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_event_list.go index a9cc4076e5..5b83a1d412 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_event_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_event_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_event_relationship.go index c12fa65b13..e0f2e08346 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_event_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_event_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_event_response.go index 6af1c641f5..d7ad3dc987 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_event_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_list.go index 551d782c73..4738a38f64 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_relationship.go index 66bd6db893..4ff9b08464 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_response.go index b9cce0f1a3..e03c081cf4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_aggregate_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_auto_support.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_auto_support.go index 455ef8eda1..6c4ad4876f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_auto_support.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_auto_support.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_disk.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_disk.go index ec773dcdcf..b40e1b6a04 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_disk.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type StorageNetAppBaseDisk struct { // The NetApp base disk model. BaseDiskModel *string `json:"BaseDiskModel,omitempty"` // Unique identity of the device. - ClusterUuid *string `json:"ClusterUuid,omitempty"` + ClusterUuid *string `json:"ClusterUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Supported container type for NetApp disk. * `Unknown` - Default container type is currently unknown. * `Aggregate` - Disk is used as a physical disk in an aggregate. * `Broken` - Disk is in a broken pool. * `Label Maintenance` - Disk is in online label maintenance list. * `Foreign` - Array LUN has been marked foreign. * `Maintenance` - Disk is in maintenance center. * `Mediator` - A mediator disk is a disk used on non-shared HA systems hosted by an external node which is used to communicate the viability of the storage failover between non-shared HA nodes. * `Shared` - Disk is partitioned or in a storage pool. * `Remote` - Disk belongs to a remote cluster. * `Spare` - The disk is a spare disk. * `Unassigned` - Disk ownership has not been assigned. * `Unsupported` - The disk is not supported. ContainerType *string `json:"ContainerType,omitempty"` // NetApp base disk shelf bay. @@ -51,7 +51,7 @@ type StorageNetAppBaseDisk struct { // Current state of the NetApp disk. * `Present` - Storage disk state type is present. * `Copy` - Storage disk state type is copy. * `Broken` - Storage disk state type is broken. * `Maintenance` - Storage disk state type is maintenance. * `Partner` - Storage disk state type is partner. * `Pending` - Storage disk state type is pending. * `Reconstructing` - Storage disk state type is reconstructing. * `Removed` - Storage disk state type is removed. * `Spare` - Storage disk state type is spare. * `Unfail` - Storage disk state type is unfail. * `Zeroing` - Storage disk state type is zeroing. State *string `json:"State,omitempty"` // Universally unique identifier of the NetApp Disk. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` ArrayController NullableStorageNetAppNodeRelationship `json:"ArrayController,omitempty"` // An array of relationships to storageNetAppAggregate resources. @@ -812,7 +812,7 @@ func (o *StorageNetAppBaseDisk) UnmarshalJSON(data []byte) (err error) { // The NetApp base disk model. BaseDiskModel *string `json:"BaseDiskModel,omitempty"` // Unique identity of the device. - ClusterUuid *string `json:"ClusterUuid,omitempty"` + ClusterUuid *string `json:"ClusterUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Supported container type for NetApp disk. * `Unknown` - Default container type is currently unknown. * `Aggregate` - Disk is used as a physical disk in an aggregate. * `Broken` - Disk is in a broken pool. * `Label Maintenance` - Disk is in online label maintenance list. * `Foreign` - Array LUN has been marked foreign. * `Maintenance` - Disk is in maintenance center. * `Mediator` - A mediator disk is a disk used on non-shared HA systems hosted by an external node which is used to communicate the viability of the storage failover between non-shared HA nodes. * `Shared` - Disk is partitioned or in a storage pool. * `Remote` - Disk belongs to a remote cluster. * `Spare` - The disk is a spare disk. * `Unassigned` - Disk ownership has not been assigned. * `Unsupported` - The disk is not supported. ContainerType *string `json:"ContainerType,omitempty"` // NetApp base disk shelf bay. @@ -832,7 +832,7 @@ func (o *StorageNetAppBaseDisk) UnmarshalJSON(data []byte) (err error) { // Current state of the NetApp disk. * `Present` - Storage disk state type is present. * `Copy` - Storage disk state type is copy. * `Broken` - Storage disk state type is broken. * `Maintenance` - Storage disk state type is maintenance. * `Partner` - Storage disk state type is partner. * `Pending` - Storage disk state type is pending. * `Reconstructing` - Storage disk state type is reconstructing. * `Removed` - Storage disk state type is removed. * `Spare` - Storage disk state type is spare. * `Unfail` - Storage disk state type is unfail. * `Zeroing` - Storage disk state type is zeroing. State *string `json:"State,omitempty"` // Universally unique identifier of the NetApp Disk. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` ArrayController NullableStorageNetAppNodeRelationship `json:"ArrayController,omitempty"` // An array of relationships to storageNetAppAggregate resources. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_disk_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_disk_list.go index 36d4100f26..1e23c0a0fa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_disk_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_disk_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_disk_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_disk_relationship.go index 4409734288..ea26935455 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_disk_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_disk_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_disk_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_disk_response.go index 2636dd4fac..bd61a2e659 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_disk_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_disk_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_event.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_event.go index ac86dfd2ad..177825a379 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_event.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -55,7 +55,7 @@ type StorageNetAppBaseEvent struct { // Unique identifier of the storage VM. SvmUuid *string `json:"SvmUuid,omitempty"` // Unique identifier of the event. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` AdditionalProperties map[string]interface{} } @@ -717,7 +717,7 @@ func (o *StorageNetAppBaseEvent) UnmarshalJSON(data []byte) (err error) { // Unique identifier of the storage VM. SvmUuid *string `json:"SvmUuid,omitempty"` // Unique identifier of the event. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` } varStorageNetAppBaseEventWithoutEmbeddedStruct := StorageNetAppBaseEventWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_ip_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_ip_interface.go index d0b21de28d..8088ddbcff 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_ip_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_ip_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -60,7 +60,7 @@ type StorageNetAppBaseIpInterface struct { // Service policy name of IP interface. ServicePolicyName *string `json:"ServicePolicyName,omitempty"` // Service policy UUID of IP interface. - ServicePolicyUuid *string `json:"ServicePolicyUuid,omitempty"` + ServicePolicyUuid *string `json:"ServicePolicyUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Services []string `json:"Services,omitempty"` // The state of the IP interface. * `down` - An inactive port is listed as Down. * `up` - An active port is listed as Up. * `present` - An active port is listed as present. // Deprecated @@ -68,7 +68,7 @@ type StorageNetAppBaseIpInterface struct { // The storage virtual machine name for the interface. SvmName *string `json:"SvmName,omitempty"` // Uuid of NetApp IP Interface. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` AdditionalProperties map[string]interface{} } @@ -952,7 +952,7 @@ func (o *StorageNetAppBaseIpInterface) UnmarshalJSON(data []byte) (err error) { // Service policy name of IP interface. ServicePolicyName *string `json:"ServicePolicyName,omitempty"` // Service policy UUID of IP interface. - ServicePolicyUuid *string `json:"ServicePolicyUuid,omitempty"` + ServicePolicyUuid *string `json:"ServicePolicyUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Services []string `json:"Services,omitempty"` // The state of the IP interface. * `down` - An inactive port is listed as Down. * `up` - An active port is listed as Up. * `present` - An active port is listed as present. // Deprecated @@ -960,7 +960,7 @@ func (o *StorageNetAppBaseIpInterface) UnmarshalJSON(data []byte) (err error) { // The storage virtual machine name for the interface. SvmName *string `json:"SvmName,omitempty"` // Uuid of NetApp IP Interface. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` } varStorageNetAppBaseIpInterfaceWithoutEmbeddedStruct := StorageNetAppBaseIpInterfaceWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_snap_mirror_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_snap_mirror_policy.go index b7c9268023..a74fd64242 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_snap_mirror_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_snap_mirror_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -41,11 +41,11 @@ type StorageNetAppBaseSnapMirrorPolicy struct { // Name of the schedule used to update asynchronous relationships. TransferScheduleName *string `json:"TransferScheduleName,omitempty"` // Uuid of the schedule used to update asynchronous relationships. - TransferScheduleUuid *string `json:"TransferScheduleUuid,omitempty"` + TransferScheduleUuid *string `json:"TransferScheduleUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // SnapMirror policy type can be async, sync, or continuous. Type *string `json:"Type,omitempty"` // Uuid of the NetApp SnapMirror policy. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` AdditionalProperties map[string]interface{} } @@ -518,11 +518,11 @@ func (o *StorageNetAppBaseSnapMirrorPolicy) UnmarshalJSON(data []byte) (err erro // Name of the schedule used to update asynchronous relationships. TransferScheduleName *string `json:"TransferScheduleName,omitempty"` // Uuid of the schedule used to update asynchronous relationships. - TransferScheduleUuid *string `json:"TransferScheduleUuid,omitempty"` + TransferScheduleUuid *string `json:"TransferScheduleUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // SnapMirror policy type can be async, sync, or continuous. Type *string `json:"Type,omitempty"` // Uuid of the NetApp SnapMirror policy. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` } varStorageNetAppBaseSnapMirrorPolicyWithoutEmbeddedStruct := StorageNetAppBaseSnapMirrorPolicyWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_snap_mirror_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_snap_mirror_policy_relationship.go index 9a1e687d93..d04fddf275 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_snap_mirror_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_snap_mirror_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_snapshot_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_snapshot_policy.go index 22a25c01dc..91dc2a2501 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_snapshot_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_base_snapshot_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -36,7 +36,7 @@ type StorageNetAppBaseSnapshotPolicy struct { // Identifies whether the Snapshot Policy is owned by the Storage Virtual Machine or the cluster. Scope *string `json:"Scope,omitempty"` // Uuid of the NetApp Snapshot Policy. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` AdditionalProperties map[string]interface{} } @@ -365,7 +365,7 @@ func (o *StorageNetAppBaseSnapshotPolicy) UnmarshalJSON(data []byte) (err error) // Identifies whether the Snapshot Policy is owned by the Storage Virtual Machine or the cluster. Scope *string `json:"Scope,omitempty"` // Uuid of the NetApp Snapshot Policy. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` } varStorageNetAppBaseSnapshotPolicyWithoutEmbeddedStruct := StorageNetAppBaseSnapshotPolicyWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_acl.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_acl.go index bf00d70c2d..12925f84f1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_acl.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_acl.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_service.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_service.go index 37a3a8e94d..16a9dddcce 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_service.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_service.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -41,7 +41,7 @@ type StorageNetAppCifsService struct { // The storage virtual machine name for the CIFS service. SvmName *string `json:"SvmName,omitempty"` // Unique identifier for the NetApp Storage Virtual Machine. - SvmUuid *string `json:"SvmUuid,omitempty"` + SvmUuid *string `json:"SvmUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` AdditionalProperties map[string]interface{} } @@ -514,7 +514,7 @@ func (o *StorageNetAppCifsService) UnmarshalJSON(data []byte) (err error) { // The storage virtual machine name for the CIFS service. SvmName *string `json:"SvmName,omitempty"` // Unique identifier for the NetApp Storage Virtual Machine. - SvmUuid *string `json:"SvmUuid,omitempty"` + SvmUuid *string `json:"SvmUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_service_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_service_list.go index 5cb9f7199c..00e7abcecf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_service_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_service_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_service_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_service_response.go index 315fd36ccb..780d348473 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_service_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_service_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_share.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_share.go index bdbf9dd561..57c06920b7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_share.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_share.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -42,7 +42,7 @@ type StorageNetAppCifsShare struct { // The storage virtual machine name for the CIFS share. SvmName *string `json:"SvmName,omitempty"` // Unique identifier for the NetApp Storage Virtual Machine. - SvmUuid *string `json:"SvmUuid,omitempty"` + SvmUuid *string `json:"SvmUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` StorageContainer NullableStorageNetAppVolumeRelationship `json:"StorageContainer,omitempty"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` AdditionalProperties map[string]interface{} @@ -599,7 +599,7 @@ func (o *StorageNetAppCifsShare) UnmarshalJSON(data []byte) (err error) { // The storage virtual machine name for the CIFS share. SvmName *string `json:"SvmName,omitempty"` // Unique identifier for the NetApp Storage Virtual Machine. - SvmUuid *string `json:"SvmUuid,omitempty"` + SvmUuid *string `json:"SvmUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` StorageContainer NullableStorageNetAppVolumeRelationship `json:"StorageContainer,omitempty"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_share_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_share_list.go index 279e092874..1b731a73b2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_share_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_share_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_share_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_share_response.go index acfe6ba8b3..1431cae2ca 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_share_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cifs_share_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cloud_target.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cloud_target.go index a002730624..d21c20763e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cloud_target.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cloud_target.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -60,7 +60,7 @@ type StorageNetAppCloudTarget struct { // The amount of cloud space used by all the aggregates attached to the target, in bytes. Used *int64 `json:"Used,omitempty"` // Uuid of the cloud target. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` AdditionalProperties map[string]interface{} } @@ -903,7 +903,7 @@ func (o *StorageNetAppCloudTarget) UnmarshalJSON(data []byte) (err error) { // The amount of cloud space used by all the aggregates attached to the target, in bytes. Used *int64 `json:"Used,omitempty"` // Uuid of the cloud target. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cloud_target_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cloud_target_list.go index 267de23e0f..3d18b3f0a0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cloud_target_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cloud_target_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cloud_target_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cloud_target_response.go index 115fc7c990..069a73c6df 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cloud_target_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cloud_target_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster.go index 8fa0ebb9a0..743309063b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_event.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_event.go index 41b223c7bd..129555f8ed 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_event.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_event_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_event_list.go index 2d6567cf64..787a2a373c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_event_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_event_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_event_relationship.go index 30a778bad1..af3c130209 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_event_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_event_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_event_response.go index f0a634cdf3..d670b92b92 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_event_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_list.go index ec346fb3e8..5322c3b58c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_relationship.go index 8757928961..71ceb36ca2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_response.go index c403b96b58..fbc032529a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_snap_mirror_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_snap_mirror_policy.go index 5efb37c6ce..0d1dd555b4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_snap_mirror_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_snap_mirror_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_snap_mirror_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_snap_mirror_policy_list.go index 530aa1def0..5fe20ac836 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_snap_mirror_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_snap_mirror_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_snap_mirror_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_snap_mirror_policy_response.go index d0bded12fb..b8be77b009 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_snap_mirror_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_snap_mirror_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_snapshot_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_snapshot_policy.go index 0d5a3016c7..abe6b37578 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_snapshot_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_snapshot_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_snapshot_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_snapshot_policy_list.go index 975afac6b7..0941560af4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_snapshot_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_snapshot_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_snapshot_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_snapshot_policy_response.go index 318812a514..d3a255185c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_snapshot_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_cluster_snapshot_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface.go index 1b36ecb5c5..292e618931 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_event.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_event.go index dd99cbf029..46c6dcf3c5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_event.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_event_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_event_list.go index 8a7fd089f9..83396cbaef 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_event_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_event_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_event_relationship.go index 99e90cef56..bbfdb8ea98 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_event_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_event_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_event_response.go index f61cb773d0..903cd220fb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_event_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_list.go index e5ac635cf1..8356be6cea 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_relationship.go index 82cc3feb94..bcae4d1f8f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_response.go index 1b36e73cad..cc495e301b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_data_ip_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_disk_event.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_disk_event.go index cccd4bd3a3..7977722639 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_disk_event.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_disk_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_disk_event_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_disk_event_list.go index 3877ef6605..86fa57196c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_disk_event_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_disk_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_disk_event_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_disk_event_relationship.go index a723c4cf3e..f8700d3e5b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_disk_event_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_disk_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_disk_event_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_disk_event_response.go index 6c077d2edb..ac73d71b52 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_disk_event_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_disk_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port.go index 9454c21a62..b68056fa51 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type StorageNetAppEthernetPort struct { // Status of port to determine if its enabled or not. Enabled *string `json:"Enabled,omitempty"` // MAC address of the port available in storage array. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"` // Maximum transmission unit of the physical port available in storage array. Mtu *int64 `json:"Mtu,omitempty"` // Name of the port available in storage array. @@ -52,7 +52,7 @@ type StorageNetAppEthernetPort struct { // Type of the port available in storage array. * `LAG` - Storage port of type lag. * `physical` - LIFs can be configured directly on physical ports. * `VLAN` - A logical port that receives and sends VLAN-tagged (IEEE 802.1Q standard) traffic. VLAN port characteristics include the VLAN ID for the port. Type *string `json:"Type,omitempty"` // Universally unique identifier of the physical port. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` ArrayController NullableStorageNetAppNodeRelationship `json:"ArrayController,omitempty"` // An array of relationships to storageNetAppEthernetPortEvent resources. Events []StorageNetAppEthernetPortEventRelationship `json:"Events,omitempty"` @@ -790,7 +790,7 @@ func (o *StorageNetAppEthernetPort) UnmarshalJSON(data []byte) (err error) { // Status of port to determine if its enabled or not. Enabled *string `json:"Enabled,omitempty"` // MAC address of the port available in storage array. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"` // Maximum transmission unit of the physical port available in storage array. Mtu *int64 `json:"Mtu,omitempty"` // Name of the port available in storage array. @@ -809,7 +809,7 @@ func (o *StorageNetAppEthernetPort) UnmarshalJSON(data []byte) (err error) { // Type of the port available in storage array. * `LAG` - Storage port of type lag. * `physical` - LIFs can be configured directly on physical ports. * `VLAN` - A logical port that receives and sends VLAN-tagged (IEEE 802.1Q standard) traffic. VLAN port characteristics include the VLAN ID for the port. Type *string `json:"Type,omitempty"` // Universally unique identifier of the physical port. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` ArrayController NullableStorageNetAppNodeRelationship `json:"ArrayController,omitempty"` // An array of relationships to storageNetAppEthernetPortEvent resources. Events []StorageNetAppEthernetPortEventRelationship `json:"Events,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_event.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_event.go index 54cf39f083..09ef5a3b48 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_event.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_event_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_event_list.go index 97da849c7f..07a0fc39c3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_event_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_event_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_event_relationship.go index 04b81967b8..4c4daac4e2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_event_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_event_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_event_response.go index 8cec65ff0e..49ac59c116 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_event_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_lag.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_lag.go index 8410eb1fec..3f8de4f7af 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_lag.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_lag.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_list.go index 66e7b34ce5..72cfa83de5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_relationship.go index 375024d567..1ff1fa2e5f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_response.go index c0d2c94965..7a8968329e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_vlan.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_vlan.go index 1c2795b688..c5037657f6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_vlan.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ethernet_port_vlan.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_export_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_export_policy.go index d4cd387601..eb406f3c9c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_export_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_export_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type StorageNetAppExportPolicy struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Unique identity of the device. - ClusterUuid *string `json:"ClusterUuid,omitempty"` + ClusterUuid *string `json:"ClusterUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` NetAppExportPolicyRule []StorageNetAppExportPolicyRule `json:"NetAppExportPolicyRule,omitempty"` // ID for the Export Policy. PolicyId *int64 `json:"PolicyId,omitempty"` @@ -438,7 +438,7 @@ func (o *StorageNetAppExportPolicy) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Unique identity of the device. - ClusterUuid *string `json:"ClusterUuid,omitempty"` + ClusterUuid *string `json:"ClusterUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` NetAppExportPolicyRule []StorageNetAppExportPolicyRule `json:"NetAppExportPolicyRule,omitempty"` // ID for the Export Policy. PolicyId *int64 `json:"PolicyId,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_export_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_export_policy_list.go index 07291e3382..142510e4a2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_export_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_export_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_export_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_export_policy_response.go index 4c06f9b07f..f8682db466 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_export_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_export_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_export_policy_rule.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_export_policy_rule.go index 7731c22b56..6e14286458 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_export_policy_rule.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_export_policy_rule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface.go index 03c9002f1a..05b362c189 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -38,7 +38,7 @@ type StorageNetAppFcInterface struct { // The storage virtual machine name for the interface. SvmName *string `json:"SvmName,omitempty"` // Uuid of NetApp FC Interface. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The parent volume name for the interface. VolumeName *string `json:"VolumeName,omitempty"` ArrayController NullableStorageNetAppNodeRelationship `json:"ArrayController,omitempty"` @@ -610,7 +610,7 @@ func (o *StorageNetAppFcInterface) UnmarshalJSON(data []byte) (err error) { // The storage virtual machine name for the interface. SvmName *string `json:"SvmName,omitempty"` // Uuid of NetApp FC Interface. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The parent volume name for the interface. VolumeName *string `json:"VolumeName,omitempty"` ArrayController NullableStorageNetAppNodeRelationship `json:"ArrayController,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_event.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_event.go index 8568c4c90f..9294b95575 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_event.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_event_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_event_list.go index 0807242797..8122862dd1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_event_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_event_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_event_relationship.go index 26e5e2804f..d1539c6591 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_event_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_event_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_event_response.go index b5c43ae74e..2b6198893e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_event_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_list.go index f500afd018..885024adca 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_relationship.go index 4c937ebd7f..a056da9309 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_response.go index 8f5b047db3..45e640c540 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port.go index 076df1ea6c..3023ba0eb0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -39,7 +39,7 @@ type StorageNetAppFcPort struct { // State of the port available in storage array. * `Unknown` - Default unknown port state. * `StartUp` - The port in the storage array is booting up. * `LinkNotConnected` - The port has finished initialization, but a link with the fabric is not established. * `Online` - The port is initialized and a link with the fabric has been established. * `LinkDisconnected` - The link on this port is currently not established. * `OfflineUser` - The port is administratively disabled. * `OfflineSystem` - The port is set to offline by the system. This happens when the port encounters too many errors. * `NodeOffline` - The state information for the port cannot be retrieved. The node is offline or inaccessible. State *string `json:"State,omitempty"` // Universally unique identifier of the FC port. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` ArrayController NullableStorageNetAppNodeRelationship `json:"ArrayController,omitempty"` // An array of relationships to storageNetAppFcPortEvent resources. Events []StorageNetAppFcPortEventRelationship `json:"Events,omitempty"` @@ -513,7 +513,7 @@ func (o *StorageNetAppFcPort) UnmarshalJSON(data []byte) (err error) { // State of the port available in storage array. * `Unknown` - Default unknown port state. * `StartUp` - The port in the storage array is booting up. * `LinkNotConnected` - The port has finished initialization, but a link with the fabric is not established. * `Online` - The port is initialized and a link with the fabric has been established. * `LinkDisconnected` - The link on this port is currently not established. * `OfflineUser` - The port is administratively disabled. * `OfflineSystem` - The port is set to offline by the system. This happens when the port encounters too many errors. * `NodeOffline` - The state information for the port cannot be retrieved. The node is offline or inaccessible. State *string `json:"State,omitempty"` // Universally unique identifier of the FC port. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` ArrayController NullableStorageNetAppNodeRelationship `json:"ArrayController,omitempty"` // An array of relationships to storageNetAppFcPortEvent resources. Events []StorageNetAppFcPortEventRelationship `json:"Events,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_event.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_event.go index 1e09310688..cf36d36f3c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_event.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_event_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_event_list.go index eff6b98c1a..19771689f9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_event_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_event_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_event_relationship.go index f4fffc55e9..1c94d09928 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_event_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_event_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_event_response.go index 1868bff809..c76b9e9e38 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_event_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_list.go index bf3d50b824..318863b94d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_relationship.go index f8303fc9ff..71e9d84a70 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_response.go index f4a5d9ff6a..ba2b022c2c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_fc_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_high_availability.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_high_availability.go index aa6a6aaab5..a2dadf2bd1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_high_availability.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_high_availability.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_initiator_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_initiator_group.go index bfd567498b..2acbea35a2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_initiator_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_initiator_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type StorageNetAppInitiatorGroup struct { // The storage virtual machine name for the initiator group. SvmName *string `json:"SvmName,omitempty"` // Universally unique identifier of the LUN. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` AdditionalProperties map[string]interface{} } @@ -358,7 +358,7 @@ func (o *StorageNetAppInitiatorGroup) UnmarshalJSON(data []byte) (err error) { // The storage virtual machine name for the initiator group. SvmName *string `json:"SvmName,omitempty"` // Universally unique identifier of the LUN. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_initiator_group_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_initiator_group_list.go index 8ae8736bd7..b7f8e25e69 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_initiator_group_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_initiator_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_initiator_group_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_initiator_group_relationship.go index 2072ccb1d1..0a9bcb9ea0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_initiator_group_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_initiator_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_initiator_group_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_initiator_group_response.go index 532d5892f2..d04a086393 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_initiator_group_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_initiator_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface.go index ecb1b11056..3a3e6149ac 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -45,12 +45,12 @@ type StorageNetAppIpInterface struct { // Service policy name of IP interface. ServicePolicyName *string `json:"ServicePolicyName,omitempty"` // Service policy UUID of IP interface. - ServicePolicyUuid *string `json:"ServicePolicyUuid,omitempty"` + ServicePolicyUuid *string `json:"ServicePolicyUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Services []string `json:"Services,omitempty"` // The state of the IP interface. * `down` - An inactive port is listed as Down. * `up` - An active port is listed as Up. * `present` - An active port is listed as present. State *string `json:"State,omitempty"` // Uuid of NetApp IP Interface. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` ArrayController NullableStorageNetAppNodeRelationship `json:"ArrayController,omitempty"` // An array of relationships to storageNetAppIpInterfaceEvent resources. Events []StorageNetAppIpInterfaceEventRelationship `json:"Events,omitempty"` @@ -835,12 +835,12 @@ func (o *StorageNetAppIpInterface) UnmarshalJSON(data []byte) (err error) { // Service policy name of IP interface. ServicePolicyName *string `json:"ServicePolicyName,omitempty"` // Service policy UUID of IP interface. - ServicePolicyUuid *string `json:"ServicePolicyUuid,omitempty"` + ServicePolicyUuid *string `json:"ServicePolicyUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Services []string `json:"Services,omitempty"` // The state of the IP interface. * `down` - An inactive port is listed as Down. * `up` - An active port is listed as Up. * `present` - An active port is listed as present. State *string `json:"State,omitempty"` // Uuid of NetApp IP Interface. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` ArrayController NullableStorageNetAppNodeRelationship `json:"ArrayController,omitempty"` // An array of relationships to storageNetAppIpInterfaceEvent resources. Events []StorageNetAppIpInterfaceEventRelationship `json:"Events,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_event.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_event.go index 40ec048128..c01710daf0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_event.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_event_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_event_list.go index 928624cb8a..698972737d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_event_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_event_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_event_relationship.go index 325fa053d1..eae95dd7e7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_event_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_event_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_event_response.go index 678108d951..44ea438e7f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_event_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_list.go index 0b1951db00..3f7a4fd7e0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_relationship.go index 3ce0572620..dec1525d54 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_response.go index 060eb59313..60e11df35b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ip_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_iscsi_service.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_iscsi_service.go index cb6f4915bd..b1626719d8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_iscsi_service.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_iscsi_service.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type StorageNetAppIscsiService struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Unique identifier for the NetApp Storage Virtual Machine. - SvmUuid *string `json:"SvmUuid,omitempty"` + SvmUuid *string `json:"SvmUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The iSCSI target alias of the iSCSI service. TargetAlias *string `json:"TargetAlias,omitempty"` // The iSCSI target name of the iSCSI service. @@ -354,7 +354,7 @@ func (o *StorageNetAppIscsiService) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Unique identifier for the NetApp Storage Virtual Machine. - SvmUuid *string `json:"SvmUuid,omitempty"` + SvmUuid *string `json:"SvmUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The iSCSI target alias of the iSCSI service. TargetAlias *string `json:"TargetAlias,omitempty"` // The iSCSI target name of the iSCSI service. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_iscsi_service_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_iscsi_service_list.go index af82478bc6..40dff5340c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_iscsi_service_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_iscsi_service_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_iscsi_service_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_iscsi_service_response.go index 6a75d8c8c7..e753d0d901 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_iscsi_service_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_iscsi_service_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_license.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_license.go index 9a62add8d3..d748fdf90f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_license.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_license.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type StorageNetAppLicense struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Unique identity of the device. - ClusterUuid *string `json:"ClusterUuid,omitempty"` + ClusterUuid *string `json:"ClusterUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The name of the license package. Name *string `json:"Name,omitempty"` // Summary state of license package based on all installed licenses. * `Unknown` - The summary state of the license package is unknown. * `Compliant` - The summary state of the license package is compliant. * `Noncompliant` - The summary state of the license package is noncompliant. * `Unlicensed` - The summary state of the license package is unlicensed. @@ -354,7 +354,7 @@ func (o *StorageNetAppLicense) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Unique identity of the device. - ClusterUuid *string `json:"ClusterUuid,omitempty"` + ClusterUuid *string `json:"ClusterUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The name of the license package. Name *string `json:"Name,omitempty"` // Summary state of license package based on all installed licenses. * `Unknown` - The summary state of the license package is unknown. * `Compliant` - The summary state of the license package is compliant. * `Noncompliant` - The summary state of the license package is noncompliant. * `Unlicensed` - The summary state of the license package is unlicensed. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_license_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_license_list.go index b005d7178b..dd08192239 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_license_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_license_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_license_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_license_response.go index f354120476..c27c2d2bb3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_license_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_license_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun.go index fdb36ae0f8..024f26b69b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -49,7 +49,7 @@ type StorageNetAppLun struct { // The storage virtual machine name for the lun. SvmName *string `json:"SvmName,omitempty"` // Universally unique identifier of the LUN. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The parent volume name for the lun. VolumeName *string `json:"VolumeName,omitempty"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` @@ -833,7 +833,7 @@ func (o *StorageNetAppLun) UnmarshalJSON(data []byte) (err error) { // The storage virtual machine name for the lun. SvmName *string `json:"SvmName,omitempty"` // Universally unique identifier of the LUN. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The parent volume name for the lun. VolumeName *string `json:"VolumeName,omitempty"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_event.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_event.go index f8fc4f726f..1e3e5bc8f8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_event.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_event_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_event_list.go index dbf781df9c..dff13b5bf3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_event_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_event_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_event_relationship.go index b05cc5d2b3..094fc04caf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_event_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_event_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_event_response.go index 681d1f23d5..2bac8f9d44 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_event_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_list.go index e8754e8021..00525cb7cc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_map.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_map.go index af130d20c4..abbf1c394c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_map.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_map.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type StorageNetAppLunMap struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // UUID of the initiator group. - IgroupUuid *string `json:"IgroupUuid,omitempty"` + IgroupUuid *string `json:"IgroupUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Universally unique identifier of the LUN. - LunUuid *string `json:"LunUuid,omitempty"` + LunUuid *string `json:"LunUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // An array of relationships to storageNetAppInitiatorGroup resources. Host []StorageNetAppInitiatorGroupRelationship `json:"Host,omitempty"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` @@ -402,9 +402,9 @@ func (o *StorageNetAppLunMap) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // UUID of the initiator group. - IgroupUuid *string `json:"IgroupUuid,omitempty"` + IgroupUuid *string `json:"IgroupUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Universally unique identifier of the LUN. - LunUuid *string `json:"LunUuid,omitempty"` + LunUuid *string `json:"LunUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // An array of relationships to storageNetAppInitiatorGroup resources. Host []StorageNetAppInitiatorGroupRelationship `json:"Host,omitempty"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_map_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_map_list.go index 0c077395c5..a948ccccc4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_map_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_map_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_map_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_map_response.go index 8b93c9074e..c849f0948b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_map_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_map_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_relationship.go index 739c313036..8e1dad5a85 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_response.go index cd8dd5a4a7..661bcdb7e0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_lun_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_namespace.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_namespace.go index d60e5b5c38..a54332151b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_namespace.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_namespace.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -46,7 +46,7 @@ type StorageNetAppNamespace struct { // The storage virtual machine name for the NVMe namespace. SvmName *string `json:"SvmName,omitempty"` // Universally unique identifier of the NVMe namespace. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The volume name in which the NVMe namespace is located. VolumeName *string `json:"VolumeName,omitempty"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` @@ -724,7 +724,7 @@ func (o *StorageNetAppNamespace) UnmarshalJSON(data []byte) (err error) { // The storage virtual machine name for the NVMe namespace. SvmName *string `json:"SvmName,omitempty"` // Universally unique identifier of the NVMe namespace. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The volume name in which the NVMe namespace is located. VolumeName *string `json:"VolumeName,omitempty"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_namespace_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_namespace_list.go index 9d7ac1e9fd..5df9b01644 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_namespace_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_namespace_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_namespace_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_namespace_response.go index 26a9344292..3f530802fa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_namespace_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_namespace_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_nfs_client.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_nfs_client.go index eba9571a14..c24a651128 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_nfs_client.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_nfs_client.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -39,11 +39,11 @@ type StorageNetAppNfsClient struct { // The storage virtual machine name for the NFS client. SvmName *string `json:"SvmName,omitempty"` // Unique identifier for the NetApp Storage Virtual Machine. - SvmUuid *string `json:"SvmUuid,omitempty"` + SvmUuid *string `json:"SvmUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The parent volume name for the NFS client. VolumeName *string `json:"VolumeName,omitempty"` // Unique identifier for the NetApp Volume. - VolumeUuid *string `json:"VolumeUuid,omitempty"` + VolumeUuid *string `json:"VolumeUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` StorageContainer NullableStorageNetAppVolumeRelationship `json:"StorageContainer,omitempty"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` AdditionalProperties map[string]interface{} @@ -596,11 +596,11 @@ func (o *StorageNetAppNfsClient) UnmarshalJSON(data []byte) (err error) { // The storage virtual machine name for the NFS client. SvmName *string `json:"SvmName,omitempty"` // Unique identifier for the NetApp Storage Virtual Machine. - SvmUuid *string `json:"SvmUuid,omitempty"` + SvmUuid *string `json:"SvmUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The parent volume name for the NFS client. VolumeName *string `json:"VolumeName,omitempty"` // Unique identifier for the NetApp Volume. - VolumeUuid *string `json:"VolumeUuid,omitempty"` + VolumeUuid *string `json:"VolumeUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` StorageContainer NullableStorageNetAppVolumeRelationship `json:"StorageContainer,omitempty"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_nfs_client_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_nfs_client_list.go index 737f7df2e8..5abdbd5a7e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_nfs_client_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_nfs_client_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_nfs_client_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_nfs_client_response.go index d0d5d913a4..ae53fd0d43 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_nfs_client_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_nfs_client_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_nfs_service.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_nfs_service.go index af6ac3d709..22377b60df 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_nfs_service.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_nfs_service.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type StorageNetAppNfsService struct { // Specifies whether NFSv4.0 protocol is enabled. NfsV4Enabled *bool `json:"NfsV4Enabled,omitempty"` // Unique identifier for the NetApp Storage Virtual Machine. - SvmUuid *string `json:"SvmUuid,omitempty"` + SvmUuid *string `json:"SvmUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` AdditionalProperties map[string]interface{} } @@ -397,7 +397,7 @@ func (o *StorageNetAppNfsService) UnmarshalJSON(data []byte) (err error) { // Specifies whether NFSv4.0 protocol is enabled. NfsV4Enabled *bool `json:"NfsV4Enabled,omitempty"` // Unique identifier for the NetApp Storage Virtual Machine. - SvmUuid *string `json:"SvmUuid,omitempty"` + SvmUuid *string `json:"SvmUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_nfs_service_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_nfs_service_list.go index 5f416b2322..614a1d9f45 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_nfs_service_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_nfs_service_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_nfs_service_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_nfs_service_response.go index f297039fc6..bc4dd63f65 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_nfs_service_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_nfs_service_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node.go index 30685cebf1..909bb2c81a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -42,7 +42,7 @@ type StorageNetAppNode struct { // The system id of the NetApp Node. Systemid *string `json:"Systemid,omitempty"` // Universally unique identifier of NetApp Node. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` // An array of relationships to storageNetAppNodeEvent resources. Events []StorageNetAppNodeEventRelationship `json:"Events,omitempty"` @@ -603,7 +603,7 @@ func (o *StorageNetAppNode) UnmarshalJSON(data []byte) (err error) { // The system id of the NetApp Node. Systemid *string `json:"Systemid,omitempty"` // Universally unique identifier of NetApp Node. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` // An array of relationships to storageNetAppNodeEvent resources. Events []StorageNetAppNodeEventRelationship `json:"Events,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_cdp_neighbor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_cdp_neighbor.go index a95a6fc766..a2e8f50218 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_cdp_neighbor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_cdp_neighbor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_cdp_neighbor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_cdp_neighbor_list.go index 4070d609c2..bebf1567d8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_cdp_neighbor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_cdp_neighbor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_cdp_neighbor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_cdp_neighbor_response.go index 93f50e2fb4..bfab9dfb8f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_cdp_neighbor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_cdp_neighbor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_event.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_event.go index d3ccd5b92a..ce9c3a22cc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_event.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_event_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_event_list.go index b7533a0134..133bc92453 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_event_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_event_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_event_relationship.go index 7b1d75c107..286e8bfc3a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_event_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_event_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_event_response.go index 167e6b031a..e926048892 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_event_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_list.go index 9671726c5c..ff631d0edc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_relationship.go index eb68a8efec..cbec3a21eb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_response.go index 65553e5891..085ea48762 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_node_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface.go index 5975ebaba1..b450444060 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event.go index 237a170113..1c152f49d7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event_list.go index d8d83a31cf..0ce9897bcc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event_relationship.go index fee2947066..2134f8baee 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event_response.go index 6c6170c1e1..a91afb632b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_list.go index 00cfc1a1aa..56cad830ad 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_relationship.go index 45d67240aa..151904e1d6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_response.go index 4388fd4682..37630b9deb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_non_data_ip_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ntp_server.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ntp_server.go index 6e38343512..eaab687f89 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ntp_server.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ntp_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -34,7 +34,7 @@ type StorageNetAppNtpServer struct { // NTP symmetric authentication key identifier or index number (ID). AuthenticationKeyId *string `json:"AuthenticationKeyId,omitempty"` // Unique identity of the device. - ClusterUuid *string `json:"ClusterUuid,omitempty"` + ClusterUuid *string `json:"ClusterUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Indicates whether or not NTP symmetric authentication is enabled. IsAuthenticationEnabled *string `json:"IsAuthenticationEnabled,omitempty"` // NTP server host name, IPv4, or IPv6 address. @@ -474,7 +474,7 @@ func (o *StorageNetAppNtpServer) UnmarshalJSON(data []byte) (err error) { // NTP symmetric authentication key identifier or index number (ID). AuthenticationKeyId *string `json:"AuthenticationKeyId,omitempty"` // Unique identity of the device. - ClusterUuid *string `json:"ClusterUuid,omitempty"` + ClusterUuid *string `json:"ClusterUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Indicates whether or not NTP symmetric authentication is enabled. IsAuthenticationEnabled *string `json:"IsAuthenticationEnabled,omitempty"` // NTP server host name, IPv4, or IPv6 address. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ntp_server_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ntp_server_list.go index ad0955115e..9294378971 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ntp_server_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ntp_server_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ntp_server_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ntp_server_response.go index 595789d4db..62fd53ca4c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ntp_server_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_ntp_server_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_performance_metrics_average.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_performance_metrics_average.go index ae12f0d2a5..b72cb116a0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_performance_metrics_average.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_performance_metrics_average.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_port.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_port.go index 689f2aa511..339f81dc61 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_port.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_qtree.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_qtree.go index f52e00af4d..5f27af78de 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_qtree.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_qtree.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -45,7 +45,7 @@ type StorageNetAppQtree struct { // The parent volume name for the qtree. VolumeName *string `json:"VolumeName,omitempty"` // NetApp Volume uuid, unique identifier for the NetApp volume. - VolumeUuid *string `json:"VolumeUuid,omitempty"` + VolumeUuid *string `json:"VolumeUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` StorageContainer NullableStorageNetAppVolumeRelationship `json:"StorageContainer,omitempty"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` AdditionalProperties map[string]interface{} @@ -639,7 +639,7 @@ func (o *StorageNetAppQtree) UnmarshalJSON(data []byte) (err error) { // The parent volume name for the qtree. VolumeName *string `json:"VolumeName,omitempty"` // NetApp Volume uuid, unique identifier for the NetApp volume. - VolumeUuid *string `json:"VolumeUuid,omitempty"` + VolumeUuid *string `json:"VolumeUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` StorageContainer NullableStorageNetAppVolumeRelationship `json:"StorageContainer,omitempty"` Tenant NullableStorageNetAppStorageVmRelationship `json:"Tenant,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_qtree_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_qtree_list.go index 9055133338..5782156217 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_qtree_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_qtree_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_qtree_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_qtree_response.go index 7fe5966ef1..e01607c9be 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_qtree_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_qtree_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_schedule.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_schedule.go index c3c18b4a7c..be488b5f98 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_schedule.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_schedule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type StorageNetAppSchedule struct { // The type of the schedule (cron or interval). Type *string `json:"Type,omitempty"` // Universally unique identifier of the schedule. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` AdditionalProperties map[string]interface{} } @@ -358,7 +358,7 @@ func (o *StorageNetAppSchedule) UnmarshalJSON(data []byte) (err error) { // The type of the schedule (cron or interval). Type *string `json:"Type,omitempty"` // Universally unique identifier of the schedule. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_schedule_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_schedule_list.go index 4c67f589e7..58ca20558a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_schedule_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_schedule_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_schedule_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_schedule_response.go index b993921d6a..b20e73f75e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_schedule_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_schedule_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_sensor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_sensor.go index 69fa0b7e10..f3a8507555 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_sensor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_sensor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_sensor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_sensor_list.go index 18944b8a47..71983f6509 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_sensor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_sensor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_sensor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_sensor_response.go index ff7cb316e3..9c939f5e01 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_sensor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_sensor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_snap_mirror_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_snap_mirror_relationship.go index 893ccf1951..35ac218d4b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_snap_mirror_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_snap_mirror_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -39,13 +39,13 @@ type StorageNetAppSnapMirrorRelationship struct { // SnapMirror policy type can be async, sync, or continuous. PolicyType *string `json:"PolicyType,omitempty"` // Uuid of the NetApp SnapMirror policy. - PolicyUuid *string `json:"PolicyUuid,omitempty"` + PolicyUuid *string `json:"PolicyUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Path to the source endpoint of a SnapMirror relationship. Examples: ONTAP FlexVol/FlexGroup - svm1:volume1; ONTAP SVM - svm1: ; ONTAP Consistency Group - svm1:/cg/cg_name. SourcePath *string `json:"SourcePath,omitempty"` // State of the relationship. State *string `json:"State,omitempty"` // Uuid of the NetApp SnapMirror relationship. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` DestinationTenant NullableStorageNetAppStorageVmRelationship `json:"DestinationTenant,omitempty"` Policy NullableStorageNetAppBaseSnapMirrorPolicyRelationship `json:"Policy,omitempty"` @@ -680,13 +680,13 @@ func (o *StorageNetAppSnapMirrorRelationship) UnmarshalJSON(data []byte) (err er // SnapMirror policy type can be async, sync, or continuous. PolicyType *string `json:"PolicyType,omitempty"` // Uuid of the NetApp SnapMirror policy. - PolicyUuid *string `json:"PolicyUuid,omitempty"` + PolicyUuid *string `json:"PolicyUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Path to the source endpoint of a SnapMirror relationship. Examples: ONTAP FlexVol/FlexGroup - svm1:volume1; ONTAP SVM - svm1: ; ONTAP Consistency Group - svm1:/cg/cg_name. SourcePath *string `json:"SourcePath,omitempty"` // State of the relationship. State *string `json:"State,omitempty"` // Uuid of the NetApp SnapMirror relationship. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` DestinationTenant NullableStorageNetAppStorageVmRelationship `json:"DestinationTenant,omitempty"` Policy NullableStorageNetAppBaseSnapMirrorPolicyRelationship `json:"Policy,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_snap_mirror_relationship_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_snap_mirror_relationship_list.go index 382aaf5f09..3234cc0e9a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_snap_mirror_relationship_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_snap_mirror_relationship_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_snap_mirror_relationship_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_snap_mirror_relationship_response.go index f0c17c0089..a1d7f3b814 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_snap_mirror_relationship_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_snap_mirror_relationship_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_snapshot_policy_schedule.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_snapshot_policy_schedule.go index 4e5676e6d4..be40f0babd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_snapshot_policy_schedule.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_snapshot_policy_schedule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_storage_cluster_efficiency.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_storage_cluster_efficiency.go index dc9ec6385e..170942b0cd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_storage_cluster_efficiency.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_storage_cluster_efficiency.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_storage_utilization.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_storage_utilization.go index 873e77c086..f63d4059d4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_storage_utilization.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_storage_utilization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_storage_vm.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_storage_vm.go index 085eae9b07..e9bcb556ca 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_storage_vm.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_storage_vm.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_storage_vm_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_storage_vm_list.go index 424f3a7cd5..b36d343d84 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_storage_vm_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_storage_vm_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_storage_vm_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_storage_vm_relationship.go index f23a7d31df..0aefbae996 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_storage_vm_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_storage_vm_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_storage_vm_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_storage_vm_response.go index 7b1ebea19c..f2f16c4d72 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_storage_vm_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_storage_vm_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_event.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_event.go index dc815e19dd..185ef02b94 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_event.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_event_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_event_list.go index 41d58b845b..07ae0c968f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_event_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_event_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_event_relationship.go index 5de6fb710c..6e582f7145 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_event_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_event_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_event_response.go index 19b4258ca5..1affc4a242 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_event_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_snap_mirror_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_snap_mirror_policy.go index 827a913585..2d3d2b3990 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_snap_mirror_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_snap_mirror_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_snap_mirror_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_snap_mirror_policy_list.go index 81361e96df..4083385222 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_snap_mirror_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_snap_mirror_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_snap_mirror_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_snap_mirror_policy_response.go index 750510abba..b13b83cb06 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_snap_mirror_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_snap_mirror_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_snapshot_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_snapshot_policy.go index 1caca05f82..292904bc55 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_snapshot_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_snapshot_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_snapshot_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_snapshot_policy_list.go index 723136daad..484a81defa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_snapshot_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_snapshot_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_snapshot_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_snapshot_policy_response.go index 32ce931dfc..ac9895fe93 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_snapshot_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_svm_snapshot_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume.go index 0be8c64ba6..31c14d64c6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -44,7 +44,7 @@ type StorageNetAppVolume struct { // The name of the Snapshot Policy. SnapshotPolicyName *string `json:"SnapshotPolicyName,omitempty"` // The UUID of the Snapshot Policy. - SnapshotPolicyUuid *string `json:"SnapshotPolicyUuid,omitempty"` + SnapshotPolicyUuid *string `json:"SnapshotPolicyUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The space that has been set aside as a reserve for Snapshot copy usage represented as a percent. SnapshotReservePercent *int64 `json:"SnapshotReservePercent,omitempty"` // The total space used by Snapshot copies in the volume represented in bytes. @@ -58,7 +58,7 @@ type StorageNetAppVolume struct { // NetApp volume type. The volume type can be Read-write, Data-protection, or Load-sharing. * `data-protection` - Prevents modification of the data on the Volume. * `read-write` - Data on the Volume can be modified. * `load-sharing` - The volume type is Load Sharing DP. Type *string `json:"Type,omitempty"` // Universally unique identifier of a NetApp Volume. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` // An array of relationships to storageNetAppAggregate resources. DiskPool []StorageNetAppAggregateRelationship `json:"DiskPool,omitempty"` @@ -972,7 +972,7 @@ func (o *StorageNetAppVolume) UnmarshalJSON(data []byte) (err error) { // The name of the Snapshot Policy. SnapshotPolicyName *string `json:"SnapshotPolicyName,omitempty"` // The UUID of the Snapshot Policy. - SnapshotPolicyUuid *string `json:"SnapshotPolicyUuid,omitempty"` + SnapshotPolicyUuid *string `json:"SnapshotPolicyUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The space that has been set aside as a reserve for Snapshot copy usage represented as a percent. SnapshotReservePercent *int64 `json:"SnapshotReservePercent,omitempty"` // The total space used by Snapshot copies in the volume represented in bytes. @@ -986,7 +986,7 @@ func (o *StorageNetAppVolume) UnmarshalJSON(data []byte) (err error) { // NetApp volume type. The volume type can be Read-write, Data-protection, or Load-sharing. * `data-protection` - Prevents modification of the data on the Volume. * `read-write` - Data on the Volume can be modified. * `load-sharing` - The volume type is Load Sharing DP. Type *string `json:"Type,omitempty"` // Universally unique identifier of a NetApp Volume. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` // An array of relationships to storageNetAppAggregate resources. DiskPool []StorageNetAppAggregateRelationship `json:"DiskPool,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_event.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_event.go index af6cec4259..b56205b5ce 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_event.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_event.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_event_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_event_list.go index 39226b4c91..2442015523 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_event_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_event_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_event_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_event_relationship.go index ddf58dc92b..9e9450fbab 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_event_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_event_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_event_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_event_response.go index 4757f4edf1..2ecf622079 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_event_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_event_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_list.go index 644df80655..5e12bdf5ef 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_relationship.go index 3427e8e045..4174054434 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_response.go index 66ed850f81..3a41f0ebd4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_snapshot.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_snapshot.go index 6e754df9e3..2b20cf8d09 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_snapshot.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_snapshot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type StorageNetAppVolumeSnapshot struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Universally unique identifier of the volume snapshot. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` StorageContainer NullableStorageNetAppVolumeRelationship `json:"StorageContainer,omitempty"` AdditionalProperties map[string]interface{} @@ -327,7 +327,7 @@ func (o *StorageNetAppVolumeSnapshot) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Universally unique identifier of the volume snapshot. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` Array NullableStorageNetAppClusterRelationship `json:"Array,omitempty"` StorageContainer NullableStorageNetAppVolumeRelationship `json:"StorageContainer,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_snapshot_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_snapshot_list.go index af9cf7a920..0481c226ef 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_snapshot_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_snapshot_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_snapshot_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_snapshot_response.go index 52075853d8..4d215efa09 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_snapshot_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_net_app_volume_snapshot_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_dedicated_hot_spare_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_dedicated_hot_spare_configuration.go index b25b249162..19e8cfd1af 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_dedicated_hot_spare_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_dedicated_hot_spare_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_physical_disk_state.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_physical_disk_state.go index 1584276086..de0155de4e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_physical_disk_state.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_physical_disk_state.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_raid_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_raid_configuration.go index a9509f41d0..54c22acad3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_raid_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_raid_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_raid_configuration_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_raid_configuration_list.go index e52c497d1c..92514a81e4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_raid_configuration_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_raid_configuration_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_raid_configuration_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_raid_configuration_response.go index 3644a184a7..46d3d1a375 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_raid_configuration_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_raid_configuration_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_raid_drive_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_raid_drive_group.go index 6fa26338c4..eb55f831f5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_raid_drive_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_raid_drive_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_virtual_drive_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_virtual_drive_configuration.go index 8626be03e5..ad04ea42cf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_virtual_drive_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_nvme_virtual_drive_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk.go index ea0ae5385f..ae77f7f2f2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_extension.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_extension.go index 3e04d0aba2..5b871891a1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_extension.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_extension.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_extension_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_extension_list.go index d5eb82053e..386c55f3d8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_extension_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_extension_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_extension_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_extension_relationship.go index 59ccb3792f..acf67a67b3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_extension_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_extension_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_extension_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_extension_response.go index 832b55ffe7..16cf1a1495 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_extension_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_extension_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_list.go index 75dbd3e7da..e233c9bcbc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_relationship.go index ab57bbbdb4..2a94788bae 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_response.go index 57f2bdb410..d6e4f586aa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_usage.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_usage.go index 0daafdb33e..cc894b9768 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_usage.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_usage.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_usage_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_usage_list.go index 53352f6e1d..73a998f629 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_usage_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_usage_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_usage_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_usage_relationship.go index 4bbc4106ef..13da295890 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_usage_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_usage_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_usage_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_usage_response.go index b874bd7441..3c99624408 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_usage_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_physical_disk_usage_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array.go index 20f9a16624..eaf9dca397 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_alerts.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_alerts.go index a95e365d78..ca39b849a8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_alerts.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_alerts.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_alerts_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_alerts_list.go index 0eaebd2996..6d6971e642 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_alerts_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_alerts_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_alerts_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_alerts_response.go index c7aec4e84c..55d2b38c6a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_alerts_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_alerts_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_list.go index c44d480f7f..e9fb7286c2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_relationship.go index d729765123..581f6be74d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_response.go index 3a3a03ede7..e11e903c5e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_utilization.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_utilization.go index 5b85d3aa3e..010eb89709 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_utilization.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_array_utilization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_controller.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_controller.go index 76da5e503a..444535b688 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_controller.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_controller.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_controller_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_controller_list.go index 100aa68d23..7fc60e2e22 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_controller_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_controller_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_controller_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_controller_relationship.go index 50029fcf02..499160c422 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_controller_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_controller_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_controller_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_controller_response.go index 63ce37ad4e..46dedf69bd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_controller_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_controller_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_disk.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_disk.go index eb5d2cea4c..c7488d2bcc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_disk.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_disk_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_disk_list.go index 8fdda11375..7c1d28062d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_disk_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_disk_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_disk_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_disk_response.go index c9a7a2dc39..d05b191035 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_disk_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_disk_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_disk_utilization.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_disk_utilization.go index 08efe916a1..8854e045dd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_disk_utilization.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_disk_utilization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host.go index 16c35f314d..0770918904 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_group.go index 048a25c0c9..0562e54e63 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_group_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_group_list.go index 4f27eaf176..b1055da022 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_group_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_group_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_group_relationship.go index 6b841251e9..b2bdbc40c1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_group_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_group_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_group_response.go index 18149e98e4..72e442d6d7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_group_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_list.go index f1bfc8f7a7..83fc913205 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_lun.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_lun.go index 0883a698a3..418baf698c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_lun.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_lun.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_lun_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_lun_list.go index b4bb5df259..2e500ff51a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_lun_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_lun_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_lun_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_lun_response.go index 97a003d7a8..dbf8b5ada9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_lun_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_lun_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_relationship.go index 1530533fcc..5b88b8670c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_response.go index e987f67f4c..0e79b0da81 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_utilization.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_utilization.go index be99035721..b7659ddcbd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_utilization.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_host_utilization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_port.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_port.go index 74e35b2819..68032ea504 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_port.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_port_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_port_list.go index 154c6c267e..6737188b6a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_port_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_port_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_port_response.go index 65760604c3..afa56b34b3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_port_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group.go index 0bbad8f275..2b7da4edcd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_list.go index 32f8898d3c..7d97ae92f3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_relationship.go index 469a58cd00..d218be5cc0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_response.go index 604df9af33..13e86118dd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_snapshot.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_snapshot.go index ed4f03106e..7a1dc54bad 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_snapshot.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_snapshot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_snapshot_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_snapshot_list.go index 26bc9c6b8a..bfe278827b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_snapshot_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_snapshot_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_snapshot_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_snapshot_relationship.go index 2e64fef6ab..c8580b4476 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_snapshot_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_snapshot_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_snapshot_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_snapshot_response.go index 4c6450ead7..500a3dfb90 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_snapshot_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_protection_group_snapshot_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_replication_blackout.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_replication_blackout.go index d8777f08d5..8a09148e80 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_replication_blackout.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_replication_blackout.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_replication_schedule.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_replication_schedule.go index e68312d634..6c6144167c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_replication_schedule.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_replication_schedule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_replication_schedule_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_replication_schedule_list.go index e3569fd97d..2097e0fc21 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_replication_schedule_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_replication_schedule_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_replication_schedule_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_replication_schedule_response.go index d461b898f3..751b9c2a8a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_replication_schedule_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_replication_schedule_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_snapshot_schedule.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_snapshot_schedule.go index 8da99f9ca6..2aac8c2b01 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_snapshot_schedule.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_snapshot_schedule.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_snapshot_schedule_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_snapshot_schedule_list.go index e8b10e10b6..3452c0c994 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_snapshot_schedule_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_snapshot_schedule_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_snapshot_schedule_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_snapshot_schedule_response.go index 5fc99b4ace..1fce45a43a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_snapshot_schedule_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_snapshot_schedule_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_target_array.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_target_array.go index db14e3d2ca..843bbce41a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_target_array.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_target_array.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_target_array_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_target_array_list.go index b83b64a956..acb9922999 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_target_array_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_target_array_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_target_array_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_target_array_response.go index 5c1b3f0b78..976391105e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_target_array_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_target_array_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume.go index 7f3d0c1fe7..5c51833700 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_list.go index 7493b498c6..c9a65d2ec1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_relationship.go index 33460c3950..02775ca69b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_response.go index d6dc19884b..64b0f78ac8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_snapshot.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_snapshot.go index 1f9156279e..bff694f631 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_snapshot.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_snapshot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_snapshot_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_snapshot_list.go index e972961f4a..6bc59ecfed 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_snapshot_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_snapshot_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_snapshot_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_snapshot_response.go index e59f7cd477..3f5d3d39f6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_snapshot_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_snapshot_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_utilization.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_utilization.go index 8af0da3f73..38061f6e0c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_utilization.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_pure_volume_utilization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_r0_drive.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_r0_drive.go index 3f246b9a39..471aaad315 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_r0_drive.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_r0_drive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type StorageR0Drive struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The set of drive slots where RAID0 virtual drives must be created. - DriveSlots *string `json:"DriveSlots,omitempty"` + DriveSlots *string `json:"DriveSlots,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // The list of drive slots where RAID0 virtual drives must be created (comma separated). - DriveSlotsList *string `json:"DriveSlotsList,omitempty"` + DriveSlotsList *string `json:"DriveSlotsList,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // If enabled, this will create a RAID0 virtual drive per disk and encompassing the whole disk. Enable *bool `json:"Enable,omitempty"` VirtualDrivePolicy NullableStorageVirtualDrivePolicy `json:"VirtualDrivePolicy,omitempty"` @@ -358,9 +358,9 @@ func (o *StorageR0Drive) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The set of drive slots where RAID0 virtual drives must be created. - DriveSlots *string `json:"DriveSlots,omitempty"` + DriveSlots *string `json:"DriveSlots,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // The list of drive slots where RAID0 virtual drives must be created (comma separated). - DriveSlotsList *string `json:"DriveSlotsList,omitempty"` + DriveSlotsList *string `json:"DriveSlotsList,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // If enabled, this will create a RAID0 virtual drive per disk and encompassing the whole disk. Enable *bool `json:"Enable,omitempty"` VirtualDrivePolicy NullableStorageVirtualDrivePolicy `json:"VirtualDrivePolicy,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_remote_key_setting.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_remote_key_setting.go index d952d5a50f..c96f576af9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_remote_key_setting.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_remote_key_setting.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,7 +30,7 @@ type StorageRemoteKeySetting struct { ObjectType string `json:"ObjectType"` AuthCredentials NullableStorageKmipAuthCredentials `json:"AuthCredentials,omitempty"` // Current Security Key Passphrase which is already configured on the server. - ExistingKey *string `json:"ExistingKey,omitempty"` + ExistingKey *string `json:"ExistingKey,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` // Indicates whether the value of the 'existingKey' property has been set. IsExistingKeySet *bool `json:"IsExistingKeySet,omitempty"` PrimaryServer NullableStorageKmipServer `json:"PrimaryServer,omitempty"` @@ -449,7 +449,7 @@ func (o *StorageRemoteKeySetting) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` AuthCredentials NullableStorageKmipAuthCredentials `json:"AuthCredentials,omitempty"` // Current Security Key Passphrase which is already configured on the server. - ExistingKey *string `json:"ExistingKey,omitempty"` + ExistingKey *string `json:"ExistingKey,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` // Indicates whether the value of the 'existingKey' property has been set. IsExistingKeySet *bool `json:"IsExistingKeySet,omitempty"` PrimaryServer NullableStorageKmipServer `json:"PrimaryServer,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_expander.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_expander.go index 448129bd5b..0bcbbe7c2a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_expander.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_expander.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_expander_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_expander_list.go index d022f96804..9387d1393f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_expander_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_expander_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_expander_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_expander_relationship.go index a1a64b02d6..8926e1308d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_expander_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_expander_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_expander_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_expander_response.go index 7bf11a257d..9f0b217354 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_expander_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_expander_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_port.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_port.go index bbf4af5492..aed6f95782 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_port.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_port_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_port_list.go index aa8168c93e..e4060d82c3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_port_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_port_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_port_relationship.go index a2bb214c65..00c6c1dc8a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_port_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_port_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_port_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_port_response.go index 2b4c936476..a9857c61f9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_port_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_sas_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_space.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_space.go index 7b313aaaaa..354c41eb1b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_space.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_space.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_span.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_span.go index ac050573a7..172854d996 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_span.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_span.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_span_drives.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_span_drives.go index d06d0e2650..8a89543db3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_span_drives.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_span_drives.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type StorageSpanDrives struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Collection of local disks that are part of this span group. Allowed value is a comma or hyphen separated number range. The minimum number of disks needed in a span group varies based on RAID level. RAID0 requires at least one disk, RAID1 and RAID10 requires at least 2 and in multiples of 2, RAID5 RAID50 RAID6 and RAID60 require at least 3 disks in a span group. - Slots *string `json:"Slots,omitempty"` + Slots *string `json:"Slots,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` AdditionalProperties map[string]interface{} } @@ -233,7 +233,7 @@ func (o *StorageSpanDrives) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Collection of local disks that are part of this span group. Allowed value is a comma or hyphen separated number range. The minimum number of disks needed in a span group varies based on RAID level. RAID0 requires at least one disk, RAID1 and RAID10 requires at least 2 and in multiples of 2, RAID5 RAID50 RAID6 and RAID60 require at least 3 disks in a span group. - Slots *string `json:"Slots,omitempty"` + Slots *string `json:"Slots,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` } varStorageSpanDrivesWithoutEmbeddedStruct := StorageSpanDrivesWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_span_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_span_list.go index 21d1e11225..4c27284f4a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_span_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_span_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_span_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_span_relationship.go index 35969d9903..c523f27c27 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_span_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_span_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_span_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_span_response.go index caef59ae53..2046399f7a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_span_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_span_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_container_host_mount_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_container_host_mount_status.go index d285f42311..378fc8482b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_container_host_mount_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_container_host_mount_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_container_utilization.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_container_utilization.go index d7451931dd..7f90d11302 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_container_utilization.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_container_utilization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_policy.go index d9147ae4b0..7c956f1306 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,15 +31,15 @@ type StorageStoragePolicy struct { // All unconfigured drives will move to the selected state on deployment. Newly inserted drives will move to the selected state. Select Unconfigured Good option to retain the existing configuration. Select JBOD to move the unconfigured drives to JBOD state. Select RAID0 to create a RAID0 virtual drive on each of the unconfigured drives. If JBOD is selected, unconfigured drives will move to JBOD state on host reboot. This setting is applicable only to selected set of controllers on FI attached servers. * `UnconfiguredGood` - Newly inserted drives or on reboot, drives will remain the same state. * `Jbod` - Newly inserted drives or on reboot, drives will automatically move to JBOD state if drive state was UnconfiguredGood. * `RAID0` - Newly inserted drives or on reboot, virtual drives will be created, respective drives will move to Online state. DefaultDriveMode *string `json:"DefaultDriveMode,omitempty"` // Only U.3 NVMe drives has to be specified, entered slots will be moved to Direct attached mode. Allowed slots are 1-4, 101-104. Allowed value is a comma or hyphen separated number range. - DirectAttachedNvmeSlots *string `json:"DirectAttachedNvmeSlots,omitempty"` + DirectAttachedNvmeSlots *string `json:"DirectAttachedNvmeSlots,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // A collection of disks that is to be used as hot spares, globally, for all the RAID groups. Allowed value is a number range separated by a comma or a hyphen. - GlobalHotSpares *string `json:"GlobalHotSpares,omitempty"` + GlobalHotSpares *string `json:"GlobalHotSpares,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` M2VirtualDrive NullableStorageM2VirtualDriveConfig `json:"M2VirtualDrive,omitempty"` Raid0Drive NullableStorageR0Drive `json:"Raid0Drive,omitempty"` // Only U.3 NVMe drives has to be specified, entered slots will be moved to RAID attached mode. Allowed slots are 1-4, 101-104. Allowed value is a comma or hyphen separated number range. - RaidAttachedNvmeSlots *string `json:"RaidAttachedNvmeSlots,omitempty"` + RaidAttachedNvmeSlots *string `json:"RaidAttachedNvmeSlots,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // JBOD drives specified in this slot range will be encrypted. Allowed values are 'ALL', or a comma or hyphen separated number range. Sample format is ALL or 1, 3 or 4-6, 8. Setting the value to 'ALL' will encrypt all the unused UnconfigureGood/JBOD disks. - SecureJbods *string `json:"SecureJbods,omitempty"` + SecureJbods *string `json:"SecureJbods,omitempty" validate:"regexp=^$|^((((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*)|(a|A)(l|L)(l|L))$"` // State to which drives, not used in this policy, are to be moved. NoChange will not change the drive state. No Change must be selected if Default Drive State is set to JBOD or RAID0. * `NoChange` - Drive state will not be modified by Storage Policy. * `UnconfiguredGood` - Unconfigured good state -ready to be added in a RAID group. * `Jbod` - JBOD state where the disks start showing up to Host OS. UnusedDisksState *string `json:"UnusedDisksState,omitempty"` // Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD. @@ -682,15 +682,15 @@ func (o *StorageStoragePolicy) UnmarshalJSON(data []byte) (err error) { // All unconfigured drives will move to the selected state on deployment. Newly inserted drives will move to the selected state. Select Unconfigured Good option to retain the existing configuration. Select JBOD to move the unconfigured drives to JBOD state. Select RAID0 to create a RAID0 virtual drive on each of the unconfigured drives. If JBOD is selected, unconfigured drives will move to JBOD state on host reboot. This setting is applicable only to selected set of controllers on FI attached servers. * `UnconfiguredGood` - Newly inserted drives or on reboot, drives will remain the same state. * `Jbod` - Newly inserted drives or on reboot, drives will automatically move to JBOD state if drive state was UnconfiguredGood. * `RAID0` - Newly inserted drives or on reboot, virtual drives will be created, respective drives will move to Online state. DefaultDriveMode *string `json:"DefaultDriveMode,omitempty"` // Only U.3 NVMe drives has to be specified, entered slots will be moved to Direct attached mode. Allowed slots are 1-4, 101-104. Allowed value is a comma or hyphen separated number range. - DirectAttachedNvmeSlots *string `json:"DirectAttachedNvmeSlots,omitempty"` + DirectAttachedNvmeSlots *string `json:"DirectAttachedNvmeSlots,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // A collection of disks that is to be used as hot spares, globally, for all the RAID groups. Allowed value is a number range separated by a comma or a hyphen. - GlobalHotSpares *string `json:"GlobalHotSpares,omitempty"` + GlobalHotSpares *string `json:"GlobalHotSpares,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` M2VirtualDrive NullableStorageM2VirtualDriveConfig `json:"M2VirtualDrive,omitempty"` Raid0Drive NullableStorageR0Drive `json:"Raid0Drive,omitempty"` // Only U.3 NVMe drives has to be specified, entered slots will be moved to RAID attached mode. Allowed slots are 1-4, 101-104. Allowed value is a comma or hyphen separated number range. - RaidAttachedNvmeSlots *string `json:"RaidAttachedNvmeSlots,omitempty"` + RaidAttachedNvmeSlots *string `json:"RaidAttachedNvmeSlots,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // JBOD drives specified in this slot range will be encrypted. Allowed values are 'ALL', or a comma or hyphen separated number range. Sample format is ALL or 1, 3 or 4-6, 8. Setting the value to 'ALL' will encrypt all the unused UnconfigureGood/JBOD disks. - SecureJbods *string `json:"SecureJbods,omitempty"` + SecureJbods *string `json:"SecureJbods,omitempty" validate:"regexp=^$|^((((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*)|(a|A)(l|L)(l|L))$"` // State to which drives, not used in this policy, are to be moved. NoChange will not change the drive state. No Change must be selected if Default Drive State is set to JBOD or RAID0. * `NoChange` - Drive state will not be modified by Storage Policy. * `UnconfiguredGood` - Unconfigured good state -ready to be added in a RAID group. * `Jbod` - JBOD state where the disks start showing up to Host OS. UnusedDisksState *string `json:"UnusedDisksState,omitempty"` // Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_policy_list.go index 96ea414f85..db98c6ece3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_policy_relationship.go index 38eb3c0a82..d3c6a82769 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_policy_response.go index bf0ec64710..f8d57f8a39 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_utilization.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_utilization.go index 580643eda6..72cf9bb262 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_utilization.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_storage_utilization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_vd_member_ep.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_vd_member_ep.go index abd599bd08..6cece3c4c3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_vd_member_ep.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_vd_member_ep.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_vd_member_ep_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_vd_member_ep_list.go index 2259a8e029..2fec6ed43e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_vd_member_ep_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_vd_member_ep_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_vd_member_ep_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_vd_member_ep_relationship.go index ff45cb933e..30e051ea8c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_vd_member_ep_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_vd_member_ep_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_vd_member_ep_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_vd_member_ep_response.go index fdbac41861..4bae87d444 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_vd_member_ep_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_vd_member_ep_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive.go index dce9500c5c..8cc6050e77 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_configuration.go index d34df7a171..94ef341f03 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type StorageVirtualDriveConfiguration struct { // This flag enables the virtual drive to use all the space available in the disk group. When this flag is enabled, the size property is ignored. ExpandToAvailable *bool `json:"ExpandToAvailable,omitempty"` // The name of the virtual drive. The name can be between 1 and 15 alphanumeric characters. Spaces or any special characters other than - (hyphen) and _ (underscore) are not allowed. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\-_]*$"` // Virtual drive size in MebiBytes. Size is mandatory field except when the Expand to Available option is enabled. Size *int64 `json:"Size,omitempty"` VirtualDrivePolicy NullableStorageVirtualDrivePolicy `json:"VirtualDrivePolicy,omitempty"` @@ -395,7 +395,7 @@ func (o *StorageVirtualDriveConfiguration) UnmarshalJSON(data []byte) (err error // This flag enables the virtual drive to use all the space available in the disk group. When this flag is enabled, the size property is ignored. ExpandToAvailable *bool `json:"ExpandToAvailable,omitempty"` // The name of the virtual drive. The name can be between 1 and 15 alphanumeric characters. Spaces or any special characters other than - (hyphen) and _ (underscore) are not allowed. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\-_]*$"` // Virtual drive size in MebiBytes. Size is mandatory field except when the Expand to Available option is enabled. Size *int64 `json:"Size,omitempty"` VirtualDrivePolicy NullableStorageVirtualDrivePolicy `json:"VirtualDrivePolicy,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_container.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_container.go index e2ffff140a..fa5a7780aa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_container.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_container.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_container_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_container_list.go index 566b24a167..e6328c65a6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_container_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_container_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_container_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_container_relationship.go index 7049af5104..8d1cc4ee87 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_container_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_container_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_container_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_container_response.go index 19aa9ffb31..f37da70138 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_container_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_container_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_extension.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_extension.go index b601f2c073..811981f8d2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_extension.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_extension.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_extension_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_extension_list.go index 4b88130017..7a72c85b6f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_extension_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_extension_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_extension_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_extension_relationship.go index 9d5a9cfad7..6f99e41b3c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_extension_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_extension_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_extension_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_extension_response.go index 89d416b432..b2c84b2220 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_extension_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_extension_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_identity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_identity.go index 93dd5a34c9..1d8edfaeb3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_identity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_identity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_identity_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_identity_list.go index f60bef91a3..9e8f9d3b0e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_identity_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_identity_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_identity_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_identity_response.go index 54af593389..5e48572f40 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_identity_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_identity_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_list.go index 5ef09ba1b3..fe803f2489 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_policy.go index d2fea17898..3f50592bd4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_relationship.go index 0f1226766c..2024ef2d46 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_response.go index 682fa3fee4..77de79ec15 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_virtual_drive_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_volume_utilization.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_volume_utilization.go index 5400ba63c6..1a3ed8685f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_volume_utilization.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_storage_volume_utilization.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sw_id_pool_base.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sw_id_pool_base.go index 0ab3b4cb1f..e174e27874 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sw_id_pool_base.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_sw_id_pool_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_local_client_base.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_local_client_base.go index c064b3aa92..41db011f39 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_local_client_base.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_local_client_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_local_file_logging_client.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_local_file_logging_client.go index 347c2bb048..d21058db18 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_local_file_logging_client.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_local_file_logging_client.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_policy.go index e45a74fd61..8414aba16a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_policy_inventory.go index 646f671404..37b30815ca 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_policy_inventory_list.go index 1504972a3d..0050515b34 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_policy_inventory_response.go index dd3e057140..9cf57cc1a5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_policy_list.go index daf3da322f..05813a3b17 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_policy_response.go index 27df41425d..ccf2cc2022 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_remote_client_base.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_remote_client_base.go index be125d11cc..cafccd4f02 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_remote_client_base.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_remote_client_base.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_remote_logging_client.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_remote_logging_client.go index c1509a5e82..b2087afb3f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_remote_logging_client.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_syslog_remote_logging_client.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_action.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_action.go index d4001329c4..cc5584be61 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_action.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_action.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_count.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_count.go index fbd8528f1a..d06271ba4a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_count.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_count.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_count_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_count_list.go index 0cb618c3c4..e53f0486c8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_count_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_count_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_count_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_count_response.go index 4cd3adca3a..dd95cbc6e3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_count_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_count_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_definition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_definition.go index 42447f8f14..04074a5ecd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_definition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -41,7 +41,7 @@ type TamAdvisoryDefinition struct { // Orion pod on which this advisory should process. * `tier1` - Advisory processing will be taken care in first advisory driver of multinode cluster. * `tier2` - Advisory processing will be taken care in second advisory driver of multinode cluster. ExecuteOnPod *string `json:"ExecuteOnPod,omitempty"` // A link to an external URL describing security Advisory in more details. - ExternalUrl *string `json:"ExternalUrl,omitempty"` + ExternalUrl *string `json:"ExternalUrl,omitempty" validate:"regexp=^$|^(?:http(s)?:\\/\\/)?[\\\\w.-]+(?:\\\\.[\\\\w\\\\.-]+)+[\\\\w\\\\-\\\\._~:\\/?#[\\\\]@!\\\\$&'\\\\(\\\\)\\\\*\\\\+,;=.]+$"` OtherRefUrls []string `json:"OtherRefUrls,omitempty"` // Recommended action to resolve the security advisory. Recommendation *string `json:"Recommendation,omitempty"` @@ -793,7 +793,7 @@ func (o *TamAdvisoryDefinition) UnmarshalJSON(data []byte) (err error) { // Orion pod on which this advisory should process. * `tier1` - Advisory processing will be taken care in first advisory driver of multinode cluster. * `tier2` - Advisory processing will be taken care in second advisory driver of multinode cluster. ExecuteOnPod *string `json:"ExecuteOnPod,omitempty"` // A link to an external URL describing security Advisory in more details. - ExternalUrl *string `json:"ExternalUrl,omitempty"` + ExternalUrl *string `json:"ExternalUrl,omitempty" validate:"regexp=^$|^(?:http(s)?:\\/\\/)?[\\\\w.-]+(?:\\\\.[\\\\w\\\\.-]+)+[\\\\w\\\\-\\\\._~:\\/?#[\\\\]@!\\\\$&'\\\\(\\\\)\\\\*\\\\+,;=.]+$"` OtherRefUrls []string `json:"OtherRefUrls,omitempty"` // Recommended action to resolve the security advisory. Recommendation *string `json:"Recommendation,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_definition_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_definition_list.go index 48078c6fbb..455c54bcbf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_definition_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_definition_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_definition_response.go index cc946989b9..6d632f9117 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_definition_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_info.go index 40a4404894..5ce2a054ac 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_info_list.go index 25d2b77cd3..13d389c2c8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_info_response.go index bfcc59ca9e..b3e32f6eb6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_instance.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_instance.go index 540e58eb93..5cc1553491 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_instance.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_instance.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_instance_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_instance_list.go index 136ac1c33c..a04aa76a85 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_instance_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_instance_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_instance_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_instance_response.go index 94a1602502..b7fc4f815e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_instance_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_advisory_instance_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_api_data_source.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_api_data_source.go index d94347e4ba..73f053a872 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_api_data_source.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_api_data_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_base_advisory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_base_advisory.go index 5ec31189cb..f8f9457718 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_base_advisory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_base_advisory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_base_advisory_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_base_advisory_details.go index 5f0965950d..555669b667 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_base_advisory_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_base_advisory_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_base_advisory_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_base_advisory_relationship.go index 47940df3b3..c2eb8135ea 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_base_advisory_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_base_advisory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_base_data_source.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_base_data_source.go index e2580bed28..31267594e3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_base_data_source.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_base_data_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_eol_advisory_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_eol_advisory_details.go index 4fa49e32c7..8189d5b246 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_eol_advisory_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_eol_advisory_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_eol_severity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_eol_severity.go index 0080e1b216..c4bca435c5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_eol_severity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_eol_severity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_identifiers.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_identifiers.go index fb68727596..8f36165da8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_identifiers.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_identifiers.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_milestone.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_milestone.go index 02d02c71ec..b8dfeafa1c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_milestone.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_milestone.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_psirt_severity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_psirt_severity.go index 86eb6bf81a..254a37de0b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_psirt_severity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_psirt_severity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_query_entry.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_query_entry.go index 62bfa31dda..506c6ebebe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_query_entry.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_query_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_s3_data_source.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_s3_data_source.go index 98f56fa893..d7c9cd3e7e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_s3_data_source.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_s3_data_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_security_advisory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_security_advisory.go index fc344afa2b..3071cafec8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_security_advisory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_security_advisory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -45,7 +45,7 @@ type TamSecurityAdvisory struct { // Orion pod on which this advisory should process. * `tier1` - Advisory processing will be taken care in first advisory driver of multinode cluster. * `tier2` - Advisory processing will be taken care in second advisory driver of multinode cluster. ExecuteOnPod *string `json:"ExecuteOnPod,omitempty"` // A link to an external URL describing security Advisory in more details. - ExternalUrl *string `json:"ExternalUrl,omitempty"` + ExternalUrl *string `json:"ExternalUrl,omitempty" validate:"regexp=^$|^(?:http(s)?:\\/\\/)?[\\\\w.-]+(?:\\\\.[\\\\w\\\\.-]+)+[\\\\w\\\\-\\\\._~:\\/?#[\\\\]@!\\\\$&'\\\\(\\\\)\\\\*\\\\+,;=.]+$"` OtherRefUrls []string `json:"OtherRefUrls,omitempty"` // Recommended action to resolve the security advisory. Recommendation *string `json:"Recommendation,omitempty"` @@ -861,7 +861,7 @@ func (o *TamSecurityAdvisory) UnmarshalJSON(data []byte) (err error) { // Orion pod on which this advisory should process. * `tier1` - Advisory processing will be taken care in first advisory driver of multinode cluster. * `tier2` - Advisory processing will be taken care in second advisory driver of multinode cluster. ExecuteOnPod *string `json:"ExecuteOnPod,omitempty"` // A link to an external URL describing security Advisory in more details. - ExternalUrl *string `json:"ExternalUrl,omitempty"` + ExternalUrl *string `json:"ExternalUrl,omitempty" validate:"regexp=^$|^(?:http(s)?:\\/\\/)?[\\\\w.-]+(?:\\\\.[\\\\w\\\\.-]+)+[\\\\w\\\\-\\\\._~:\\/?#[\\\\]@!\\\\$&'\\\\(\\\\)\\\\*\\\\+,;=.]+$"` OtherRefUrls []string `json:"OtherRefUrls,omitempty"` // Recommended action to resolve the security advisory. Recommendation *string `json:"Recommendation,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_security_advisory_details.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_security_advisory_details.go index 1c5260639d..5df393ed95 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_security_advisory_details.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_security_advisory_details.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_security_advisory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_security_advisory_list.go index 33c3d15d6b..d760d7bfef 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_security_advisory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_security_advisory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_security_advisory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_security_advisory_response.go index 1ab5e2d2a4..47801ab5ee 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_security_advisory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_security_advisory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_severity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_severity.go index 5c14648692..ce10a23a23 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_severity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_severity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_text_fsm_template_data_source.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_text_fsm_template_data_source.go index 4f0dfc425d..667a812339 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_text_fsm_template_data_source.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tam_text_fsm_template_data_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_fabric_mos_scoped_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_fabric_mos_scoped_inventory.go index 7998273693..4661beaa1e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_fabric_mos_scoped_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_fabric_mos_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_hitachi_scoped_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_hitachi_scoped_inventory.go index 25dd4969aa..0223dab4a3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_hitachi_scoped_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_hitachi_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_hyper_flex_management_scoped_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_hyper_flex_management_scoped_inventory.go index 03ebcd338b..ca1cbf5e07 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_hyper_flex_management_scoped_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_hyper_flex_management_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_hyperflex_scoped_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_hyperflex_scoped_inventory.go index b385e25b1e..5e488f8cd6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_hyperflex_scoped_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_hyperflex_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_mds_scoped_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_mds_scoped_inventory.go index 4be975f7fa..520a775cc0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_mds_scoped_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_mds_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_mds_system_scoped_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_mds_system_scoped_inventory.go index 387d75dfe5..4e74a8384d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_mds_system_scoped_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_mds_system_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_meraki_scoped_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_meraki_scoped_inventory.go index 81c913e5db..0d7bfed092 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_meraki_scoped_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_meraki_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_net_app_scoped_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_net_app_scoped_inventory.go index 4a79c6eb5b..1f46124206 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_net_app_scoped_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_net_app_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_nexus_scoped_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_nexus_scoped_inventory.go index 9378889a90..92f971d956 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_nexus_scoped_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_nexus_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_nexus_system_scoped_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_nexus_system_scoped_inventory.go index 4c0aa5e4ac..d3ee4f9b54 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_nexus_system_scoped_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_nexus_system_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_nexus_vlan_scoped_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_nexus_vlan_scoped_inventory.go index d91d0c5a34..10f7304a34 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_nexus_vlan_scoped_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_nexus_vlan_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_public_cloud_scoped_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_public_cloud_scoped_inventory.go index 88a0d37886..d36937f97b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_public_cloud_scoped_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_public_cloud_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_pure_scoped_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_pure_scoped_inventory.go index 9b5ac97709..15fae16940 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_pure_scoped_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_pure_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_server_scoped_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_server_scoped_inventory.go index 5ae6b3f7d4..7232e0f5fe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_server_scoped_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_task_server_scoped_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_appliance_param.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_appliance_param.go index 562d6e2f68..df41ff6ebe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_appliance_param.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_appliance_param.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_collection_control_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_collection_control_policy.go index f9406b8714..45a2d1fc1d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_collection_control_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_collection_control_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_collection_control_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_collection_control_policy_list.go index 469dac886c..d7ba583774 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_collection_control_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_collection_control_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_collection_control_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_collection_control_policy_response.go index e7579e5978..56683ffcf7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_collection_control_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_collection_control_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_download.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_download.go index af7251c423..324e243a9d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_download.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_download.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_download_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_download_list.go index 22d0f8a06b..23e635334a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_download_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_download_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_download_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_download_response.go index 44546dfaa1..2888048aca 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_download_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_download_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_end_point.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_end_point.go index 553e13d446..9756f782cf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_end_point.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_end_point.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_end_point_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_end_point_list.go index 7ba87904f0..e1870c3482 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_end_point_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_end_point_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_end_point_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_end_point_response.go index 9ee69f62ec..f0e2361283 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_end_point_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_end_point_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_nia_param.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_nia_param.go index 6a304ad980..06875cd711 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_nia_param.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_nia_param.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_platform_param.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_platform_param.go index f59b7bfe66..e564875d96 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_platform_param.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_platform_param.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_bundle.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_bundle.go index 5e52064179..d3a2b798eb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_bundle.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_bundle.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_bundle_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_bundle_list.go index f6f1c56710..520d2a43f7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_bundle_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_bundle_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_bundle_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_bundle_relationship.go index 48b32a5e91..df390307f8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_bundle_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_bundle_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_bundle_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_bundle_response.go index 67020d99a5..451cd14df6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_bundle_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_bundle_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_file_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_file_info.go index 3faaba217d..0c90d5b9ae 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_file_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_file_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_status.go index 8fe699b08a..2598ef610e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_status_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_status_list.go index ae2ac4ffcc..cf1e29a701 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_status_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_status_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_status_relationship.go index 2b423916f1..e2bdb161f0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_status_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_status_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_status_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_status_response.go index a06584f7ab..574903267a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_status_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_techsupportmanagement_tech_support_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_aggregate_search_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_aggregate_search_spec.go index e2f2c48cf1..affba4555a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_aggregate_search_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_aggregate_search_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_aggregator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_aggregator.go index 612d24c700..dcfd0c85d4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_aggregator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_and_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_and_filter.go index 51115dc620..f91fe7dde7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_and_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_and_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_any_aggregator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_any_aggregator.go index 2b29f30da4..8bfc6a920e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_any_aggregator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_any_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_arithmetic_post_aggregator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_arithmetic_post_aggregator.go index ad5ededbc2..95a2d39b76 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_arithmetic_post_aggregator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_arithmetic_post_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_aggregator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_aggregator.go index 6aa3722c53..977da5df2b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_aggregator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_data_source.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_data_source.go index 61aa3f1841..53cd1dd87b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_data_source.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_data_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_dimension_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_dimension_spec.go index a8693fa1b0..5d8f1d22a2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_dimension_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_dimension_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_extraction_function.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_extraction_function.go index 78cf24add0..2b72f24f60 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_extraction_function.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_extraction_function.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_filter.go index 795f52d2fa..0c1fb4349c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_granularity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_granularity.go index 39576936f2..b97a979034 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_granularity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_granularity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_having_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_having_filter.go index 0409c0b276..ae29c1cea3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_having_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_having_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_limit_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_limit_spec.go index af62d198e1..14caf1c933 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_limit_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_limit_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_post_aggregator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_post_aggregator.go index b9dd00a22f..286d75d2f0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_post_aggregator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_post_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_query_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_query_spec.go index 3b89813e05..218ae5bf45 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_query_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_query_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_request.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_request.go index 96b47dcaa5..683a0cb4f5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_request.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_search_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_search_spec.go index 433e545d6c..be9fd058ae 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_search_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_search_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_top_n_metric_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_top_n_metric_spec.go index 0ab5b9542d..7834da9207 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_top_n_metric_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_base_top_n_metric_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_bound_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_bound_filter.go index 938bf1a2ee..a441a35c01 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_bound_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_bound_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_column_comparison_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_column_comparison_filter.go index 955d451d6d..00c4d87883 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_column_comparison_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_column_comparison_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_constant_post_aggregator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_constant_post_aggregator.go index 2716475956..dd579024eb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_constant_post_aggregator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_constant_post_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_contains_search_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_contains_search_spec.go index 15eb3d815a..bf147f87ec 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_contains_search_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_contains_search_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_count_aggregator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_count_aggregator.go index 66a2f8ad3d..c5344589e9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_count_aggregator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_count_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_data_source.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_data_source.go index 3e90cab2cd..fe2855c855 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_data_source.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_data_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_data_source_metadata_request.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_data_source_metadata_request.go index cb22ede8af..5d3ab742e0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_data_source_metadata_request.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_data_source_metadata_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_data_source_metadata_result.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_data_source_metadata_result.go index f0417c2926..c895e31d4e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_data_source_metadata_result.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_data_source_metadata_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_default_dimension_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_default_dimension_spec.go index ab6338d024..6a4c25cf52 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_default_dimension_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_default_dimension_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_default_limit_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_default_limit_spec.go index 793b81cab3..53495a199a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_default_limit_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_default_limit_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_dimension_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_dimension_spec.go index 83dab13b31..cde6d1f1a2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_dimension_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_dimension_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_dimension_top_n_metric_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_dimension_top_n_metric_spec.go index 5c2dd4fbaf..5b874828e7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_dimension_top_n_metric_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_dimension_top_n_metric_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_duration_granularity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_duration_granularity.go index 233f61c6b7..7f405e33b0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_duration_granularity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_duration_granularity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_equality_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_equality_filter.go index 86ae256567..e74835412a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_equality_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_equality_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_error.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_error.go index 752c366873..178b248ba4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_error.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_error.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_expression_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_expression_filter.go index ad1000064a..7a7afe873b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_expression_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_expression_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_expression_post_aggregator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_expression_post_aggregator.go index 4c34c7e20e..883bb7b589 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_expression_post_aggregator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_expression_post_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_dimension_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_dimension_spec.go index 640ac3fd4a..1edcddd6f6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_dimension_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_dimension_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function.go index cc3194f5ea..8422b62740 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_bucket.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_bucket.go index acdb76763d..cfffa0a8d8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_bucket.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_bucket.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_cascade.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_cascade.go index 316f7c6b58..d4f7211782 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_cascade.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_cascade.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_inline_lookup.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_inline_lookup.go index d1436bccf6..fbf46afb18 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_inline_lookup.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_inline_lookup.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_inline_lookup_all_of_lookup.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_inline_lookup_all_of_lookup.go index 24c6d1cdbc..0071e35a7d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_inline_lookup_all_of_lookup.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_inline_lookup_all_of_lookup.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_lower_case.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_lower_case.go index 59f99ddc03..93fa2e2a35 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_lower_case.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_lower_case.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_partial.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_partial.go index 8486c9164f..bea304ae94 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_partial.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_partial.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_regex.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_regex.go index b1d03fdbf8..98e79a999e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_regex.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_regex.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_search_query.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_search_query.go index b156192c2a..b754d0a0eb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_search_query.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_search_query.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_string_format.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_string_format.go index 96621d9a59..3f9b6c4dc7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_string_format.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_string_format.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_strlen.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_strlen.go index 5492c36414..02366a8bb0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_strlen.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_strlen.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_substring.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_substring.go index acb9141fd0..f5f05c6a25 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_substring.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_substring.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_time_format.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_time_format.go index 797b20e7e9..5a710d2292 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_time_format.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_time_format.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_time_parsing.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_time_parsing.go index 409e838cfe..459b2867b7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_time_parsing.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_time_parsing.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_upper_case.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_upper_case.go index 1d926d24e0..36f09f7ddc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_upper_case.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_extraction_function_upper_case.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_false_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_false_filter.go index bc12c8a21d..b2dea6fa30 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_false_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_false_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_field_accessor_post_aggregator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_field_accessor_post_aggregator.go index 856023818a..e641a9cda8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_field_accessor_post_aggregator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_field_accessor_post_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_filter.go index c685092216..32922fcfba 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_filtered_aggregator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_filtered_aggregator.go index 1fe25cc247..240b3cee98 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_filtered_aggregator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_filtered_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_first_last_aggregator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_first_last_aggregator.go index 3dc8a02360..f84942bada 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_first_last_aggregator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_first_last_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_fragment_search_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_fragment_search_spec.go index 6e9649de57..f93a4f2dc7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_fragment_search_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_fragment_search_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_granularity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_granularity.go index 2f768d15e4..65995b4e60 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_granularity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_granularity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_greatest_least_post_aggregator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_greatest_least_post_aggregator.go index 0f6bb78774..c60b98114d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_greatest_least_post_aggregator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_greatest_least_post_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_group_by_request.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_group_by_request.go index 1c531cccc6..f3ccec3c14 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_group_by_request.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_group_by_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_group_by_result.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_group_by_result.go index a9a831797f..64efc5a8b8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_group_by_result.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_group_by_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_having_dimension_selector_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_having_dimension_selector_filter.go index a655e27b67..7ce813552d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_having_dimension_selector_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_having_dimension_selector_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_having_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_having_filter.go index dcc9ea9dd9..a32f8adb29 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_having_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_having_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_having_numeric_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_having_numeric_filter.go index 8e290503e8..8834c21c12 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_having_numeric_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_having_numeric_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_having_query_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_having_query_filter.go index baed6862c5..a60409b977 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_having_query_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_having_query_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_hyper_unique_post_aggregator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_hyper_unique_post_aggregator.go index c56b4d5795..c210e59f84 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_hyper_unique_post_aggregator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_hyper_unique_post_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_in_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_in_filter.go index 42deccf0a9..4a3c618045 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_in_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_in_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_inline_data_source.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_inline_data_source.go index 48479c0b22..f500dd6f30 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_inline_data_source.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_inline_data_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_insensitive_contains_search_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_insensitive_contains_search_spec.go index 8166223180..e565fc5660 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_insensitive_contains_search_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_insensitive_contains_search_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_interval_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_interval_filter.go index 50f51b0ed0..d122cedf37 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_interval_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_interval_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_interval_result.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_interval_result.go index 18da95235d..5191462f9a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_interval_result.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_interval_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_inverted_top_n_metric_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_inverted_top_n_metric_spec.go index 7c6054b827..c3681abec5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_inverted_top_n_metric_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_inverted_top_n_metric_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_join_data_source.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_join_data_source.go index a1eea6dd30..e76061df7e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_join_data_source.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_join_data_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_like_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_like_filter.go index 8c1704f7be..a899fb929e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_like_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_like_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_lookup_data_source.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_lookup_data_source.go index 8fd31e81d2..82aeb6f14d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_lookup_data_source.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_lookup_data_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_min_max_aggregator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_min_max_aggregator.go index d3a8aa4060..82904bbcdd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_min_max_aggregator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_min_max_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_not_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_not_filter.go index a9d7ec101a..f793f1268f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_not_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_not_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_null_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_null_filter.go index 2b9d45df81..d2283cf964 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_null_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_null_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_numeric_top_n_metric_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_numeric_top_n_metric_spec.go index 02a5626362..ca141e49af 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_numeric_top_n_metric_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_numeric_top_n_metric_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_or_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_or_filter.go index 7decd5bc71..f34a933152 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_or_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_or_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_order_by_column_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_order_by_column_spec.go index 2d558311c7..ab9aa9dc53 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_order_by_column_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_order_by_column_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_period_granularity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_period_granularity.go index 49b1a56260..78de9357ee 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_period_granularity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_period_granularity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_post_aggregator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_post_aggregator.go index b8d8be33b2..d99b576d9b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_post_aggregator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_post_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_query_context.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_query_context.go index 79868dda0c..e680f5c715 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_query_context.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_query_context.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_query_data_source.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_query_data_source.go index 192edb1bcf..7f202e1afb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_query_data_source.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_query_data_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_query_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_query_spec.go index 61e0dc004c..53b41cabb1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_query_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_query_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_query_spec_contains.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_query_spec_contains.go index f80e3c48a6..8d97ac586c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_query_spec_contains.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_query_spec_contains.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_query_spec_fragment.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_query_spec_fragment.go index 32e89e308a..723046191a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_query_spec_fragment.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_query_spec_fragment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_query_spec_insensitive_contains.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_query_spec_insensitive_contains.go index 0a0a0256e1..fc28eac884 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_query_spec_insensitive_contains.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_query_spec_insensitive_contains.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_range_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_range_filter.go index 56580eaeb1..365246c7c3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_range_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_range_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_regex_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_regex_filter.go index 736fe91b5a..10e07afbe3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_regex_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_regex_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_regex_search_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_regex_search_spec.go index 71e33a7c4e..f3ae0ff2d7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_regex_search_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_regex_search_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_scan_request.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_scan_request.go index 5ed8e185f3..b842bb4ef9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_scan_request.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_scan_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_scan_result.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_scan_result.go index a2e75f5b33..86327bc82f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_scan_result.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_scan_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_search_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_search_filter.go index 674bcd578c..874a5e4e14 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_search_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_search_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_search_request.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_search_request.go index fd8482f3a8..88b0f38f6c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_search_request.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_search_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_search_result.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_search_result.go index fb045a093c..aac1c80f56 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_search_result.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_search_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_segment_metadata_request.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_segment_metadata_request.go index 191becedcd..969e35d048 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_segment_metadata_request.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_segment_metadata_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_segment_metadata_result.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_segment_metadata_result.go index 5144fb4227..49683ebc56 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_segment_metadata_result.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_segment_metadata_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_selector_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_selector_filter.go index 8f35fb7cb0..f634d6deef 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_selector_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_selector_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_string_any_aggregator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_string_any_aggregator.go index 07362028a6..4494321a37 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_string_any_aggregator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_string_any_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_string_first_last_aggregator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_string_first_last_aggregator.go index edaaff9cc2..452eb2e1d3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_string_first_last_aggregator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_string_first_last_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_sum_aggregator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_sum_aggregator.go index 13b3a9ee3f..a7a0f27d08 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_sum_aggregator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_sum_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_table_data_source.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_table_data_source.go index 6d69b0ab8c..f81877cfb7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_table_data_source.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_table_data_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_theta_sketch_aggregator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_theta_sketch_aggregator.go index de07bd6dc6..a8e00d7d5a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_theta_sketch_aggregator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_theta_sketch_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_theta_sketch_estimate_post_aggregator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_theta_sketch_estimate_post_aggregator.go index 00a7a9b470..ee269dce1f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_theta_sketch_estimate_post_aggregator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_theta_sketch_estimate_post_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_theta_sketch_operations_post_aggregator.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_theta_sketch_operations_post_aggregator.go index 55bfcd7483..1498c08ad2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_theta_sketch_operations_post_aggregator.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_theta_sketch_operations_post_aggregator.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_time_boundary_request.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_time_boundary_request.go index 84f4e9907c..47b6595106 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_time_boundary_request.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_time_boundary_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_time_boundary_result.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_time_boundary_result.go index b6818d0024..2e471ea3bb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_time_boundary_result.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_time_boundary_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_time_series_request.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_time_series_request.go index ee1e8dd1ea..78dea56df8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_time_series_request.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_time_series_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_top_n_metric_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_top_n_metric_spec.go index 03d6fe2283..2c0198f213 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_top_n_metric_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_top_n_metric_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_top_n_request.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_top_n_request.go index 56181d61e5..3427248ce4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_top_n_request.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_top_n_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_top_n_result.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_top_n_result.go index 843e393945..a4a328898c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_top_n_result.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_top_n_result.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_true_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_true_filter.go index a01347cb04..331dc60d85 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_true_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_true_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_union_data_source.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_union_data_source.go index 9aad7ee1be..4392eb490c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_union_data_source.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_telemetry_druid_union_data_source.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_template_transformation_stage.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_template_transformation_stage.go index 6f51d1b951..ee89d2405a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_template_transformation_stage.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_template_transformation_stage.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type TemplateTransformationStage struct { // A collection of arguments for the function being executed. FunctionArguments interface{} `json:"FunctionArguments,omitempty"` // The unique name by which the output of this transformation stage can be accessed in further stages. Only alphanumeric characters are allowed. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]{1,64}$"` AdditionalProperties map[string]interface{} } @@ -312,7 +312,7 @@ func (o *TemplateTransformationStage) UnmarshalJSON(data []byte) (err error) { // A collection of arguments for the function being executed. FunctionArguments interface{} `json:"FunctionArguments,omitempty"` // The unique name by which the output of this transformation stage can be accessed in further stages. Only alphanumeric characters are allowed. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]{1,64}$"` } varTemplateTransformationStageWithoutEmbeddedStruct := TemplateTransformationStageWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terminal_audit_log.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terminal_audit_log.go index 3885d81c09..cffa3409cf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terminal_audit_log.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terminal_audit_log.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terminal_audit_log_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terminal_audit_log_list.go index 0189bde227..ddcaa76138 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terminal_audit_log_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terminal_audit_log_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terminal_audit_log_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terminal_audit_log_response.go index 1a20a75740..0f7edea881 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terminal_audit_log_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terminal_audit_log_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terraform_cloud_resource.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terraform_cloud_resource.go index f954b54728..92868d117d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terraform_cloud_resource.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terraform_cloud_resource.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terraform_executor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terraform_executor.go index e83ac396db..0d50cd1155 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terraform_executor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terraform_executor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terraform_executor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terraform_executor_list.go index 4b254d86db..a8266dbdd5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terraform_executor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terraform_executor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terraform_executor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terraform_executor_response.go index 79d4964a90..1802984a91 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terraform_executor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terraform_executor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terraform_runstate.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terraform_runstate.go index df00948b45..9fa09e7c5b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terraform_runstate.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_terraform_runstate.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_thermal_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_thermal_policy.go index 1cc4dc79f2..26fa54398e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_thermal_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_thermal_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_thermal_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_thermal_policy_inventory.go index fa75362ccc..6a7ca769d0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_thermal_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_thermal_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_thermal_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_thermal_policy_inventory_list.go index be955b9c81..212de92bc6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_thermal_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_thermal_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_thermal_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_thermal_policy_inventory_response.go index 0fd7997f6c..53c0d79db4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_thermal_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_thermal_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_thermal_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_thermal_policy_list.go index 79df1c54f4..88ad159f58 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_thermal_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_thermal_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_thermal_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_thermal_policy_response.go index 435d0bc030..e82ed04bf2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_thermal_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_thermal_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_top_system.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_top_system.go index 405a54744b..1ed8bc0011 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_top_system.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_top_system.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_top_system_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_top_system_list.go index 4639ee840b..d2337ed082 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_top_system_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_top_system_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_top_system_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_top_system_relationship.go index 08a1c122db..0d1988cc23 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_top_system_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_top_system_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_top_system_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_top_system_response.go index 6fe814689b..e446076b0d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_top_system_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_top_system_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tunneling_tunnel.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tunneling_tunnel.go index b5d76628c3..f370c53fb2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tunneling_tunnel.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_tunneling_tunnel.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ucsd_backup_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ucsd_backup_info.go index 1abda56c70..729a174e11 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ucsd_backup_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ucsd_backup_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ucsd_backup_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ucsd_backup_info_list.go index 024e5f2fbf..7a70ea41ed 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ucsd_backup_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ucsd_backup_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ucsd_backup_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ucsd_backup_info_response.go index 7e929a1cf3..e1ea54a377 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ucsd_backup_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ucsd_backup_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ucsd_connector_pack.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ucsd_connector_pack.go index 9e4c343cd7..18a69c09e1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ucsd_connector_pack.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ucsd_connector_pack.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ucsd_ucsd_restore_parameters.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ucsd_ucsd_restore_parameters.go index e1e62d8595..3cab5a7c5e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ucsd_ucsd_restore_parameters.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ucsd_ucsd_restore_parameters.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ucsdconnector_rest_client_message.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ucsdconnector_rest_client_message.go index cd0b824ec7..1d7ac1a161 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ucsdconnector_rest_client_message.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_ucsdconnector_rest_client_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_block.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_block.go index c98a6903f2..054b537509 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_block.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_block_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_block_list.go index 12b535f7e5..d8cf28cf1c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_block_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_block_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_block_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_block_relationship.go index 7b741e608a..4fe781ffaf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_block_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_block_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_block_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_block_response.go index be9cfaea8d..372512ab9f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_block_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_block_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool.go index bd3e9a04cb..530d10782a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type UuidpoolPool struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The UUID prefix must be in hexadecimal format xxxxxxxx-xxxx-xxxx. - Prefix *string `json:"Prefix,omitempty"` + Prefix *string `json:"Prefix,omitempty" validate:"regexp=^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}$"` UuidSuffixBlocks []UuidpoolUuidBlock `json:"UuidSuffixBlocks,omitempty"` // An array of relationships to uuidpoolBlock resources. BlockHeads []UuidpoolBlockRelationship `json:"BlockHeads,omitempty"` @@ -395,7 +395,7 @@ func (o *UuidpoolPool) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The UUID prefix must be in hexadecimal format xxxxxxxx-xxxx-xxxx. - Prefix *string `json:"Prefix,omitempty"` + Prefix *string `json:"Prefix,omitempty" validate:"regexp=^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}$"` UuidSuffixBlocks []UuidpoolUuidBlock `json:"UuidSuffixBlocks,omitempty"` // An array of relationships to uuidpoolBlock resources. BlockHeads []UuidpoolBlockRelationship `json:"BlockHeads,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_list.go index e98bf9e548..a1ea4955a7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_member.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_member.go index fbf0359f2d..5821ab8a5f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_member.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_member.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_member_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_member_list.go index 3bde4e6c97..ec64fbffee 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_member_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_member_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_member_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_member_relationship.go index f0f9eca41b..68215647c1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_member_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_member_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_member_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_member_response.go index 198edccd7a..10e8a25f2f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_member_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_member_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_relationship.go index 28b64a42a1..8022cec363 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_response.go index 30e259946c..c26a9c9af5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_pool_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_reservation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_reservation.go index b5cce98064..2587beac05 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_reservation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_reservation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type UuidpoolReservation struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // UUID identity to be reserved. - Identity *string `json:"Identity,omitempty"` + Identity *string `json:"Identity,omitempty" validate:"regexp=^$|^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"` Block NullableUuidpoolBlockRelationship `json:"Block,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` Pool NullableUuidpoolPoolRelationship `json:"Pool,omitempty"` @@ -470,7 +470,7 @@ func (o *UuidpoolReservation) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // UUID identity to be reserved. - Identity *string `json:"Identity,omitempty"` + Identity *string `json:"Identity,omitempty" validate:"regexp=^$|^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"` Block NullableUuidpoolBlockRelationship `json:"Block,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` Pool NullableUuidpoolPoolRelationship `json:"Pool,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_reservation_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_reservation_list.go index 7480c07c03..badd7f235a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_reservation_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_reservation_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_reservation_reference.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_reservation_reference.go index f671bcae01..332bdcb232 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_reservation_reference.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_reservation_reference.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_reservation_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_reservation_relationship.go index ab4b79c3f0..49c4fe2440 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_reservation_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_reservation_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_reservation_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_reservation_response.go index 73e2885716..328cdcd121 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_reservation_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_reservation_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_universe.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_universe.go index 2cfea2a23b..bb1cc87a13 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_universe.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_universe.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_universe_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_universe_list.go index 2eca4c405d..2a15c227e5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_universe_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_universe_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_universe_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_universe_relationship.go index b161054cb5..359c020f00 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_universe_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_universe_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_universe_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_universe_response.go index 258796aaea..41872097c7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_universe_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_universe_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_uuid_block.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_uuid_block.go index ddc9f4f042..4634dd6bd3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_uuid_block.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_uuid_block.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,9 +29,9 @@ type UuidpoolUuidBlock struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Starting UUID suffix of the block must be in hexadecimal format xxxx-xxxxxxxxxxxx. - From *string `json:"From,omitempty"` + From *string `json:"From,omitempty" validate:"regexp=^$|^[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"` // Starting UUID suffix of the block must be in hexadecimal format xxxx-xxxxxxxxxxxx. - To *string `json:"To,omitempty"` + To *string `json:"To,omitempty" validate:"regexp=^$|^[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"` AdditionalProperties map[string]interface{} } @@ -270,9 +270,9 @@ func (o *UuidpoolUuidBlock) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Starting UUID suffix of the block must be in hexadecimal format xxxx-xxxxxxxxxxxx. - From *string `json:"From,omitempty"` + From *string `json:"From,omitempty" validate:"regexp=^$|^[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"` // Starting UUID suffix of the block must be in hexadecimal format xxxx-xxxxxxxxxxxx. - To *string `json:"To,omitempty"` + To *string `json:"To,omitempty" validate:"regexp=^$|^[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"` } varUuidpoolUuidBlockWithoutEmbeddedStruct := UuidpoolUuidBlockWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_uuid_lease.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_uuid_lease.go index 5a2d8449ea..461b46dafd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_uuid_lease.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_uuid_lease.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,7 +30,7 @@ type UuidpoolUuidLease struct { ObjectType string `json:"ObjectType"` Reservation *UuidpoolReservationReference `json:"Reservation,omitempty"` // UUID Prefix+Suffix numbers. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"` AssignedToEntity NullableMoBaseMoRelationship `json:"AssignedToEntity,omitempty"` Pool NullableUuidpoolPoolRelationship `json:"Pool,omitempty"` PoolMember NullableUuidpoolPoolMemberRelationship `json:"PoolMember,omitempty"` @@ -462,7 +462,7 @@ func (o *UuidpoolUuidLease) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` Reservation *UuidpoolReservationReference `json:"Reservation,omitempty"` // UUID Prefix+Suffix numbers. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"` AssignedToEntity NullableMoBaseMoRelationship `json:"AssignedToEntity,omitempty"` Pool NullableUuidpoolPoolRelationship `json:"Pool,omitempty"` PoolMember NullableUuidpoolPoolMemberRelationship `json:"PoolMember,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_uuid_lease_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_uuid_lease_list.go index 4c6b39bfe5..731c460688 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_uuid_lease_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_uuid_lease_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_uuid_lease_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_uuid_lease_relationship.go index 4d7f60665c..a2b07e2041 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_uuid_lease_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_uuid_lease_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_uuid_lease_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_uuid_lease_response.go index 6b1bd9712e..c8a41a3cf6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_uuid_lease_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_uuidpool_uuid_lease_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_view_health_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_view_health_status.go index 4442792e79..85ddfd7788 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_view_health_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_view_health_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_view_health_status_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_view_health_status_list.go index 896912ff2e..431e16172c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_view_health_status_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_view_health_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_view_health_status_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_view_health_status_response.go index 9d245ddb7a..137f42df7c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_view_health_status_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_view_health_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_view_server.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_view_server.go index 01eff900de..9d51b3517b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_view_server.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_view_server.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_view_server_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_view_server_list.go index a57a545468..30c3103f36 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_view_server_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_view_server_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_view_server_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_view_server_response.go index 4ba03cd8ca..8d724f0cfa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_view_server_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_view_server_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_action_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_action_info.go index 333e555e4b..e6fc82211d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_action_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_action_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_aws_vm_compute_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_aws_vm_compute_configuration.go index ebd034d1a1..3e08d64de5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_aws_vm_compute_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_aws_vm_compute_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_aws_vm_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_aws_vm_configuration.go index 783799d1b7..dd5e87c2ce 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_aws_vm_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_aws_vm_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_aws_vm_network_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_aws_vm_network_configuration.go index f18e96f5bb..f3a656c42d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_aws_vm_network_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_aws_vm_network_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_aws_vm_storage_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_aws_vm_storage_configuration.go index 83f2e1ace5..d531f3622a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_aws_vm_storage_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_aws_vm_storage_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_cluster.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_cluster.go index 97a96f1806..f9c3c4f085 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_cluster.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_cluster_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_cluster_relationship.go index 6ba319549e..93a36c6394 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_cluster_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_cluster_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_custom_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_custom_spec.go index f19fbaa5aa..33ab610a52 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_custom_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_custom_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_datacenter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_datacenter.go index 3be209f4ea..847bd20b06 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_datacenter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_datacenter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_datastore.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_datastore.go index 998a130f7f..ca61323540 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_datastore.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_datastore.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_datastore_cluster.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_datastore_cluster.go index 16e040b6ea..02825ef48d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_datastore_cluster.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_datastore_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_distributed_network.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_distributed_network.go index f312642cc1..4300fbacc6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_distributed_network.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_distributed_network.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_distributed_switch.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_distributed_switch.go index ba69238b9a..9f77d4499d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_distributed_switch.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_distributed_switch.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_folder.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_folder.go index 9e055ad546..3ecda098ea 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_folder.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_folder.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_host.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_host.go index 8d0cf1107f..62ca758e11 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_host.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_host.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -50,7 +50,7 @@ type VirtualizationBaseHost struct { // The uptime of the host, stored as Duration (from w3c). UpTime *string `json:"UpTime,omitempty"` // Universally unique identity of this host (example b3d4483b-5560-9342-8309-b486c9236610). Internally generated. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Commercial vendor details of this hardware. Vendor *string `json:"Vendor,omitempty"` AdditionalProperties map[string]interface{} @@ -807,7 +807,7 @@ func (o *VirtualizationBaseHost) UnmarshalJSON(data []byte) (err error) { // The uptime of the host, stored as Duration (from w3c). UpTime *string `json:"UpTime,omitempty"` // Universally unique identity of this host (example b3d4483b-5560-9342-8309-b486c9236610). Internally generated. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Commercial vendor details of this hardware. Vendor *string `json:"Vendor,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_host_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_host_configuration.go index f39327ca6a..7b589820e9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_host_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_host_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_host_gpu.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_host_gpu.go index 448225be88..a72835911a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_host_gpu.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_host_gpu.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_host_pci_device.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_host_pci_device.go index 61ff39bf78..c39915e228 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_host_pci_device.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_host_pci_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_host_pci_device_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_host_pci_device_relationship.go index 44638067f8..718deb870a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_host_pci_device_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_host_pci_device_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_host_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_host_relationship.go index 0d9d4112dd..b5855e1884 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_host_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_host_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_hypervisor_manager.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_hypervisor_manager.go index 9fab4616c4..62f585b499 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_hypervisor_manager.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_hypervisor_manager.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type VirtualizationBaseHypervisorManager struct { // Identity of the hypervisor (not manipulated by user). It could be a UUID too. For example, c917093f-5443-4748-bc09-eec72ded7608. Identity *string `json:"Identity,omitempty"` // The user provided name for the hypervisor manager. For example, vCenterIreland. Usually, this name is subject to manipulation by the user. It is not the identity of the hypervisor. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_-]{1,32}$"` // Release version of the Hypervisor Manger (VMware vCenter Server 6.0.0 build-4541947). Version *string `json:"Version,omitempty"` RegisteredDevice NullableAssetDeviceRegistrationRelationship `json:"RegisteredDevice,omitempty"` @@ -395,7 +395,7 @@ func (o *VirtualizationBaseHypervisorManager) UnmarshalJSON(data []byte) (err er // Identity of the hypervisor (not manipulated by user). It could be a UUID too. For example, c917093f-5443-4748-bc09-eec72ded7608. Identity *string `json:"Identity,omitempty"` // The user provided name for the hypervisor manager. For example, vCenterIreland. Usually, this name is subject to manipulation by the user. It is not the identity of the hypervisor. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_-]{1,32}$"` // Release version of the Hypervisor Manger (VMware vCenter Server 6.0.0 build-4541947). Version *string `json:"Version,omitempty"` RegisteredDevice NullableAssetDeviceRegistrationRelationship `json:"RegisteredDevice,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_kernel_network.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_kernel_network.go index b64af15d93..cf255f1ff4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_kernel_network.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_kernel_network.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_network.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_network.go index 6198780906..6280ad1174 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_network.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_network.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_network_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_network_relationship.go index 401ec6d079..e8433fb0b8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_network_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_network_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_physical_network_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_physical_network_interface.go index 726ed845fc..36c7b7930f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_physical_network_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_physical_network_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_placement.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_placement.go index c417873827..2436635b5a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_placement.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_placement.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type VirtualizationBasePlacement struct { // Name of the virtual machine placement. It is the name of the VPC (Virtual Private Cloud) in case of AWS virtual machine, and datacenter name in case of VMware virtual machine. Name *string `json:"Name,omitempty"` // The uuid of this placement. The uuid is internally generated and not user specified. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` AdditionalProperties map[string]interface{} } @@ -249,7 +249,7 @@ func (o *VirtualizationBasePlacement) UnmarshalJSON(data []byte) (err error) { // Name of the virtual machine placement. It is the name of the VPC (Virtual Private Cloud) in case of AWS virtual machine, and datacenter name in case of VMware virtual machine. Name *string `json:"Name,omitempty"` // The uuid of this placement. The uuid is internally generated and not user specified. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` } varVirtualizationBasePlacementWithoutEmbeddedStruct := VirtualizationBasePlacementWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_source_device.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_source_device.go index c5b4f8b2f3..0cace599cd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_source_device.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_source_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_switch.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_switch.go index 9f0eded6b4..be3dd982cb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_switch.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_switch.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_disk.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_disk.go index 000343679e..c9df3736e8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_disk.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_machine.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_machine.go index 565d0d40bd..d0048b259c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_machine.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_machine.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -53,7 +53,7 @@ type VirtualizationBaseVirtualMachine struct { // The current state of the virtual machine. For example, starting, stopped, etc. * `None` - A place holder for the default value. * `Creating` - Virtual machine creation is in progress. * `Pending` - The virtual machine is preparing to enter the started state. * `Starting` - The virtual machine is starting. * `Started` - The virtual machine is running and ready for use. * `Stopping` - The virtual machine is preparing to be stopped. * `Stopped` - The virtual machine is shut down and cannot be used. The virtual machine can be started again at any time. * `Pausing` - The virtual machine is preparing to be paused. * `Paused` - The virtual machine enters into paused state due to low free disk space. * `Suspending` - The virtual machine is preparing to be suspended. * `Suspended` - Virtual machine is in sleep mode.When a virtual machine is suspended, the current state of theoperating system, and applications is saved, and the virtual machine put into a suspended mode. * `Deleting` - The virtual machine is preparing to be terminated. * `Terminated` - The virtual machine has been permanently deleted and cannot be started. * `Rebooting` - The virtual machine reboot is in progress. * `Error` - The deployment of virtual machine is failed. * `Warning` - The virtual machine is in warning state. State *string `json:"State,omitempty"` // The uuid of this virtual machine. The uuid is internally generated and not user specified. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Time when this virtualmachine is created. VmCreationTime *time.Time `json:"VmCreationTime,omitempty"` AdditionalProperties map[string]interface{} @@ -845,7 +845,7 @@ func (o *VirtualizationBaseVirtualMachine) UnmarshalJSON(data []byte) (err error // The current state of the virtual machine. For example, starting, stopped, etc. * `None` - A place holder for the default value. * `Creating` - Virtual machine creation is in progress. * `Pending` - The virtual machine is preparing to enter the started state. * `Starting` - The virtual machine is starting. * `Started` - The virtual machine is running and ready for use. * `Stopping` - The virtual machine is preparing to be stopped. * `Stopped` - The virtual machine is shut down and cannot be used. The virtual machine can be started again at any time. * `Pausing` - The virtual machine is preparing to be paused. * `Paused` - The virtual machine enters into paused state due to low free disk space. * `Suspending` - The virtual machine is preparing to be suspended. * `Suspended` - Virtual machine is in sleep mode.When a virtual machine is suspended, the current state of theoperating system, and applications is saved, and the virtual machine put into a suspended mode. * `Deleting` - The virtual machine is preparing to be terminated. * `Terminated` - The virtual machine has been permanently deleted and cannot be started. * `Rebooting` - The virtual machine reboot is in progress. * `Error` - The deployment of virtual machine is failed. * `Warning` - The virtual machine is in warning state. State *string `json:"State,omitempty"` // The uuid of this virtual machine. The uuid is internally generated and not user specified. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Time when this virtualmachine is created. VmCreationTime *time.Time `json:"VmCreationTime,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_machine_gpu.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_machine_gpu.go index 42a17dd68c..235018da5b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_machine_gpu.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_machine_gpu.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_machine_pci_device.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_machine_pci_device.go index 4f6f1c9342..d75b3cb295 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_machine_pci_device.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_machine_pci_device.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_machine_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_machine_relationship.go index c014387c38..ef0e836a75 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_machine_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_machine_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_machine_snapshot.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_machine_snapshot.go index 1b6e24077d..66f3cbf79d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_machine_snapshot.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_machine_snapshot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_network.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_network.go index 9a96757804..b222afcbab 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_network.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_network.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_network_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_network_interface.go index 801d835dc7..a5c89066a9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_network_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_network_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_network_interface_card.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_network_interface_card.go index aba2544413..1f3158dceb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_network_interface_card.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_network_interface_card.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type VirtualizationBaseVirtualNetworkInterfaceCard struct { // Type or model of the virtual network interface card. * `Unknown` - The type of the network adaptor type is unknown. * `E1000` - Emulated version of the Intel 82545EM Gigabit Ethernet NIC. * `SRIOV` - Representation of a virtual function (VF) on a physical NIC with SR-IOV support. * `VMXNET2` - VMXNET 2 (Enhanced) is available only for some guest operating systems on ESX/ESXi 3.5 and later. * `VMXNET3` - VMXNET 3 offers all the features available in VMXNET 2 and adds several new features. * `E1000E` - E1000E – emulates a newer real network adapter, the 1 Gbit Intel 82574, and is available for Windows 2012 and later. The E1000E needs virtual machine hardware version 8 or later. * `NE2K_PCI` - The Ne2000 network card uses two ring buffers for packet handling. These are circular buffers made of 256-byte pages that the chip's DMA logic will use to store received packets or to get received packets. * `PCnet` - The PCnet-PCI II is a PCI network adapter. It has built-in support for CRC checks and can automatically pad short packets to the minimum Ethernet length. * `RTL8139` - The RTL8139 is a fast Ethernet card that operates at 10/100 Mbps. It is compliant with PCI version 2.0/2.1 and it is known for reliability and superior performance. * `VirtIO` - VirtIO is a standardized interface which allows virtual machines access to simplified \"virtual\" devices, such as block devices, network adapters and consoles. Accessing devices through VirtIO on a guest VM improves performance over more traditional \"emulated\" devices, as VirtIO devices require only the bare minimum setup and configuration needed to send and receive data, while the host machine handles the majority of the setup and maintenance of the actual physical hardware. * `` - Default network adaptor type supported by the hypervisor. AdapterType *string `json:"AdapterType,omitempty"` // MAC address assigned to the virtual network interface card. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"` // Name of the virtual network interface card. Name *string `json:"Name,omitempty"` AdditionalProperties map[string]interface{} @@ -313,7 +313,7 @@ func (o *VirtualizationBaseVirtualNetworkInterfaceCard) UnmarshalJSON(data []byt // Type or model of the virtual network interface card. * `Unknown` - The type of the network adaptor type is unknown. * `E1000` - Emulated version of the Intel 82545EM Gigabit Ethernet NIC. * `SRIOV` - Representation of a virtual function (VF) on a physical NIC with SR-IOV support. * `VMXNET2` - VMXNET 2 (Enhanced) is available only for some guest operating systems on ESX/ESXi 3.5 and later. * `VMXNET3` - VMXNET 3 offers all the features available in VMXNET 2 and adds several new features. * `E1000E` - E1000E – emulates a newer real network adapter, the 1 Gbit Intel 82574, and is available for Windows 2012 and later. The E1000E needs virtual machine hardware version 8 or later. * `NE2K_PCI` - The Ne2000 network card uses two ring buffers for packet handling. These are circular buffers made of 256-byte pages that the chip's DMA logic will use to store received packets or to get received packets. * `PCnet` - The PCnet-PCI II is a PCI network adapter. It has built-in support for CRC checks and can automatically pad short packets to the minimum Ethernet length. * `RTL8139` - The RTL8139 is a fast Ethernet card that operates at 10/100 Mbps. It is compliant with PCI version 2.0/2.1 and it is known for reliability and superior performance. * `VirtIO` - VirtIO is a standardized interface which allows virtual machines access to simplified \"virtual\" devices, such as block devices, network adapters and consoles. Accessing devices through VirtIO on a guest VM improves performance over more traditional \"emulated\" devices, as VirtIO devices require only the bare minimum setup and configuration needed to send and receive data, while the host machine handles the majority of the setup and maintenance of the actual physical hardware. * `` - Default network adaptor type supported by the hypervisor. AdapterType *string `json:"AdapterType,omitempty"` // MAC address assigned to the virtual network interface card. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"` // Name of the virtual network interface card. Name *string `json:"Name,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_switch.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_switch.go index 6ebb9e1a7e..4e0f98b698 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_switch.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_virtual_switch.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_vm_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_vm_configuration.go index 9fa2817ce4..b28365c449 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_vm_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_base_vm_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_cloud_init_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_cloud_init_config.go index 0950beb283..195c0f653e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_cloud_init_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_cloud_init_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_cloud_vm_compute_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_cloud_vm_compute_configuration.go index 255d2385c8..ab33d89633 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_cloud_vm_compute_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_cloud_vm_compute_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_cloud_vm_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_cloud_vm_configuration.go index be72b4aecb..c5b84bf776 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_cloud_vm_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_cloud_vm_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_cloud_vm_network_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_cloud_vm_network_configuration.go index 3e31c9e0e1..264f7a20da 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_cloud_vm_network_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_cloud_vm_network_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_cloud_vm_storage_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_cloud_vm_storage_configuration.go index 3786e4ca1a..4e14f764dc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_cloud_vm_storage_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_cloud_vm_storage_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_compute_capacity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_compute_capacity.go index cb58d99b2c..2ce1f88507 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_compute_capacity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_compute_capacity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_cpu_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_cpu_info.go index daaaf1aabf..0011b2b52b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_cpu_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_cpu_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_clone_custom_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_clone_custom_spec.go index 556b0f0dc4..225611bca0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_clone_custom_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_clone_custom_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_console.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_console.go index 3c91707edb..c2b3a111cb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_console.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_console.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_console_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_console_list.go index 889e7e5c10..3e06f81a55 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_console_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_console_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_console_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_console_response.go index 5c2ba46d46..f7abb48efc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_console_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_console_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_host_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_host_configuration.go index 0dfbfb2c23..c88f83e8c1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_host_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_host_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_ova_custom_spec.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_ova_custom_spec.go index 870512b205..7be128a488 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_ova_custom_spec.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_ova_custom_spec.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_vm_compute_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_vm_compute_configuration.go index 2c9cde130e..85d948083f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_vm_compute_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_vm_compute_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_vm_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_vm_configuration.go index f02ffd8432..106360f212 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_vm_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_vm_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_vm_network_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_vm_network_configuration.go index 1d7775c5d2..5d79d18ad0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_vm_network_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_vm_network_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_vm_storage_configuration.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_vm_storage_configuration.go index 8084ce258c..4b8da8cf18 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_vm_storage_configuration.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_esxi_vm_storage_configuration.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_guest_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_guest_info.go index 54d574450b..af51abe0c9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_guest_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_guest_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_host.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_host.go index 28e6dabcdb..a7dd189a83 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_host.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_host.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_host_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_host_list.go index 010e73492c..bd9bb2dfdd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_host_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_host_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_host_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_host_response.go index a7c119f481..09bf217a04 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_host_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_host_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_ip_address_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_ip_address_info.go index 28ee2c7df4..4b33385d31 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_ip_address_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_ip_address_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_memory_capacity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_memory_capacity.go index 0558ba89f0..ee9e4bf293 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_memory_capacity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_memory_capacity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_network_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_network_interface.go index 9aff76c543..783e055fae 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_network_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_network_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -41,7 +41,7 @@ type VirtualizationNetworkInterface struct { // Set to true, if IPv6 address should be allocated for the NIC. Ipv6Address *bool `json:"Ipv6Address,omitempty"` // Virtual machine network mac address. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"` // Name of the network interface. This may be different from guest operating system assigned. Name *string `json:"Name,omitempty"` // Identity of the network to which this network interface belongs. @@ -808,7 +808,7 @@ func (o *VirtualizationNetworkInterface) UnmarshalJSON(data []byte) (err error) // Set to true, if IPv6 address should be allocated for the NIC. Ipv6Address *bool `json:"Ipv6Address,omitempty"` // Virtual machine network mac address. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"` // Name of the network interface. This may be different from guest operating system assigned. Name *string `json:"Name,omitempty"` // Identity of the network to which this network interface belongs. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_product_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_product_info.go index bfd5319926..18ed87a743 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_product_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_product_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_storage_capacity.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_storage_capacity.go index b909977144..7818a3e63e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_storage_capacity.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_storage_capacity.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_virtual_machine.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_virtual_machine.go index 5d9e21311e..ab449c9c1e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_virtual_machine.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_virtual_machine.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_virtual_machine_disk.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_virtual_machine_disk.go index 9e0818d17a..becd90db5d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_virtual_machine_disk.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_virtual_machine_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_virtual_machine_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_virtual_machine_list.go index de262d3462..8fde8551c1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_virtual_machine_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_virtual_machine_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_virtual_machine_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_virtual_machine_relationship.go index bde90cde8b..cc16615e9b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_virtual_machine_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_virtual_machine_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_virtual_machine_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_virtual_machine_response.go index f6e32934c8..7e20f7d1a6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_virtual_machine_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_virtual_machine_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vm_esxi_disk.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vm_esxi_disk.go index 34d6e7dd78..af33cbff8d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vm_esxi_disk.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vm_esxi_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_cluster.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_cluster.go index 6719adb0d3..4c1749eeab 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_cluster.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_cluster_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_cluster_list.go index cbc7c81805..6cf5866e56 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_cluster_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_cluster_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_cluster_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_cluster_relationship.go index 96dedf7902..3b9e9f1b35 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_cluster_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_cluster_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_cluster_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_cluster_response.go index 9b3d5653e8..325b39e622 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_cluster_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_cluster_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datacenter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datacenter.go index 42b3a47095..97d2337880 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datacenter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datacenter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datacenter_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datacenter_list.go index f395ecfeba..ca35542618 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datacenter_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datacenter_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datacenter_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datacenter_relationship.go index 97238ca669..16cccbeda1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datacenter_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datacenter_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datacenter_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datacenter_response.go index d094b6336c..f16d75743d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datacenter_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datacenter_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore.go index 9155c591bd..1aac3cf96b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_cluster.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_cluster.go index f346e38c24..0f869d4c76 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_cluster.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_cluster.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_cluster_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_cluster_list.go index 9d73d1164d..8b082e6295 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_cluster_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_cluster_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_cluster_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_cluster_relationship.go index b38fd28f26..c4d96371ff 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_cluster_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_cluster_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_cluster_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_cluster_response.go index ca57fec95e..3d15a64163 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_cluster_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_cluster_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_list.go index f07383d682..0a9e2fcd1a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_relationship.go index 9c6529953d..f8ff424efd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_response.go index 8bb0c8c01c..174e080e00 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_datastore_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_discovery_protocol.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_discovery_protocol.go index c04f717fc5..1d38bfec0e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_discovery_protocol.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_discovery_protocol.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_network.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_network.go index 7ac6dad105..598f6244ec 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_network.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_network.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_network_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_network_list.go index f4b2a8f6c7..1716e6b6ee 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_network_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_network_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_network_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_network_relationship.go index 68467ec798..f2558c0171 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_network_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_network_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_network_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_network_response.go index 31d987a1d0..8b5cd16e25 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_network_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_network_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_switch.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_switch.go index 14f6c54ea6..a19747d90f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_switch.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_switch.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -49,7 +49,7 @@ type VirtualizationVmwareDistributedSwitch struct { ResourceAllocationSystemTraffic []VirtualizationVmwareResourceAllocationSystemTrafficTypes `json:"ResourceAllocationSystemTraffic,omitempty"` SwitchCapacity NullableVirtualizationStorageCapacity `json:"SwitchCapacity,omitempty"` // Universally Unique Id of this distributed virtual switch. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The running config's version details are represented. Version *string `json:"Version,omitempty"` Datacenter NullableVirtualizationVmwareDatacenterRelationship `json:"Datacenter,omitempty"` @@ -849,7 +849,7 @@ func (o *VirtualizationVmwareDistributedSwitch) UnmarshalJSON(data []byte) (err ResourceAllocationSystemTraffic []VirtualizationVmwareResourceAllocationSystemTrafficTypes `json:"ResourceAllocationSystemTraffic,omitempty"` SwitchCapacity NullableVirtualizationStorageCapacity `json:"SwitchCapacity,omitempty"` // Universally Unique Id of this distributed virtual switch. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // The running config's version details are represented. Version *string `json:"Version,omitempty"` Datacenter NullableVirtualizationVmwareDatacenterRelationship `json:"Datacenter,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_switch_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_switch_list.go index d47a2a1ec9..579e150975 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_switch_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_switch_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_switch_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_switch_relationship.go index d605d47d23..a4f682c84c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_switch_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_switch_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_switch_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_switch_response.go index cbe7a76376..ec029dd47e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_switch_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_distributed_switch_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_folder.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_folder.go index e59913d41f..deda6b5ff0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_folder.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_folder.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_folder_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_folder_list.go index 6f5f62536b..6e022f9bc5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_folder_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_folder_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_folder_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_folder_relationship.go index f2076aa1f6..e13d9f3223 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_folder_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_folder_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_folder_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_folder_response.go index 32a0b797bb..63d9b4c1f7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_folder_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_folder_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host.go index 3a70cb1ffe..632157ae87 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host_gpu.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host_gpu.go index dd6eee8acc..d2f88d2434 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host_gpu.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host_gpu.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host_gpu_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host_gpu_list.go index f2b559f46d..98f097ecc1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host_gpu_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host_gpu_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host_gpu_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host_gpu_response.go index da3ce46ad2..a70adcdd04 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host_gpu_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host_gpu_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host_list.go index 8b46f448f5..bd3c45f354 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host_relationship.go index 189bebcffb..f8a9466e12 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host_response.go index eb3b71600b..4d87d13001 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_host_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_kernel_network.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_kernel_network.go index eee9ab5d5f..bb095b2341 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_kernel_network.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_kernel_network.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -32,7 +32,7 @@ type VirtualizationVmwareKernelNetwork struct { FaultToleranceLogging *bool `json:"FaultToleranceLogging,omitempty"` IpAddress []string `json:"IpAddress,omitempty"` // Standard MAC address assigned to this kernel network. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"` // Indicates that management traffic is enabled on this kernel network. Management *bool `json:"Management,omitempty"` // Maximum transmission unit configured on a kernel network. @@ -784,7 +784,7 @@ func (o *VirtualizationVmwareKernelNetwork) UnmarshalJSON(data []byte) (err erro FaultToleranceLogging *bool `json:"FaultToleranceLogging,omitempty"` IpAddress []string `json:"IpAddress,omitempty"` // Standard MAC address assigned to this kernel network. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"` // Indicates that management traffic is enabled on this kernel network. Management *bool `json:"Management,omitempty"` // Maximum transmission unit configured on a kernel network. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_kernel_network_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_kernel_network_list.go index 5e10922e08..fa19a87393 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_kernel_network_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_kernel_network_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_kernel_network_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_kernel_network_response.go index 266e94d0f6..7d4cf6fa43 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_kernel_network_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_kernel_network_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_network.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_network.go index fcaf981f4a..84025bda37 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_network.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_network.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_network_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_network_list.go index 9882902cc4..ae14efe9eb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_network_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_network_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_network_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_network_relationship.go index 465fc1a494..d35ac959f1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_network_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_network_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_network_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_network_response.go index 6bdd91c28e..0725f1feac 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_network_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_network_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_physical_network_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_physical_network_interface.go index 5b5b7e61eb..1a0c799240 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_physical_network_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_physical_network_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type VirtualizationVmwarePhysicalNetworkInterface struct { // Link speed of the physical network interface. LinkSpeed *int32 `json:"LinkSpeed,omitempty"` // Standard MAC address assigned to physical network interface. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"` // PCI info for physical network interface. Pci *string `json:"Pci,omitempty"` // Switch associated with the physical network interface. @@ -432,7 +432,7 @@ func (o *VirtualizationVmwarePhysicalNetworkInterface) UnmarshalJSON(data []byte // Link speed of the physical network interface. LinkSpeed *int32 `json:"LinkSpeed,omitempty"` // Standard MAC address assigned to physical network interface. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"` // PCI info for physical network interface. Pci *string `json:"Pci,omitempty"` // Switch associated with the physical network interface. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_physical_network_interface_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_physical_network_interface_list.go index c674aaceaf..043c0478cf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_physical_network_interface_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_physical_network_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_physical_network_interface_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_physical_network_interface_relationship.go index 3626dad063..d0b2bce9f6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_physical_network_interface_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_physical_network_interface_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_physical_network_interface_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_physical_network_interface_response.go index 8d3fc7a9b6..391c152d9a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_physical_network_interface_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_physical_network_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_proactive_ha.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_proactive_ha.go index ab3886c2ae..570a718b35 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_proactive_ha.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_proactive_ha.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_proactive_ha_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_proactive_ha_list.go index c0ec772f3c..400071939e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_proactive_ha_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_proactive_ha_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_proactive_ha_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_proactive_ha_response.go index b299576234..0c2c41b461 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_proactive_ha_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_proactive_ha_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_remote_display_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_remote_display_info.go index 0466b3cf24..791ff4794a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_remote_display_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_remote_display_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_resource_allocation_system_traffic_types.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_resource_allocation_system_traffic_types.go index fd0d9f1b9c..33c0b7edc9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_resource_allocation_system_traffic_types.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_resource_allocation_system_traffic_types.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_resource_consumption.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_resource_consumption.go index 7e04249a4f..52b744aac1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_resource_consumption.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_resource_consumption.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_shares_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_shares_info.go index 74a2ed265a..d152bed0c3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_shares_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_shares_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_teaming_and_failover.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_teaming_and_failover.go index 98b4b49866..df8bf2839b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_teaming_and_failover.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_teaming_and_failover.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_uplink_port.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_uplink_port.go index 6e8aeff5ed..7fa0fa78b8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_uplink_port.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_uplink_port.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_uplink_port_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_uplink_port_list.go index 4936e1c809..997c633348 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_uplink_port_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_uplink_port_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_uplink_port_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_uplink_port_response.go index 97d383a020..56b4aad86e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_uplink_port_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_uplink_port_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vcenter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vcenter.go index e409ae74a9..0246be9bda 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vcenter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vcenter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vcenter_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vcenter_list.go index a613f279ad..b33e98d6c8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vcenter_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vcenter_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vcenter_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vcenter_relationship.go index 8eabb2f62a..796a1379a7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vcenter_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vcenter_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vcenter_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vcenter_response.go index 97b7783750..13164cd92d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vcenter_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vcenter_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_disk.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_disk.go index e8f69e5478..3a460829b9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_disk.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_disk.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -54,9 +54,9 @@ type VirtualizationVmwareVirtualDisk struct { // Unit number of the disk on its controller. UnitNumber *int64 `json:"UnitNumber,omitempty"` // UUID assigned by vCenter to every disk. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Identity of the virtual disk object as the first class entity. - VdiskId *string `json:"VdiskId,omitempty"` + VdiskId *string `json:"VdiskId,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Vendor of the storage device. Vendor *string `json:"Vendor,omitempty"` // Path of the virtual disk. @@ -1011,9 +1011,9 @@ func (o *VirtualizationVmwareVirtualDisk) UnmarshalJSON(data []byte) (err error) // Unit number of the disk on its controller. UnitNumber *int64 `json:"UnitNumber,omitempty"` // UUID assigned by vCenter to every disk. - Uuid *string `json:"Uuid,omitempty"` + Uuid *string `json:"Uuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Identity of the virtual disk object as the first class entity. - VdiskId *string `json:"VdiskId,omitempty"` + VdiskId *string `json:"VdiskId,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Vendor of the storage device. Vendor *string `json:"Vendor,omitempty"` // Path of the virtual disk. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_disk_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_disk_list.go index 728ee8fa78..5d914a10b4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_disk_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_disk_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_disk_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_disk_response.go index 13b0d8b039..2e06e1a323 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_disk_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_disk_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine.go index c88e00afc2..a0cf42df4a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -55,7 +55,7 @@ type VirtualizationVmwareVirtualMachine struct { // Minimum host ESXi version required for the virtual machine. HostCompatibility *string `json:"HostCompatibility,omitempty"` // UUID assigned by vCenter to every VM. - InstanceUuid *string `json:"InstanceUuid,omitempty"` + InstanceUuid *string `json:"InstanceUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Inventory path to the VM. Example - /DC/vm/folder/VMName. InventoryPath *string `json:"InventoryPath,omitempty"` // If true, indicates that the entity refers to a template of a virtual machine and not a real virtual machine. @@ -2066,7 +2066,7 @@ func (o *VirtualizationVmwareVirtualMachine) UnmarshalJSON(data []byte) (err err // Minimum host ESXi version required for the virtual machine. HostCompatibility *string `json:"HostCompatibility,omitempty"` // UUID assigned by vCenter to every VM. - InstanceUuid *string `json:"InstanceUuid,omitempty"` + InstanceUuid *string `json:"InstanceUuid,omitempty" validate:"regexp=^$|^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"` // Inventory path to the VM. Example - /DC/vm/folder/VMName. InventoryPath *string `json:"InventoryPath,omitempty"` // If true, indicates that the entity refers to a template of a virtual machine and not a real virtual machine. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu.go index 694f272be2..ad590253eb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu_list.go index 26c5a03499..51985e6b0a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu_response.go index 95ad332605..1d7aac9d45 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_list.go index 91a9001a61..0417159abb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_relationship.go index d218cf160e..d29b5cfc94 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_response.go index 808cb416da..2b9e401499 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_snapshot.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_snapshot.go index 7138db3fe0..ebda8579df 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_snapshot.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_snapshot.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_snapshot_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_snapshot_list.go index bea61d8155..039880fbd4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_snapshot_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_snapshot_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_snapshot_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_snapshot_response.go index 310cd2c678..283d3d0248 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_snapshot_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_machine_snapshot_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_network_interface.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_network_interface.go index fcc13a85ca..0c1276b6eb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_network_interface.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_network_interface.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -37,7 +37,7 @@ type VirtualizationVmwareVirtualNetworkInterface struct { // The internally assigned key of this virtual network interface. This entity is not manipulated by users. Key *int64 `json:"Key,omitempty"` // MAC address assigned to virtual network interface. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"` // MAC address type for the mac address assigned to virtual network interface. * `manual` - Statically assigned MAC address. * `generated` - Automatically generated MAC address. * `assigned` - MAC address assigned by VCenter to the virtual network interface card. MacAddressType *string `json:"MacAddressType,omitempty"` // Type of network for virtual network interface. It can be either standard or distributed. @@ -598,7 +598,7 @@ func (o *VirtualizationVmwareVirtualNetworkInterface) UnmarshalJSON(data []byte) // The internally assigned key of this virtual network interface. This entity is not manipulated by users. Key *int64 `json:"Key,omitempty"` // MAC address assigned to virtual network interface. - MacAddress *string `json:"MacAddress,omitempty"` + MacAddress *string `json:"MacAddress,omitempty" validate:"regexp=^$|^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"` // MAC address type for the mac address assigned to virtual network interface. * `manual` - Statically assigned MAC address. * `generated` - Automatically generated MAC address. * `assigned` - MAC address assigned by VCenter to the virtual network interface card. MacAddressType *string `json:"MacAddressType,omitempty"` // Type of network for virtual network interface. It can be either standard or distributed. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_network_interface_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_network_interface_list.go index 18709ca66b..837e45f960 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_network_interface_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_network_interface_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_network_interface_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_network_interface_response.go index b4cfc61300..ac39e1eec7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_network_interface_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_network_interface_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_switch.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_switch.go index 083bb8ded3..7aa791df68 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_switch.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_switch.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_switch_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_switch_list.go index 707eeeed85..63b94f3013 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_switch_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_switch_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_switch_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_switch_relationship.go index e772d61527..df4c3e2d7d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_switch_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_switch_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_switch_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_switch_response.go index 5c4682cb3e..3c5266b790 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_switch_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_virtual_switch_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vlan_range.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vlan_range.go index 9d16e80d2a..14bf500d4b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vlan_range.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vlan_range.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vm_cpu_share_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vm_cpu_share_info.go index a73340d5dc..8323723eff 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vm_cpu_share_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vm_cpu_share_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vm_cpu_socket_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vm_cpu_socket_info.go index 53bb12e348..9e7487232d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vm_cpu_socket_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vm_cpu_socket_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vm_disk_commit_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vm_disk_commit_info.go index 17594e20c5..d016e9b8ac 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vm_disk_commit_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vm_disk_commit_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vm_memory_share_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vm_memory_share_info.go index 028e6a82dc..31af8dd8cc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vm_memory_share_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_vmware_vm_memory_share_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_volume_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_volume_info.go index d77376a391..d6184f86a9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_volume_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_virtualization_volume_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_mapping.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_mapping.go index 447c3ed287..d337132dfd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_mapping.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_mapping.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -45,15 +45,15 @@ type VmediaMapping struct { // Password associated with the username. Password *string `json:"Password,omitempty"` // The remote file location path for the virtual media mapping. Accepted formats are: HDD for CIFS/NFS: hostname-or-IP/filePath/fileName.img. CDD for CIFS/NFS: hostname-or-IP/filePath/fileName.iso. HDD for HTTP/S: http[s]://hostname-or-IP/filePath/fileName.img. CDD for HTTP/S: http[s]://hostname-or-IP/filePath/fileName.iso. - RemoteFile *string `json:"RemoteFile,omitempty"` + RemoteFile *string `json:"RemoteFile,omitempty" validate:"regexp=^$|^[ !#$%\\\\(\\\\)\\\\+,\\\\-\\\\.:\\\\?@\\\\[\\\\]_\\\\{\\\\}=~a-zA-Z0-9]+$"` // URL path to the location of the image on the remote server. The preferred format is '/path'. - RemotePath *string `json:"RemotePath,omitempty"` + RemotePath *string `json:"RemotePath,omitempty" validate:"regexp=^$|^[ !#$%\\\\(\\\\)\\\\+,\\\\-\\\\.\\/:\\\\?@\\\\[\\\\]_\\\\{\\\\}=~a-zA-Z0-9]+$"` // File Location in standard format 'hostname/filePath/fileName'. This field should be used to calculate config drift. User input format may vary while inventory will return data in format in compliance with mount option for the mount. Both will be converged to this standard format for comparison. SanitizedFileLocation *string `json:"SanitizedFileLocation,omitempty"` // Username to log in to the remote server. Username *string `json:"Username,omitempty"` // Identity of the image for Virtual Media mapping. - VolumeName *string `json:"VolumeName,omitempty"` + VolumeName *string `json:"VolumeName,omitempty" validate:"regexp=^[\\\\-\\\\.:_a-zA-Z0-9]+$"` AdditionalProperties map[string]interface{} } @@ -705,15 +705,15 @@ func (o *VmediaMapping) UnmarshalJSON(data []byte) (err error) { // Password associated with the username. Password *string `json:"Password,omitempty"` // The remote file location path for the virtual media mapping. Accepted formats are: HDD for CIFS/NFS: hostname-or-IP/filePath/fileName.img. CDD for CIFS/NFS: hostname-or-IP/filePath/fileName.iso. HDD for HTTP/S: http[s]://hostname-or-IP/filePath/fileName.img. CDD for HTTP/S: http[s]://hostname-or-IP/filePath/fileName.iso. - RemoteFile *string `json:"RemoteFile,omitempty"` + RemoteFile *string `json:"RemoteFile,omitempty" validate:"regexp=^$|^[ !#$%\\\\(\\\\)\\\\+,\\\\-\\\\.:\\\\?@\\\\[\\\\]_\\\\{\\\\}=~a-zA-Z0-9]+$"` // URL path to the location of the image on the remote server. The preferred format is '/path'. - RemotePath *string `json:"RemotePath,omitempty"` + RemotePath *string `json:"RemotePath,omitempty" validate:"regexp=^$|^[ !#$%\\\\(\\\\)\\\\+,\\\\-\\\\.\\/:\\\\?@\\\\[\\\\]_\\\\{\\\\}=~a-zA-Z0-9]+$"` // File Location in standard format 'hostname/filePath/fileName'. This field should be used to calculate config drift. User input format may vary while inventory will return data in format in compliance with mount option for the mount. Both will be converged to this standard format for comparison. SanitizedFileLocation *string `json:"SanitizedFileLocation,omitempty"` // Username to log in to the remote server. Username *string `json:"Username,omitempty"` // Identity of the image for Virtual Media mapping. - VolumeName *string `json:"VolumeName,omitempty"` + VolumeName *string `json:"VolumeName,omitempty" validate:"regexp=^[\\\\-\\\\.:_a-zA-Z0-9]+$"` } varVmediaMappingWithoutEmbeddedStruct := VmediaMappingWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_policy.go index 00c780a250..2de62a5c55 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_policy_inventory.go index d7a0778499..89e5173ff6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_policy_inventory_list.go index 7a4e1bc207..0717b0c126 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_policy_inventory_response.go index 8bef3ecd85..12f41e6f70 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_policy_list.go index 4c700230c7..4d75bbd7fb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_policy_response.go index 45f2d8849d..f1412e27c9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmedia_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmrc_console.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmrc_console.go index 04a284f8a4..82c91d35c7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmrc_console.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmrc_console.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmrc_console_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmrc_console_list.go index 56cf1b677e..1d9e3cd40a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmrc_console_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmrc_console_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmrc_console_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmrc_console_response.go index 879860683a..28f98a8274 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmrc_console_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vmrc_console_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_arfs_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_arfs_settings.go index 3d39e060b0..a165259440 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_arfs_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_arfs_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_base_eth_if.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_base_eth_if.go index 47ce6028cd..b2b0725651 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_base_eth_if.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_base_eth_if.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -32,7 +32,7 @@ type VnicBaseEthIf struct { // Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster. FailoverEnabled *bool `json:"FailoverEnabled,omitempty"` // Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic. - PinGroupName *string `json:"PinGroupName,omitempty"` + PinGroupName *string `json:"PinGroupName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_.:-]{1,64}$"` SriovSettings NullableVnicSriovSettings `json:"SriovSettings,omitempty"` UsnicSettings NullableVnicUsnicSettings `json:"UsnicSettings,omitempty"` VmqSettings NullableVnicVmqSettings `json:"VmqSettings,omitempty"` @@ -762,7 +762,7 @@ func (o *VnicBaseEthIf) UnmarshalJSON(data []byte) (err error) { // Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster. FailoverEnabled *bool `json:"FailoverEnabled,omitempty"` // Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic. - PinGroupName *string `json:"PinGroupName,omitempty"` + PinGroupName *string `json:"PinGroupName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_.:-]{1,64}$"` SriovSettings NullableVnicSriovSettings `json:"SriovSettings,omitempty"` UsnicSettings NullableVnicUsnicSettings `json:"UsnicSettings,omitempty"` VmqSettings NullableVnicVmqSettings `json:"VmqSettings,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_base_fc_if.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_base_fc_if.go index c76dd02031..cee04be34b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_base_fc_if.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_base_fc_if.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type VnicBaseFcIf struct { // Enables retention of LUN ID associations in memory until they are manually cleared. PersistentBindings *bool `json:"PersistentBindings,omitempty"` // Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic. - PinGroupName *string `json:"PinGroupName,omitempty"` + PinGroupName *string `json:"PinGroupName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_.:-]{1,64}$"` // VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters. * `fc-initiator` - The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems. * `fc-nvme-initiator` - Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. * `fc-nvme-target` - Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver. * `fc-target` - Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver. Type *string `json:"Type,omitempty"` FcAdapterPolicy NullableVnicFcAdapterPolicyRelationship `json:"FcAdapterPolicy,omitempty"` @@ -516,7 +516,7 @@ func (o *VnicBaseFcIf) UnmarshalJSON(data []byte) (err error) { // Enables retention of LUN ID associations in memory until they are manually cleared. PersistentBindings *bool `json:"PersistentBindings,omitempty"` // Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic. - PinGroupName *string `json:"PinGroupName,omitempty"` + PinGroupName *string `json:"PinGroupName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_.:-]{1,64}$"` // VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters. * `fc-initiator` - The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems. * `fc-nvme-initiator` - Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. * `fc-nvme-target` - Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver. * `fc-target` - Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver. Type *string `json:"Type,omitempty"` FcAdapterPolicy NullableVnicFcAdapterPolicyRelationship `json:"FcAdapterPolicy,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_cdn.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_cdn.go index 6412f68b89..fd23b7be64 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_cdn.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_cdn.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type VnicCdn struct { // Source of the CDN. It can either be user specified or be the same as the vNIC name. * `vnic` - Source of the CDN is the same as the vNIC name. * `user` - Source of the CDN is specified by the user. Source *string `json:"Source,omitempty"` // The CDN value entered in case of user defined mode. - Value *string `json:"Value,omitempty"` + Value *string `json:"Value,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\-\\\\._:]*$"` AdditionalProperties map[string]interface{} } @@ -276,7 +276,7 @@ func (o *VnicCdn) UnmarshalJSON(data []byte) (err error) { // Source of the CDN. It can either be user specified or be the same as the vNIC name. * `vnic` - Source of the CDN is the same as the vNIC name. * `user` - Source of the CDN is specified by the user. Source *string `json:"Source,omitempty"` // The CDN value entered in case of user defined mode. - Value *string `json:"Value,omitempty"` + Value *string `json:"Value,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\-\\\\._:]*$"` } varVnicCdnWithoutEmbeddedStruct := VnicCdnWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_completion_queue_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_completion_queue_settings.go index 6f6f54373a..dd7fd408d2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_completion_queue_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_completion_queue_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy.go index 75c95ffd7b..afb3445c7d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_inventory.go index c09d61dd4c..30cac1efb7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_inventory_list.go index 2fa24772d2..e3034312f0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_inventory_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_inventory_relationship.go index 8e55afaf5a..98e871ed47 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_inventory_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_inventory_response.go index 7475cd330b..4423fb2ae0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_list.go index a64ab7bedd..44e7dea366 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_relationship.go index 9c4e9cc208..de60062881 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_response.go index 58f355803e..9b1dbdce5f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_adapter_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if.go index 417d6184f0..6ee485fa88 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -32,13 +32,13 @@ type VnicEthIf struct { IscsiIpV4AddressAllocationType *string `json:"IscsiIpV4AddressAllocationType,omitempty"` IscsiIpV4Config NullableIppoolIpV4Config `json:"IscsiIpV4Config,omitempty"` // IP address associated to the vNIC. - IscsiIpv4Address *string `json:"IscsiIpv4Address,omitempty"` + IscsiIpv4Address *string `json:"IscsiIpv4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The MAC address that is assigned to the vNIC based on the MAC pool that has been assigned to the LAN Connectivity Policy. MacAddress *string `json:"MacAddress,omitempty"` // Type of allocation selected to assign a MAC address for the vnic. * `POOL` - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface. * `STATIC` - The user assigns a static mac/wwn address for the Virtual Interface. MacAddressType *string `json:"MacAddressType,omitempty"` // Name of the virtual ethernet interface. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]+$"` // The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two. Order *int64 `json:"Order,omitempty"` OverriddenList []string `json:"OverriddenList,omitempty"` @@ -1100,13 +1100,13 @@ func (o *VnicEthIf) UnmarshalJSON(data []byte) (err error) { IscsiIpV4AddressAllocationType *string `json:"IscsiIpV4AddressAllocationType,omitempty"` IscsiIpV4Config NullableIppoolIpV4Config `json:"IscsiIpV4Config,omitempty"` // IP address associated to the vNIC. - IscsiIpv4Address *string `json:"IscsiIpv4Address,omitempty"` + IscsiIpv4Address *string `json:"IscsiIpv4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The MAC address that is assigned to the vNIC based on the MAC pool that has been assigned to the LAN Connectivity Policy. MacAddress *string `json:"MacAddress,omitempty"` // Type of allocation selected to assign a MAC address for the vnic. * `POOL` - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface. * `STATIC` - The user assigns a static mac/wwn address for the Virtual Interface. MacAddressType *string `json:"MacAddressType,omitempty"` // Name of the virtual ethernet interface. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]+$"` // The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two. Order *int64 `json:"Order,omitempty"` OverriddenList []string `json:"OverriddenList,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_inventory.go index 782abd2160..c1f867666c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,18 +35,18 @@ type VnicEthIfInventory struct { IscsiIpV4AddressAllocationType *string `json:"IscsiIpV4AddressAllocationType,omitempty"` IscsiIpV4Config NullableIppoolIpV4Config `json:"IscsiIpV4Config,omitempty"` // IP address associated to the vNIC. - IscsiIpv4Address *string `json:"IscsiIpv4Address,omitempty"` + IscsiIpv4Address *string `json:"IscsiIpv4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The MAC address that is assigned to the vNIC based on the MAC pool that has been assigned to the LAN Connectivity Policy. MacAddress *string `json:"MacAddress,omitempty"` // Type of allocation selected to assign a MAC address for the vnic. * `POOL` - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface. * `STATIC` - The user assigns a static mac/wwn address for the Virtual Interface. MacAddressType *string `json:"MacAddressType,omitempty"` // Name of the virtual ethernet interface. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]+$"` // The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two. Order *int64 `json:"Order,omitempty"` OverriddenList []string `json:"OverriddenList,omitempty"` // Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic. - PinGroupName *string `json:"PinGroupName,omitempty"` + PinGroupName *string `json:"PinGroupName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_.:-]{1,64}$"` Placement NullableVnicPlacementSettings `json:"Placement,omitempty"` SriovSettings NullableVnicSriovSettings `json:"SriovSettings,omitempty"` // The Standby VIF Id is applicable for failover enabled vNICS. It should be the same as the channel number of the standby vethernet created on switch in order to set up the standby data path. @@ -1632,18 +1632,18 @@ func (o *VnicEthIfInventory) UnmarshalJSON(data []byte) (err error) { IscsiIpV4AddressAllocationType *string `json:"IscsiIpV4AddressAllocationType,omitempty"` IscsiIpV4Config NullableIppoolIpV4Config `json:"IscsiIpV4Config,omitempty"` // IP address associated to the vNIC. - IscsiIpv4Address *string `json:"IscsiIpv4Address,omitempty"` + IscsiIpv4Address *string `json:"IscsiIpv4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` // The MAC address that is assigned to the vNIC based on the MAC pool that has been assigned to the LAN Connectivity Policy. MacAddress *string `json:"MacAddress,omitempty"` // Type of allocation selected to assign a MAC address for the vnic. * `POOL` - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface. * `STATIC` - The user assigns a static mac/wwn address for the Virtual Interface. MacAddressType *string `json:"MacAddressType,omitempty"` // Name of the virtual ethernet interface. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]+$"` // The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two. Order *int64 `json:"Order,omitempty"` OverriddenList []string `json:"OverriddenList,omitempty"` // Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic. - PinGroupName *string `json:"PinGroupName,omitempty"` + PinGroupName *string `json:"PinGroupName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_.:-]{1,64}$"` Placement NullableVnicPlacementSettings `json:"Placement,omitempty"` SriovSettings NullableVnicSriovSettings `json:"SriovSettings,omitempty"` // The Standby VIF Id is applicable for failover enabled vNICS. It should be the same as the channel number of the standby vethernet created on switch in order to set up the standby data path. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_inventory_list.go index 63c866fe37..b38612cf7e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_inventory_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_inventory_relationship.go index 6fbbb2d8b4..4550814608 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_inventory_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_inventory_response.go index 27c7c91920..f3f8b1e186 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_list.go index d7f00340b3..794ef79091 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_relationship.go index e77cc3ffce..dfdd5baaba 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_response.go index 29cc0a9514..14607b9085 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_if_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_interrupt_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_interrupt_settings.go index c07b9434a7..cb9771c960 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_interrupt_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_interrupt_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy.go index 18a12e9bf2..efb2216061 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_inventory.go index b6e73ca9c6..868cef1771 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_inventory_list.go index 8ff929b6be..810c877096 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_inventory_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_inventory_relationship.go index 78b95a93a8..0e6e430cda 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_inventory_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_inventory_response.go index ef8d2d96f9..5df0cec894 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_list.go index e828ecc418..1881fbad47 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_relationship.go index 0db1483f7c..ec98f3e7cb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_response.go index 86908c950c..14614f908f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_network_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy.go index 38091ae948..ad60e497d8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_inventory.go index c9e7fde4ae..2e888efd8a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_inventory_list.go index 0bb709504a..a6a5b5ee7d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_inventory_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_inventory_relationship.go index 57c6c45124..94d8a9a32a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_inventory_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_inventory_response.go index 23cb186fc9..4fefc7a361 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_list.go index 65642f2ba0..d61bb2e1a9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_relationship.go index e510af3a04..76b4ef4df1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_response.go index c80bab7cfe..e6892f3b7f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_qos_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_rx_queue_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_rx_queue_settings.go index 0ea9b7cef6..4ecc1bef6b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_rx_queue_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_rx_queue_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_tx_queue_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_tx_queue_settings.go index ecc75d579c..5c846a417b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_tx_queue_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_tx_queue_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_veth_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_veth_inventory.go index c05d9247ee..649b86a8a6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_veth_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_veth_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_veth_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_veth_inventory_list.go index 726e10ca88..432b3d8627 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_veth_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_veth_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_veth_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_veth_inventory_response.go index e8ac3e6972..d89b3abb11 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_veth_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_veth_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_vnic_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_vnic_inventory.go index 1d4e2be2d7..42d11f2213 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_vnic_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_vnic_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_vnic_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_vnic_inventory_list.go index 2f5b5df025..b81f66a3fa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_vnic_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_vnic_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_vnic_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_vnic_inventory_response.go index 80da3929b3..0c93e5030f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_vnic_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_eth_vnic_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy.go index 433d63362d..75f2e9d3e0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_inventory.go index 4931b30a28..247b685fc4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_inventory_list.go index fea9a27d6b..bd04ae7a0d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_inventory_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_inventory_relationship.go index 834a56325d..866b478b16 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_inventory_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_inventory_response.go index 22e999d29c..4177a111ab 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_list.go index 1c92dbdbd3..73d15dfd98 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_relationship.go index f272c395a2..20a8e9e131 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_response.go index 69e8486927..874f39dfd1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_adapter_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_error_recovery_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_error_recovery_settings.go index 627aeb56d0..06ee7e4874 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_error_recovery_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_error_recovery_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if.go index 24208c8973..ccf4924387 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,13 +29,13 @@ type VnicFcIf struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of the virtual fibre channel interface. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\-\\\\._:]+$"` // The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two. Order *int64 `json:"Order,omitempty"` OverriddenList []string `json:"OverriddenList,omitempty"` Placement NullableVnicPlacementSettings `json:"Placement,omitempty"` // The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF. To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx. - StaticWwpnAddress *string `json:"StaticWwpnAddress,omitempty"` + StaticWwpnAddress *string `json:"StaticWwpnAddress,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` TemplateActions []MotemplateActionEntry `json:"TemplateActions,omitempty"` TemplateSyncErrors []MotemplateSyncError `json:"TemplateSyncErrors,omitempty"` // The sync status of the current MO wrt the attached Template MO. * `None` - The Enum value represents that the object is not attached to any template. * `OK` - The Enum value represents that the object values are in sync with attached template. * `Scheduled` - The Enum value represents that the object sync from attached template is scheduled from template. * `InProgress` - The Enum value represents that the object sync with the attached template is in progress. * `OutOfSync` - The Enum value represents that the object values are not in sync with attached template. @@ -43,7 +43,7 @@ type VnicFcIf struct { // This should be the same as the channel number of the vfc created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vfc is created on the switch for every vHBA. VifId *int64 `json:"VifId,omitempty"` // The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy. - Wwpn *string `json:"Wwpn,omitempty"` + Wwpn *string `json:"Wwpn,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` // Type of allocation selected to assign a WWPN address to the vhba. * `POOL` - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface. * `STATIC` - The user assigns a static mac/wwn address for the Virtual Interface. WwpnAddressType *string `json:"WwpnAddressType,omitempty"` Profile NullablePolicyAbstractConfigProfileRelationship `json:"Profile,omitempty"` @@ -892,13 +892,13 @@ func (o *VnicFcIf) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of the virtual fibre channel interface. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\-\\\\._:]+$"` // The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two. Order *int64 `json:"Order,omitempty"` OverriddenList []string `json:"OverriddenList,omitempty"` Placement NullableVnicPlacementSettings `json:"Placement,omitempty"` // The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF. To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx. - StaticWwpnAddress *string `json:"StaticWwpnAddress,omitempty"` + StaticWwpnAddress *string `json:"StaticWwpnAddress,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` TemplateActions []MotemplateActionEntry `json:"TemplateActions,omitempty"` TemplateSyncErrors []MotemplateSyncError `json:"TemplateSyncErrors,omitempty"` // The sync status of the current MO wrt the attached Template MO. * `None` - The Enum value represents that the object is not attached to any template. * `OK` - The Enum value represents that the object values are in sync with attached template. * `Scheduled` - The Enum value represents that the object sync from attached template is scheduled from template. * `InProgress` - The Enum value represents that the object sync with the attached template is in progress. * `OutOfSync` - The Enum value represents that the object values are not in sync with attached template. @@ -906,7 +906,7 @@ func (o *VnicFcIf) UnmarshalJSON(data []byte) (err error) { // This should be the same as the channel number of the vfc created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vfc is created on the switch for every vHBA. VifId *int64 `json:"VifId,omitempty"` // The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy. - Wwpn *string `json:"Wwpn,omitempty"` + Wwpn *string `json:"Wwpn,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` // Type of allocation selected to assign a WWPN address to the vhba. * `POOL` - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface. * `STATIC` - The user assigns a static mac/wwn address for the Virtual Interface. WwpnAddressType *string `json:"WwpnAddressType,omitempty"` Profile NullablePolicyAbstractConfigProfileRelationship `json:"Profile,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_inventory.go index b74d547435..97ab5a9669 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,17 +29,17 @@ type VnicFcIfInventory struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of the virtual fibre channel interface. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\-\\\\._:]+$"` // The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two. Order *int64 `json:"Order,omitempty"` OverriddenList []string `json:"OverriddenList,omitempty"` // Enables retention of LUN ID associations in memory until they are manually cleared. PersistentBindings *bool `json:"PersistentBindings,omitempty"` // Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic. - PinGroupName *string `json:"PinGroupName,omitempty"` + PinGroupName *string `json:"PinGroupName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_.:-]{1,64}$"` Placement NullableVnicPlacementSettings `json:"Placement,omitempty"` // The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF. To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx. - StaticWwpnAddress *string `json:"StaticWwpnAddress,omitempty"` + StaticWwpnAddress *string `json:"StaticWwpnAddress,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` TemplateActions []MotemplateActionEntry `json:"TemplateActions,omitempty"` TemplateSyncErrors []MotemplateSyncError `json:"TemplateSyncErrors,omitempty"` // The sync status of the current MO wrt the attached Template MO. * `None` - The Enum value represents that the object is not attached to any template. * `OK` - The Enum value represents that the object values are in sync with attached template. * `Scheduled` - The Enum value represents that the object sync from attached template is scheduled from template. * `InProgress` - The Enum value represents that the object sync with the attached template is in progress. * `OutOfSync` - The Enum value represents that the object values are not in sync with attached template. @@ -49,7 +49,7 @@ type VnicFcIfInventory struct { // This should be the same as the channel number of the vfc created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vfc is created on the switch for every vHBA. VifId *int64 `json:"VifId,omitempty"` // The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy. - Wwpn *string `json:"Wwpn,omitempty"` + Wwpn *string `json:"Wwpn,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` // Type of allocation selected to assign a WWPN address to the vhba. * `POOL` - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface. * `STATIC` - The user assigns a static mac/wwn address for the Virtual Interface. WwpnAddressType *string `json:"WwpnAddressType,omitempty"` FcAdapterPolicy NullableVnicFcAdapterPolicyInventoryRelationship `json:"FcAdapterPolicy,omitempty"` @@ -1176,17 +1176,17 @@ func (o *VnicFcIfInventory) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Name of the virtual fibre channel interface. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9\\\\-\\\\._:]+$"` // The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two. Order *int64 `json:"Order,omitempty"` OverriddenList []string `json:"OverriddenList,omitempty"` // Enables retention of LUN ID associations in memory until they are manually cleared. PersistentBindings *bool `json:"PersistentBindings,omitempty"` // Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic. - PinGroupName *string `json:"PinGroupName,omitempty"` + PinGroupName *string `json:"PinGroupName,omitempty" validate:"regexp=^$|^[a-zA-Z0-9_.:-]{1,64}$"` Placement NullableVnicPlacementSettings `json:"Placement,omitempty"` // The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF. To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx. - StaticWwpnAddress *string `json:"StaticWwpnAddress,omitempty"` + StaticWwpnAddress *string `json:"StaticWwpnAddress,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` TemplateActions []MotemplateActionEntry `json:"TemplateActions,omitempty"` TemplateSyncErrors []MotemplateSyncError `json:"TemplateSyncErrors,omitempty"` // The sync status of the current MO wrt the attached Template MO. * `None` - The Enum value represents that the object is not attached to any template. * `OK` - The Enum value represents that the object values are in sync with attached template. * `Scheduled` - The Enum value represents that the object sync from attached template is scheduled from template. * `InProgress` - The Enum value represents that the object sync with the attached template is in progress. * `OutOfSync` - The Enum value represents that the object values are not in sync with attached template. @@ -1196,7 +1196,7 @@ func (o *VnicFcIfInventory) UnmarshalJSON(data []byte) (err error) { // This should be the same as the channel number of the vfc created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vfc is created on the switch for every vHBA. VifId *int64 `json:"VifId,omitempty"` // The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy. - Wwpn *string `json:"Wwpn,omitempty"` + Wwpn *string `json:"Wwpn,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` // Type of allocation selected to assign a WWPN address to the vhba. * `POOL` - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface. * `STATIC` - The user assigns a static mac/wwn address for the Virtual Interface. WwpnAddressType *string `json:"WwpnAddressType,omitempty"` FcAdapterPolicy NullableVnicFcAdapterPolicyInventoryRelationship `json:"FcAdapterPolicy,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_inventory_list.go index b3b5b87a9f..8bcd167077 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_inventory_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_inventory_relationship.go index 9bab4b87bc..8872e8f255 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_inventory_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_inventory_response.go index a9109893fc..2b1fa90bf4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_list.go index ebc6a8df31..f78c640670 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_relationship.go index 082e99e405..4d65fdded0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_response.go index 67e4e105cf..5dec8f0dad 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_if_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_interrupt_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_interrupt_settings.go index 4add4817dc..6f25e3d12b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_interrupt_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_interrupt_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy.go index 18d0daaf68..02cbff859d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_inventory.go index ca8bd963c2..43cb4b280c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_inventory_list.go index 94ed3fc481..a1bcde3772 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_inventory_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_inventory_relationship.go index 5326c77623..98fd1ab1cb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_inventory_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_inventory_response.go index bedce00d85..bca49e452f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_list.go index 8b23a8ebb7..b908bbfcdf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_relationship.go index 521d0d6e1c..a6f6db2adc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_response.go index 9a5eb59174..016f41285d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_network_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy.go index 58ac5b1a5c..ebeb57d65f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_inventory.go index a71b93d29c..67b7bab4b2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_inventory_list.go index c6760c9fde..5f1e97d0d9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_inventory_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_inventory_relationship.go index 352aaa2874..c5010eaf8e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_inventory_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_inventory_response.go index 71d23edb69..a376ba9102 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_list.go index 3b01c38bc3..ee3a21775b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_relationship.go index 5bce3d94d2..f40da58a35 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_response.go index 38006d4268..cd6500660d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_qos_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_queue_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_queue_settings.go index 96942f4270..9d29205267 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_queue_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_queue_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_veth_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_veth_inventory.go index 27e2f7ccc2..534be35d8c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_veth_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_veth_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_veth_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_veth_inventory_list.go index 5a30d7c26b..a10aa5a82f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_veth_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_veth_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_veth_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_veth_inventory_response.go index 132422b834..3a099cf296 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_veth_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_veth_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_vhba_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_vhba_policy_inventory.go index ca0c0b1a01..8f83ee4aef 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_vhba_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_vhba_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_vhba_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_vhba_policy_inventory_list.go index 4f77acf92e..1cb9941400 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_vhba_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_vhba_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_vhba_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_vhba_policy_inventory_response.go index 12c2701d02..5fa1a8b9be 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_vhba_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_fc_vhba_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_flogi_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_flogi_settings.go index 7ec3b5f2b4..b0b987b00d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_flogi_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_flogi_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy.go index d05e3ccdae..5096957d29 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory.go index 37ae3ddca4..684d16b4e8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory_list.go index 37e5f82d08..528ec68621 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory_relationship.go index 7b665e6686..b4cfe79c41 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory_response.go index 139e38096e..d8d97186e8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_list.go index 0194a2d638..ad703a154f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_relationship.go index 6e3de57279..c0f83df336 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_response.go index e0d703ed35..ba9c6fd84e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_adapter_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_auth_profile.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_auth_profile.go index e0a9ec399d..328bf48df9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_auth_profile.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_auth_profile.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,9 +31,9 @@ type VnicIscsiAuthProfile struct { // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // Password of Initiator/Target Interface. Enter between 12 and 16 characters, including special characters except spaces, tabs, line breaks. - Password *string `json:"Password,omitempty"` + Password *string `json:"Password,omitempty" validate:"regexp=^$|^[\\\\S+]{12,16}$"` // User Id of Initiator/Target Interface. Enter between 1 and 128 characters, spaces, or special characters. - UserId *string `json:"UserId,omitempty"` + UserId *string `json:"UserId,omitempty" validate:"regexp=^$|^.{1,128}$"` AdditionalProperties map[string]interface{} } @@ -309,9 +309,9 @@ func (o *VnicIscsiAuthProfile) UnmarshalJSON(data []byte) (err error) { // Indicates whether the value of the 'password' property has been set. IsPasswordSet *bool `json:"IsPasswordSet,omitempty"` // Password of Initiator/Target Interface. Enter between 12 and 16 characters, including special characters except spaces, tabs, line breaks. - Password *string `json:"Password,omitempty"` + Password *string `json:"Password,omitempty" validate:"regexp=^$|^[\\\\S+]{12,16}$"` // User Id of Initiator/Target Interface. Enter between 1 and 128 characters, spaces, or special characters. - UserId *string `json:"UserId,omitempty"` + UserId *string `json:"UserId,omitempty" validate:"regexp=^$|^.{1,128}$"` } varVnicIscsiAuthProfileWithoutEmbeddedStruct := VnicIscsiAuthProfileWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy.go index 81fa16e139..451d1c9db1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -34,7 +34,7 @@ type VnicIscsiBootPolicy struct { // Source Type of Initiator IP Address - Auto/Static/Pool. * `DHCP` - The IP address is assigned using DHCP, if available. * `Static` - Static IPv4 address is assigned to the iSCSI boot interface based on the information entered in this area. * `Pool` - An IPv4 address is assigned to the iSCSI boot interface from the management IP address pool. InitiatorIpSource *string `json:"InitiatorIpSource,omitempty"` // Static IP address provided for iSCSI Initiator. - InitiatorStaticIpV4Address *string `json:"InitiatorStaticIpV4Address,omitempty"` + InitiatorStaticIpV4Address *string `json:"InitiatorStaticIpV4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` InitiatorStaticIpV4Config NullableIppoolIpV4Config `json:"InitiatorStaticIpV4Config,omitempty"` MutualChap NullableVnicIscsiAuthProfile `json:"MutualChap,omitempty"` // Source Type of Targets - Auto/Static. * `Static` - Type indicates that static target interface is assigned to iSCSI boot. * `Auto` - Type indicates that the system selects the target interface automatically during iSCSI boot. @@ -733,7 +733,7 @@ func (o *VnicIscsiBootPolicy) UnmarshalJSON(data []byte) (err error) { // Source Type of Initiator IP Address - Auto/Static/Pool. * `DHCP` - The IP address is assigned using DHCP, if available. * `Static` - Static IPv4 address is assigned to the iSCSI boot interface based on the information entered in this area. * `Pool` - An IPv4 address is assigned to the iSCSI boot interface from the management IP address pool. InitiatorIpSource *string `json:"InitiatorIpSource,omitempty"` // Static IP address provided for iSCSI Initiator. - InitiatorStaticIpV4Address *string `json:"InitiatorStaticIpV4Address,omitempty"` + InitiatorStaticIpV4Address *string `json:"InitiatorStaticIpV4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` InitiatorStaticIpV4Config NullableIppoolIpV4Config `json:"InitiatorStaticIpV4Config,omitempty"` MutualChap NullableVnicIscsiAuthProfile `json:"MutualChap,omitempty"` // Source Type of Targets - Auto/Static. * `Static` - Type indicates that static target interface is assigned to iSCSI boot. * `Auto` - Type indicates that the system selects the target interface automatically during iSCSI boot. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory.go index 3d8695691a..025670cf86 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -34,7 +34,7 @@ type VnicIscsiBootPolicyInventory struct { // Source Type of Initiator IP Address - Auto/Static/Pool. * `DHCP` - The IP address is assigned using DHCP, if available. * `Static` - Static IPv4 address is assigned to the iSCSI boot interface based on the information entered in this area. * `Pool` - An IPv4 address is assigned to the iSCSI boot interface from the management IP address pool. InitiatorIpSource *string `json:"InitiatorIpSource,omitempty"` // Static IP address provided for iSCSI Initiator. - InitiatorStaticIpV4Address *string `json:"InitiatorStaticIpV4Address,omitempty"` + InitiatorStaticIpV4Address *string `json:"InitiatorStaticIpV4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` InitiatorStaticIpV4Config NullableIppoolIpV4Config `json:"InitiatorStaticIpV4Config,omitempty"` MutualChap NullableVnicIscsiAuthProfile `json:"MutualChap,omitempty"` // Source Type of Targets - Auto/Static. * `Static` - Type indicates that static target interface is assigned to iSCSI boot. * `Auto` - Type indicates that the system selects the target interface automatically during iSCSI boot. @@ -725,7 +725,7 @@ func (o *VnicIscsiBootPolicyInventory) UnmarshalJSON(data []byte) (err error) { // Source Type of Initiator IP Address - Auto/Static/Pool. * `DHCP` - The IP address is assigned using DHCP, if available. * `Static` - Static IPv4 address is assigned to the iSCSI boot interface based on the information entered in this area. * `Pool` - An IPv4 address is assigned to the iSCSI boot interface from the management IP address pool. InitiatorIpSource *string `json:"InitiatorIpSource,omitempty"` // Static IP address provided for iSCSI Initiator. - InitiatorStaticIpV4Address *string `json:"InitiatorStaticIpV4Address,omitempty"` + InitiatorStaticIpV4Address *string `json:"InitiatorStaticIpV4Address,omitempty" validate:"regexp=^$|^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$"` InitiatorStaticIpV4Config NullableIppoolIpV4Config `json:"InitiatorStaticIpV4Config,omitempty"` MutualChap NullableVnicIscsiAuthProfile `json:"MutualChap,omitempty"` // Source Type of Targets - Auto/Static. * `Static` - Type indicates that static target interface is assigned to iSCSI boot. * `Auto` - Type indicates that the system selects the target interface automatically during iSCSI boot. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory_list.go index 26eec4c1b5..a3e8278a1d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory_relationship.go index 33352e54ad..7e3c387fa9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory_response.go index 08a04f418b..428de5d6be 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_list.go index 22f8b3692c..bb66478edb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_relationship.go index fc6599acb5..e83759cf01 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_response.go index 40a7b0a40b..85d2a6cd9a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_boot_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy.go index f0303c9e0f..aa711a701a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,12 +29,12 @@ type VnicIscsiStaticTargetPolicy struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The IPv4 address assigned to the iSCSI target. - IpAddress *string `json:"IpAddress,omitempty"` + IpAddress *string `json:"IpAddress,omitempty" validate:"regexp=^$|^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$"` Lun NullableVnicLun `json:"Lun,omitempty"` // The port associated with the iSCSI target. Port *int64 `json:"Port,omitempty"` // Qualified Name (IQN) or Extended Unique Identifier (EUI) name of the iSCSI target. - TargetName *string `json:"TargetName,omitempty"` + TargetName *string `json:"TargetName,omitempty" validate:"regexp=^$|^(?:iqn\\\\.[0-9]{4}-[0-9]{2}(?:\\\\.[A-Za-z](?:[A-Za-z0-9\\\\-]*[A-Za-z0-9])?)+(?::.*)?|eui\\\\.[0-9A-Fa-f]{16})"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` AdditionalProperties map[string]interface{} } @@ -401,12 +401,12 @@ func (o *VnicIscsiStaticTargetPolicy) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The IPv4 address assigned to the iSCSI target. - IpAddress *string `json:"IpAddress,omitempty"` + IpAddress *string `json:"IpAddress,omitempty" validate:"regexp=^$|^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$"` Lun NullableVnicLun `json:"Lun,omitempty"` // The port associated with the iSCSI target. Port *int64 `json:"Port,omitempty"` // Qualified Name (IQN) or Extended Unique Identifier (EUI) name of the iSCSI target. - TargetName *string `json:"TargetName,omitempty"` + TargetName *string `json:"TargetName,omitempty" validate:"regexp=^$|^(?:iqn\\\\.[0-9]{4}-[0-9]{2}(?:\\\\.[A-Za-z](?:[A-Za-z0-9\\\\-]*[A-Za-z0-9])?)+(?::.*)?|eui\\\\.[0-9A-Fa-f]{16})"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory.go index 52d385acb5..b81d765c6e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,12 +29,12 @@ type VnicIscsiStaticTargetPolicyInventory struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The IPv4 address assigned to the iSCSI target. - IpAddress *string `json:"IpAddress,omitempty"` + IpAddress *string `json:"IpAddress,omitempty" validate:"regexp=^$|^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$"` Lun NullableVnicLun `json:"Lun,omitempty"` // The port associated with the iSCSI target. Port *int64 `json:"Port,omitempty"` // Qualified Name (IQN) or Extended Unique Identifier (EUI) name of the iSCSI target. - TargetName *string `json:"TargetName,omitempty"` + TargetName *string `json:"TargetName,omitempty" validate:"regexp=^$|^(?:iqn\\\\.[0-9]{4}-[0-9]{2}(?:\\\\.[A-Za-z](?:[A-Za-z0-9\\\\-]*[A-Za-z0-9])?)+(?::.*)?|eui\\\\.[0-9A-Fa-f]{16})"` TargetMo NullableMoBaseMoRelationship `json:"TargetMo,omitempty"` AdditionalProperties map[string]interface{} } @@ -401,12 +401,12 @@ func (o *VnicIscsiStaticTargetPolicyInventory) UnmarshalJSON(data []byte) (err e // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The IPv4 address assigned to the iSCSI target. - IpAddress *string `json:"IpAddress,omitempty"` + IpAddress *string `json:"IpAddress,omitempty" validate:"regexp=^$|^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$"` Lun NullableVnicLun `json:"Lun,omitempty"` // The port associated with the iSCSI target. Port *int64 `json:"Port,omitempty"` // Qualified Name (IQN) or Extended Unique Identifier (EUI) name of the iSCSI target. - TargetName *string `json:"TargetName,omitempty"` + TargetName *string `json:"TargetName,omitempty" validate:"regexp=^$|^(?:iqn\\\\.[0-9]{4}-[0-9]{2}(?:\\\\.[A-Za-z](?:[A-Za-z0-9\\\\-]*[A-Za-z0-9])?)+(?::.*)?|eui\\\\.[0-9A-Fa-f]{16})"` TargetMo NullableMoBaseMoRelationship `json:"TargetMo,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory_list.go index a87f1edc7f..ef0989c9d5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory_relationship.go index 6aee6a1d73..1908c41915 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory_response.go index 85a7aedd77..c444b5e799 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_list.go index bc3e9a09ef..354f0f0584 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_relationship.go index 1a578eed17..a80af912d5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_response.go index 833ab01d31..b929824e72 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_iscsi_static_target_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy.go index 4f3773054a..714fd4a9cf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type VnicLanConnectivityPolicy struct { // The mode used for placement of vNICs on network adapters. It can either be Auto or Custom. * `custom` - The placement of the vNICs / vHBAs on network adapters is manually chosen by the user. * `auto` - The placement of the vNICs / vHBAs on network adapters is automatically determined by the system. PlacementMode *string `json:"PlacementMode,omitempty"` // User provided static iSCSI Qualified Name (IQN) for use as initiator identifiers by iSCSI vNICs in a Fabric Interconnect domain. - StaticIqnName *string `json:"StaticIqnName,omitempty"` + StaticIqnName *string `json:"StaticIqnName,omitempty" validate:"regexp=^$|^(?:iqn\\\\.[0-9]{4}-[0-9]{2}(?:\\\\.[A-Za-z](?:[A-Za-z0-9\\\\-]*[A-Za-z0-9])?)+(?::.*)?|eui\\\\.[0-9A-Fa-f]{16})"` // The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight. * `Standalone` - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected. * `FIAttached` - Servers which are connected to a Fabric Interconnect that is managed by Intersight. // Deprecated TargetPlatform *string `json:"TargetPlatform,omitempty"` @@ -577,7 +577,7 @@ func (o *VnicLanConnectivityPolicy) UnmarshalJSON(data []byte) (err error) { // The mode used for placement of vNICs on network adapters. It can either be Auto or Custom. * `custom` - The placement of the vNICs / vHBAs on network adapters is manually chosen by the user. * `auto` - The placement of the vNICs / vHBAs on network adapters is automatically determined by the system. PlacementMode *string `json:"PlacementMode,omitempty"` // User provided static iSCSI Qualified Name (IQN) for use as initiator identifiers by iSCSI vNICs in a Fabric Interconnect domain. - StaticIqnName *string `json:"StaticIqnName,omitempty"` + StaticIqnName *string `json:"StaticIqnName,omitempty" validate:"regexp=^$|^(?:iqn\\\\.[0-9]{4}-[0-9]{2}(?:\\\\.[A-Za-z](?:[A-Za-z0-9\\\\-]*[A-Za-z0-9])?)+(?::.*)?|eui\\\\.[0-9A-Fa-f]{16})"` // The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight. * `Standalone` - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected. * `FIAttached` - Servers which are connected to a Fabric Interconnect that is managed by Intersight. // Deprecated TargetPlatform *string `json:"TargetPlatform,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory.go index 751474e5ef..d89bcac874 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type VnicLanConnectivityPolicyInventory struct { // The mode used for placement of vNICs on network adapters. It can either be Auto or Custom. * `custom` - The placement of the vNICs / vHBAs on network adapters is manually chosen by the user. * `auto` - The placement of the vNICs / vHBAs on network adapters is automatically determined by the system. PlacementMode *string `json:"PlacementMode,omitempty"` // User provided static iSCSI Qualified Name (IQN) for use as initiator identifiers by iSCSI vNICs in a Fabric Interconnect domain. - StaticIqnName *string `json:"StaticIqnName,omitempty"` + StaticIqnName *string `json:"StaticIqnName,omitempty" validate:"regexp=^$|^(?:iqn\\\\.[0-9]{4}-[0-9]{2}(?:\\\\.[A-Za-z](?:[A-Za-z0-9\\\\-]*[A-Za-z0-9])?)+(?::.*)?|eui\\\\.[0-9A-Fa-f]{16})"` // The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight. * `Standalone` - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected. * `FIAttached` - Servers which are connected to a Fabric Interconnect that is managed by Intersight. // Deprecated TargetPlatform *string `json:"TargetPlatform,omitempty"` @@ -523,7 +523,7 @@ func (o *VnicLanConnectivityPolicyInventory) UnmarshalJSON(data []byte) (err err // The mode used for placement of vNICs on network adapters. It can either be Auto or Custom. * `custom` - The placement of the vNICs / vHBAs on network adapters is manually chosen by the user. * `auto` - The placement of the vNICs / vHBAs on network adapters is automatically determined by the system. PlacementMode *string `json:"PlacementMode,omitempty"` // User provided static iSCSI Qualified Name (IQN) for use as initiator identifiers by iSCSI vNICs in a Fabric Interconnect domain. - StaticIqnName *string `json:"StaticIqnName,omitempty"` + StaticIqnName *string `json:"StaticIqnName,omitempty" validate:"regexp=^$|^(?:iqn\\\\.[0-9]{4}-[0-9]{2}(?:\\\\.[A-Za-z](?:[A-Za-z0-9\\\\-]*[A-Za-z0-9])?)+(?::.*)?|eui\\\\.[0-9A-Fa-f]{16})"` // The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight. * `Standalone` - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected. * `FIAttached` - Servers which are connected to a Fabric Interconnect that is managed by Intersight. // Deprecated TargetPlatform *string `json:"TargetPlatform,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory_list.go index 55ba73b75e..5c27e27388 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory_relationship.go index e8a6a7be61..b0163e42cc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory_response.go index 1d263e605a..20929dfba6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_list.go index dcbfc18ce3..09e5015792 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_relationship.go index 8ce1c08993..49037a37e9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_response.go index 52ff0e69ba..7b237549db 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lan_connectivity_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lcp_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lcp_status.go index 9dcc6320cf..23bf54984c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lcp_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lcp_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lcp_status_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lcp_status_list.go index 5cec6f785c..5381b118b5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lcp_status_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lcp_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lcp_status_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lcp_status_response.go index d34bed4cc9..b253435279 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lcp_status_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lcp_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lun.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lun.go index ecf1ff8b58..219b67ddc4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lun.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_lun.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_nvgre_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_nvgre_settings.go index 2f5b37c2b0..ed9a4b1633 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_nvgre_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_nvgre_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_placement_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_placement_settings.go index d6ae0950f1..083aa1ee84 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_placement_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_placement_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type VnicPlacementSettings struct { // Enable or disable automatic assignment of the VIC slot ID. If enabled and the server has only one VIC, the same VIC is chosen for all the vNICs. If enabled and the server has multiple VICs, the vNIC/vHBA are deployed on the first VIC. The Slot ID determines the first VIC. MLOM is the first Slot ID and the ID increments to 2, 3, and so on. AutoSlotId *bool `json:"AutoSlotId,omitempty"` // PCIe Slot where the VIC adapter is installed. Supported values are (1-15) and MLOM. - Id *string `json:"Id,omitempty"` + Id *string `json:"Id,omitempty" validate:"regexp=^$|^([1-9]|1[0-5]|MLOM)$"` // The PCI Link used as transport for the virtual interface. PCI Link is only applicable for select Cisco UCS VIC 1300 models (UCSC-PCIE-C40Q-03, UCSB-MLOM-40G-03, UCSB-VIC-M83-8P) that support two PCI links. The value, if specified, for any other VIC model will be ignored. PciLink *int64 `json:"PciLink,omitempty"` // If the autoPciLink is disabled, the user can either choose to place the vNICs manually or based on a policy.If the autoPciLink is enabled, it will be set to None. * `Custom` - The user needs to specify the PCI Link manually. * `Load-Balanced` - The system will uniformly distribute the interfaces across the PCI Links. * `None` - Assignment is not applicable and will be set when the AutoPciLink is set to true. @@ -479,7 +479,7 @@ func (o *VnicPlacementSettings) UnmarshalJSON(data []byte) (err error) { // Enable or disable automatic assignment of the VIC slot ID. If enabled and the server has only one VIC, the same VIC is chosen for all the vNICs. If enabled and the server has multiple VICs, the vNIC/vHBA are deployed on the first VIC. The Slot ID determines the first VIC. MLOM is the first Slot ID and the ID increments to 2, 3, and so on. AutoSlotId *bool `json:"AutoSlotId,omitempty"` // PCIe Slot where the VIC adapter is installed. Supported values are (1-15) and MLOM. - Id *string `json:"Id,omitempty"` + Id *string `json:"Id,omitempty" validate:"regexp=^$|^([1-9]|1[0-5]|MLOM)$"` // The PCI Link used as transport for the virtual interface. PCI Link is only applicable for select Cisco UCS VIC 1300 models (UCSC-PCIE-C40Q-03, UCSB-MLOM-40G-03, UCSB-VIC-M83-8P) that support two PCI links. The value, if specified, for any other VIC model will be ignored. PciLink *int64 `json:"PciLink,omitempty"` // If the autoPciLink is disabled, the user can either choose to place the vNICs manually or based on a policy.If the autoPciLink is enabled, it will be set to None. * `Custom` - The user needs to specify the PCI Link manually. * `Load-Balanced` - The system will uniformly distribute the interfaces across the PCI Links. * `None` - Assignment is not applicable and will be set when the AutoPciLink is set to true. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_plogi_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_plogi_settings.go index 7061a7eeaa..4ce72c9e8c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_plogi_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_plogi_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_ptp_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_ptp_settings.go index 627284c5c6..0ed8dd1a23 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_ptp_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_ptp_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_roce_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_roce_settings.go index 895ca6e7a1..075b8f6b70 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_roce_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_roce_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_rss_hash_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_rss_hash_settings.go index 5a45369735..2e34eee577 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_rss_hash_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_rss_hash_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy.go index 592d729253..7ec886daac 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type VnicSanConnectivityPolicy struct { // The mode used for placement of vNICs on network adapters. It can either be Auto or Custom. * `custom` - The placement of the vNICs / vHBAs on network adapters is manually chosen by the user. * `auto` - The placement of the vNICs / vHBAs on network adapters is automatically determined by the system. PlacementMode *string `json:"PlacementMode,omitempty"` // The WWNN address for the server node must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF. To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx. - StaticWwnnAddress *string `json:"StaticWwnnAddress,omitempty"` + StaticWwnnAddress *string `json:"StaticWwnnAddress,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` // The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight. * `Standalone` - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected. * `FIAttached` - Servers which are connected to a Fabric Interconnect that is managed by Intersight. TargetPlatform *string `json:"TargetPlatform,omitempty"` // Type of allocation selected to assign a WWNN address for the server node. * `POOL` - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface. * `STATIC` - The user assigns a static mac/wwn address for the Virtual Interface. @@ -528,7 +528,7 @@ func (o *VnicSanConnectivityPolicy) UnmarshalJSON(data []byte) (err error) { // The mode used for placement of vNICs on network adapters. It can either be Auto or Custom. * `custom` - The placement of the vNICs / vHBAs on network adapters is manually chosen by the user. * `auto` - The placement of the vNICs / vHBAs on network adapters is automatically determined by the system. PlacementMode *string `json:"PlacementMode,omitempty"` // The WWNN address for the server node must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF. To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx. - StaticWwnnAddress *string `json:"StaticWwnnAddress,omitempty"` + StaticWwnnAddress *string `json:"StaticWwnnAddress,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` // The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight. * `Standalone` - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected. * `FIAttached` - Servers which are connected to a Fabric Interconnect that is managed by Intersight. TargetPlatform *string `json:"TargetPlatform,omitempty"` // Type of allocation selected to assign a WWNN address for the server node. * `POOL` - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface. * `STATIC` - The user assigns a static mac/wwn address for the Virtual Interface. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_inventory.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_inventory.go index 2de0236608..1cae337664 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_inventory.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_inventory.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type VnicSanConnectivityPolicyInventory struct { // The mode used for placement of vNICs on network adapters. It can either be Auto or Custom. * `custom` - The placement of the vNICs / vHBAs on network adapters is manually chosen by the user. * `auto` - The placement of the vNICs / vHBAs on network adapters is automatically determined by the system. PlacementMode *string `json:"PlacementMode,omitempty"` // The WWNN address for the server node must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF. To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx. - StaticWwnnAddress *string `json:"StaticWwnnAddress,omitempty"` + StaticWwnnAddress *string `json:"StaticWwnnAddress,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` // The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight. * `Standalone` - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected. * `FIAttached` - Servers which are connected to a Fabric Interconnect that is managed by Intersight. TargetPlatform *string `json:"TargetPlatform,omitempty"` // Type of allocation selected to assign a WWNN address for the server node. * `POOL` - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface. * `STATIC` - The user assigns a static mac/wwn address for the Virtual Interface. @@ -478,7 +478,7 @@ func (o *VnicSanConnectivityPolicyInventory) UnmarshalJSON(data []byte) (err err // The mode used for placement of vNICs on network adapters. It can either be Auto or Custom. * `custom` - The placement of the vNICs / vHBAs on network adapters is manually chosen by the user. * `auto` - The placement of the vNICs / vHBAs on network adapters is automatically determined by the system. PlacementMode *string `json:"PlacementMode,omitempty"` // The WWNN address for the server node must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx. Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF. To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx. - StaticWwnnAddress *string `json:"StaticWwnnAddress,omitempty"` + StaticWwnnAddress *string `json:"StaticWwnnAddress,omitempty" validate:"regexp=^$|((^20|5[0-9a-fA-F]{1}):([0-9a-fA-F]{2}:){6}([0-9a-fA-F]{2})$)"` // The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight. * `Standalone` - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected. * `FIAttached` - Servers which are connected to a Fabric Interconnect that is managed by Intersight. TargetPlatform *string `json:"TargetPlatform,omitempty"` // Type of allocation selected to assign a WWNN address for the server node. * `POOL` - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface. * `STATIC` - The user assigns a static mac/wwn address for the Virtual Interface. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_inventory_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_inventory_list.go index d1f56df94a..d6ebfe8a3e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_inventory_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_inventory_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_inventory_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_inventory_relationship.go index b68450301a..2d283dcb5d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_inventory_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_inventory_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_inventory_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_inventory_response.go index 33585e7101..9f96bf0f97 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_inventory_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_inventory_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_list.go index 310a50a525..d4cd5fe174 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_relationship.go index b5bfc7dc7d..327e26a499 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_response.go index f8e269c217..34c89a86cb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_san_connectivity_policy_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_scp_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_scp_status.go index a799b9c5dc..865cc87e9e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_scp_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_scp_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_scp_status_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_scp_status_list.go index e574b75a94..ebce6dc694 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_scp_status_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_scp_status_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_scp_status_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_scp_status_response.go index a8e40306c0..24a6968371 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_scp_status_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_scp_status_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_scsi_queue_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_scsi_queue_settings.go index 37c25f8ff5..836c1bd6f1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_scsi_queue_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_scsi_queue_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_sriov_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_sriov_settings.go index fa5acc95b7..8aaba10afa 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_sriov_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_sriov_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_tcp_offload_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_tcp_offload_settings.go index a32713a7dd..1deef4a4fb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_tcp_offload_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_tcp_offload_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_usnic_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_usnic_settings.go index c57cac32f3..463ca8d2de 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_usnic_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_usnic_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vhba_template.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vhba_template.go index 1aa3862f11..7c7ca817da 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vhba_template.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vhba_template.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type VnicVhbaTemplate struct { // When enabled, the configuration of the derived instances may override the template configuration. EnableOverride *bool `json:"EnableOverride,omitempty"` // Name of the virtual fibre channel interface. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]+$"` // Name of the peer vHBA which belongs to the peer FI. PeerVhbaName *string `json:"PeerVhbaName,omitempty"` // The count of the San Connectivity Policies using vHBA template. @@ -549,7 +549,7 @@ func (o *VnicVhbaTemplate) UnmarshalJSON(data []byte) (err error) { // When enabled, the configuration of the derived instances may override the template configuration. EnableOverride *bool `json:"EnableOverride,omitempty"` // Name of the virtual fibre channel interface. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]+$"` // Name of the peer vHBA which belongs to the peer FI. PeerVhbaName *string `json:"PeerVhbaName,omitempty"` // The count of the San Connectivity Policies using vHBA template. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vhba_template_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vhba_template_list.go index 3cc77e5513..476b899a6a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vhba_template_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vhba_template_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vhba_template_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vhba_template_relationship.go index 6b70a2cd66..dd87450b30 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vhba_template_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vhba_template_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vhba_template_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vhba_template_response.go index ed363fb096..d5de774b19 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vhba_template_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vhba_template_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vif_status.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vif_status.go index d5848aa320..1d4bae458b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vif_status.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vif_status.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vlan_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vlan_settings.go index 103d0c0d21..c64e7c019c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vlan_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vlan_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type VnicVlanSettings struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Allowed VLAN IDs of the virtual interface. - AllowedVlans *string `json:"AllowedVlans,omitempty"` + AllowedVlans *string `json:"AllowedVlans,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // Native VLAN ID of the virtual interface or the corresponding vethernet on the peer Fabric Interconnect to which the virtual interface is connected. Setting the ID to 0 will not associate any native VLAN to the traffic on the virtual interface. DefaultVlan *int64 `json:"DefaultVlan,omitempty"` // Option to determine if the port can carry single VLAN (Access) or multiple VLANs (Trunk) traffic. * `ACCESS` - An access port carries traffic only for a single VLAN on the interface. * `TRUNK` - A trunk port can have two or more VLANs configured on the interface. It can carry traffic for several VLANs simultaneously. @@ -397,7 +397,7 @@ func (o *VnicVlanSettings) UnmarshalJSON(data []byte) (err error) { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // Allowed VLAN IDs of the virtual interface. - AllowedVlans *string `json:"AllowedVlans,omitempty"` + AllowedVlans *string `json:"AllowedVlans,omitempty" validate:"regexp=^$|^((\\\\d+\\\\-\\\\d+)|(\\\\d+))(,((\\\\d+\\\\-\\\\d+)|(\\\\d+)))*$"` // Native VLAN ID of the virtual interface or the corresponding vethernet on the peer Fabric Interconnect to which the virtual interface is connected. Setting the ID to 0 will not associate any native VLAN to the traffic on the virtual interface. DefaultVlan *int64 `json:"DefaultVlan,omitempty"` // Option to determine if the port can carry single VLAN (Access) or multiple VLANs (Trunk) traffic. * `ACCESS` - An access port carries traffic only for a single VLAN on the interface. * `TRUNK` - A trunk port can have two or more VLANs configured on the interface. It can carry traffic for several VLANs simultaneously. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vmq_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vmq_settings.go index 4b0b07ca02..762f72949f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vmq_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vmq_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vnic_template.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vnic_template.go index 7937b311c2..3c2980cf54 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vnic_template.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vnic_template.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type VnicVnicTemplate struct { // The count of the Lan Connectivity Policies using vNIC template. LcpUsageCount *int64 `json:"LcpUsageCount,omitempty"` // Name of the virtual ethernet interface. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]+$"` // Name of the peer vNIC which belongs to the peer FI. PeerVnicName *string `json:"PeerVnicName,omitempty"` // The fabric port to which the vNICs will be associated. * `None` - Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used. * `A` - Fabric A of the FI cluster. * `B` - Fabric B of the FI cluster. @@ -551,7 +551,7 @@ func (o *VnicVnicTemplate) UnmarshalJSON(data []byte) (err error) { // The count of the Lan Connectivity Policies using vNIC template. LcpUsageCount *int64 `json:"LcpUsageCount,omitempty"` // Name of the virtual ethernet interface. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9-._:]+$"` // Name of the peer vNIC which belongs to the peer FI. PeerVnicName *string `json:"PeerVnicName,omitempty"` // The fabric port to which the vNICs will be associated. * `None` - Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used. * `A` - Fabric A of the FI cluster. * `B` - Fabric B of the FI cluster. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vnic_template_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vnic_template_list.go index 68b19ef7e9..9c17c662ef 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vnic_template_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vnic_template_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vnic_template_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vnic_template_relationship.go index 76deb5593d..bc9f03c12d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vnic_template_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vnic_template_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vnic_template_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vnic_template_response.go index 66dacd25de..f54a7d30fe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vnic_template_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vnic_template_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vsan_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vsan_settings.go index e1dc04b1fa..53d04b0c91 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vsan_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vsan_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vxlan_settings.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vxlan_settings.go index f1b05e2e17..51e594d324 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vxlan_settings.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vnic_vxlan_settings.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vrf_vrf.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vrf_vrf.go index 4fd59edcac..2a428048dc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vrf_vrf.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vrf_vrf.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vrf_vrf_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vrf_vrf_list.go index 27021d45a8..14042a5593 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vrf_vrf_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vrf_vrf_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vrf_vrf_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vrf_vrf_relationship.go index 5c98667946..ca7bb7a0ce 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vrf_vrf_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vrf_vrf_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vrf_vrf_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vrf_vrf_response.go index c61fabdd50..b31da88ed4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vrf_vrf_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_vrf_vrf_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_abstract_loop_task.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_abstract_loop_task.go index 05602c6c3c..7e40fb40a3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_abstract_loop_task.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_abstract_loop_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_abstract_resource_selector.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_abstract_resource_selector.go index ad949a87dc..fb47578c4a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_abstract_resource_selector.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_abstract_resource_selector.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_abstract_worker_task.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_abstract_worker_task.go index 935cc2b1ef..19ba78aefe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_abstract_worker_task.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_abstract_worker_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ansible_batch_executor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ansible_batch_executor.go index bbcc1a5d1f..c2b756c5a4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ansible_batch_executor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ansible_batch_executor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ansible_batch_executor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ansible_batch_executor_list.go index 4bc57bdb18..43203fc539 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ansible_batch_executor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ansible_batch_executor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ansible_batch_executor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ansible_batch_executor_response.go index fd7127c275..f668a8aa50 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ansible_batch_executor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ansible_batch_executor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ansible_play_session.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ansible_play_session.go index fe1b8d2565..a4275f3335 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ansible_play_session.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ansible_play_session.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_api.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_api.go index 958f92a883..e8cc072760 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_api.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_api.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_array_data_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_array_data_type.go index 6de5b1c7cd..7f20ed8a03 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_array_data_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_array_data_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_array_item.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_array_item.go index 3d4b88185c..7033502954 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_array_item.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_array_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_associated_roles.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_associated_roles.go index f8f15580ab..bf4d14bedc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_associated_roles.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_associated_roles.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_base_data_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_base_data_type.go index c78334c137..449fca86c7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_base_data_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_base_data_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,9 +35,9 @@ type WorkflowBaseDataType struct { // JSON formatted mapping from other property of the definition to the current property. Input parameter mapping is supported only for custom data type property in workflow definition and custom data type definition. The format to specify mapping ina workflow definition when source property is of scalar types is '${workflow.input.property}'. The format to specify mapping when the source property is of object reference and mapping needs to be made to the property of the object is '${workflow.input.property.subproperty}'. The format to specify mapping in a custom data type definition is '${datatype.type.property}'. When the current property is of non-scalar type like composite custom data type, then mapping can be provided to the individual property of the custom data type like 'cdt_property:${workflow.input.property}'. InputParameters interface{} `json:"InputParameters,omitempty"` // Descriptive label for the data type. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), space ( ), forward slash (/) or an underscore (_). The first and last character in label must be an alphanumeric character. - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_'.:\\/-]{1,92}$"` // Descriptive name for the data type. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_). The first and last character in name must be an alphanumeric character. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+([a-zA-Z0-9-_]*[a-zA-Z0-9])*$"` // Specifies whether this parameter is required. The field is applicable for task and workflow. Required *bool `json:"Required,omitempty"` AdditionalProperties map[string]interface{} @@ -459,9 +459,9 @@ func (o *WorkflowBaseDataType) UnmarshalJSON(data []byte) (err error) { // JSON formatted mapping from other property of the definition to the current property. Input parameter mapping is supported only for custom data type property in workflow definition and custom data type definition. The format to specify mapping ina workflow definition when source property is of scalar types is '${workflow.input.property}'. The format to specify mapping when the source property is of object reference and mapping needs to be made to the property of the object is '${workflow.input.property.subproperty}'. The format to specify mapping in a custom data type definition is '${datatype.type.property}'. When the current property is of non-scalar type like composite custom data type, then mapping can be provided to the individual property of the custom data type like 'cdt_property:${workflow.input.property}'. InputParameters interface{} `json:"InputParameters,omitempty"` // Descriptive label for the data type. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), space ( ), forward slash (/) or an underscore (_). The first and last character in label must be an alphanumeric character. - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_'.:\\/-]{1,92}$"` // Descriptive name for the data type. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_). The first and last character in name must be an alphanumeric character. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+([a-zA-Z0-9-_]*[a-zA-Z0-9])*$"` // Specifies whether this parameter is required. The field is applicable for task and workflow. Required *bool `json:"Required,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_base_operation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_base_operation.go index fb8ccffe67..ab462a44a2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_base_operation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_base_operation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_batch_api_executor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_batch_api_executor.go index ec26882075..6380b4dab2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_batch_api_executor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_batch_api_executor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_batch_api_executor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_batch_api_executor_list.go index b50656aa33..c4f8a6fc4e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_batch_api_executor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_batch_api_executor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_batch_api_executor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_batch_api_executor_response.go index e31c4ff777..7e752b4d77 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_batch_api_executor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_batch_api_executor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_batch_executor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_batch_executor.go index 7ee95d0dcd..0ca403afc4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_batch_executor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_batch_executor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_cancelable_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_cancelable_type.go index 327e680a20..c1931b8946 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_cancelable_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_cancelable_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog.go index 7d774ecda8..8b4d1ecd98 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_item_definition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_item_definition.go index e169c06c28..46f25507b1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_item_definition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_item_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,9 +31,9 @@ type WorkflowCatalogItemDefinition struct { // The description for the catalog item which provides information on what are the pre-requisites to deploy the resource. Description *string `json:"Description,omitempty"` // A user friendly short name to identify the catalog item. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ) or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` // The name for this catalog item definition. You can have multiple versions of the catalog item with the same name. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // Publish status of the catalog item. * `Draft` - The enum specifies the option as Draft which means the meta definition is being designed and tested. * `Published` - The enum specifies the option as Published which means the meta definition is ready for consumption. * `Archived` - The enum specifies the option as Archived which means the meta definition is archived and can no longer be consumed. PublishStatus *string `json:"PublishStatus,omitempty"` ServiceItems []WorkflowServiceItemType `json:"ServiceItems,omitempty"` @@ -600,9 +600,9 @@ func (o *WorkflowCatalogItemDefinition) UnmarshalJSON(data []byte) (err error) { // The description for the catalog item which provides information on what are the pre-requisites to deploy the resource. Description *string `json:"Description,omitempty"` // A user friendly short name to identify the catalog item. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ) or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` // The name for this catalog item definition. You can have multiple versions of the catalog item with the same name. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // Publish status of the catalog item. * `Draft` - The enum specifies the option as Draft which means the meta definition is being designed and tested. * `Published` - The enum specifies the option as Published which means the meta definition is ready for consumption. * `Archived` - The enum specifies the option as Archived which means the meta definition is archived and can no longer be consumed. PublishStatus *string `json:"PublishStatus,omitempty"` ServiceItems []WorkflowServiceItemType `json:"ServiceItems,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_item_definition_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_item_definition_list.go index a247dc8b22..42c48ff558 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_item_definition_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_item_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_item_definition_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_item_definition_relationship.go index 0690aa3fe0..9d6d78afc3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_item_definition_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_item_definition_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_item_definition_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_item_definition_response.go index 1ce71387b5..ba4700a331 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_item_definition_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_item_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_list.go index 6d90fce906..18cf0ee5dc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_relationship.go index 48bd19a45d..69fd194350 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_response.go index 0a58c23aad..7556ba5f78 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_service_request.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_service_request.go index 6debab2dd0..4b1ae800d9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_service_request.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_service_request.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -36,10 +36,10 @@ type WorkflowCatalogServiceRequest struct { // Inputs for a catalog service request instance creation, format is specified by input definition of the catalog item definition. Input interface{} `json:"Input,omitempty"` // A user friendly short name to identify the catalog service request instance. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ) or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` Messages []ServicerequestMessage `json:"Messages,omitempty"` // A name of the catalog service request instance. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` Operation NullableWorkflowBaseOperation `json:"Operation,omitempty"` SelectionCriteriaInputs []ServiceitemSelectionCriteriaInput `json:"SelectionCriteriaInputs,omitempty"` // Status of the catalog service request instance which determines the actions that are allowed on this instance. * `NotCreated` - The service item is not yet created and it is in a draft mode. A service item instance can be deleted in this state. * `InProgress` - An action is in progress and until that action has reached a final state, another action cannot be started. * `Failed` - The last action on the service item instance failed and corrective measures need to be taken to bring the service item instance back to valid state. * `Okay` - The last action on the service item instance completed and the service item instance is in Okay state. * `Decommissioned` - The service item is decommissioned and can be safely deleted. A service item instance in any other state after it has been created cannot be deleted until it has been decommissioned. @@ -895,10 +895,10 @@ func (o *WorkflowCatalogServiceRequest) UnmarshalJSON(data []byte) (err error) { // Inputs for a catalog service request instance creation, format is specified by input definition of the catalog item definition. Input interface{} `json:"Input,omitempty"` // A user friendly short name to identify the catalog service request instance. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ) or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` Messages []ServicerequestMessage `json:"Messages,omitempty"` // A name of the catalog service request instance. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` Operation NullableWorkflowBaseOperation `json:"Operation,omitempty"` SelectionCriteriaInputs []ServiceitemSelectionCriteriaInput `json:"SelectionCriteriaInputs,omitempty"` // Status of the catalog service request instance which determines the actions that are allowed on this instance. * `NotCreated` - The service item is not yet created and it is in a draft mode. A service item instance can be deleted in this state. * `InProgress` - An action is in progress and until that action has reached a final state, another action cannot be started. * `Failed` - The last action on the service item instance failed and corrective measures need to be taken to bring the service item instance back to valid state. * `Okay` - The last action on the service item instance completed and the service item instance is in Okay state. * `Decommissioned` - The service item is decommissioned and can be safely deleted. A service item instance in any other state after it has been created cannot be deleted until it has been decommissioned. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_service_request_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_service_request_list.go index 41a738dd5d..fabf7a02a4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_service_request_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_service_request_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_service_request_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_service_request_relationship.go index d7757794dc..d0f9553b6b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_service_request_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_service_request_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_service_request_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_service_request_response.go index 0d27eac9bc..e5d512e545 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_service_request_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_catalog_service_request_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_cli_command.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_cli_command.go index 155c5994cd..2774d95096 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_cli_command.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_cli_command.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_comments.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_comments.go index 72f1815017..a0bd353cd9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_comments.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_comments.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_constraints.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_constraints.go index 402003dae2..e1dd3c1554 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_constraints.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_constraints.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_control_task.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_control_task.go index b8da61f08b..94e848c774 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_control_task.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_control_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_array_item.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_array_item.go index 922214d9a6..ffd42578a8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_array_item.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_array_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_property.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_property.go index 8a081c3e8b..d18b79e814 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_property.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_property.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_type.go index bf60a21bf5..29bede7e9b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_type_definition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_type_definition.go index 6117fe8767..082e2198c8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_type_definition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_type_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,9 +33,9 @@ type WorkflowCustomDataTypeDefinition struct { // A human-friendly description of this custom data type indicating it's domain and usage. Description *string `json:"Description,omitempty"` // 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. - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_'.:-]{1,92}$"` // The name of custom data type definition. The valid name can contain lower case and upper case alphabetic characters, digits and special characters '-' and '_'. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_-]{1,64}$"` ParameterSet []WorkflowParameterSet `json:"ParameterSet,omitempty"` Properties NullableWorkflowCustomDataTypeProperties `json:"Properties,omitempty"` TypeDefinition []WorkflowBaseDataType `json:"TypeDefinition,omitempty"` @@ -567,9 +567,9 @@ func (o *WorkflowCustomDataTypeDefinition) UnmarshalJSON(data []byte) (err error // A human-friendly description of this custom data type indicating it's domain and usage. Description *string `json:"Description,omitempty"` // 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. - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_'.:-]{1,92}$"` // The name of custom data type definition. The valid name can contain lower case and upper case alphabetic characters, digits and special characters '-' and '_'. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_-]{1,64}$"` ParameterSet []WorkflowParameterSet `json:"ParameterSet,omitempty"` Properties NullableWorkflowCustomDataTypeProperties `json:"Properties,omitempty"` TypeDefinition []WorkflowBaseDataType `json:"TypeDefinition,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_type_definition_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_type_definition_list.go index 86de574822..870be38124 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_type_definition_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_type_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_type_definition_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_type_definition_relationship.go index 91a29f58d4..5e1f1a3cb9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_type_definition_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_type_definition_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_type_definition_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_type_definition_response.go index 1234447d77..3474e7bb93 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_type_definition_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_type_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_type_properties.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_type_properties.go index 18b0f5e312..bbddb853ae 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_type_properties.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_custom_data_type_properties.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_decision_case.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_decision_case.go index a984ce172d..a1005d1a93 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_decision_case.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_decision_case.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_decision_task.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_decision_task.go index c82bc19bcd..9380a29f5d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_decision_task.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_decision_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_default_value.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_default_value.go index 022a7289dc..74cf7fa96a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_default_value.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_default_value.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_display_meta.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_display_meta.go index e2a388aaa5..00be5f2ff5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_display_meta.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_display_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_dynamic_template_parser_data_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_dynamic_template_parser_data_type.go index 574b0d867d..f755f04f72 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_dynamic_template_parser_data_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_dynamic_template_parser_data_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_end_task.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_end_task.go index 0f92886daa..431c173694 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_end_task.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_end_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_enum_entry.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_enum_entry.go index 6577d2538a..ac7bae961e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_enum_entry.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_enum_entry.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -28,10 +28,10 @@ type WorkflowEnumEntry struct { ClassId string `json:"ClassId"` // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` - // 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 have an alphanumeric character. - Label *string `json:"Label,omitempty"` - // 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 (_). - Value *string `json:"Value,omitempty"` + // 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 (/), round parenthesis ( () ), or an underscore (_) and must have an alphanumeric character. + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]+[+\\\\s\\/a-zA-Z0-9)(_'.:-]{0,92}$"` + // 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 ( ), round parenthesis ( () ), forward slash (/), or an underscore (_). + Value *string `json:"Value,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]*[+\\\\s\\/a-zA-Z0-9)(_.:-]{1,64}$"` AdditionalProperties map[string]interface{} } @@ -269,10 +269,10 @@ func (o *WorkflowEnumEntry) UnmarshalJSON(data []byte) (err error) { ClassId string `json:"ClassId"` // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` - // 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 have an alphanumeric character. - Label *string `json:"Label,omitempty"` - // 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 (_). - Value *string `json:"Value,omitempty"` + // 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 (/), round parenthesis ( () ), or an underscore (_) and must have an alphanumeric character. + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]+[+\\\\s\\/a-zA-Z0-9)(_'.:-]{0,92}$"` + // 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 ( ), round parenthesis ( () ), forward slash (/), or an underscore (_). + Value *string `json:"Value,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]*[+\\\\s\\/a-zA-Z0-9)(_.:-]{1,64}$"` } varWorkflowEnumEntryWithoutEmbeddedStruct := WorkflowEnumEntryWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_error_response_handler.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_error_response_handler.go index ec81c796cf..65cd1199a2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_error_response_handler.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_error_response_handler.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type WorkflowErrorResponseHandler struct { // A detailed description about the error response handler. Description *string `json:"Description,omitempty"` // Name for the error response handler. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` Parameters []ContentParameter `json:"Parameters,omitempty"` // The platform type for which the error response handler is defined. * `` - An unrecognized platform type. * `APIC` - A Cisco Application Policy Infrastructure Controller (APIC) cluster. * `CAPIC` - A Cisco Cloud Application Policy Infrastructure Controller (Cloud APIC) instance. * `DCNM` - A Cisco Data Center Network Manager (DCNM) instance. * `UCSFI` - A Cisco UCS Fabric Interconnect that is managed by Cisco UCS Manager (UCSM). * `UCSFIISM` - A Cisco UCS Fabric Interconnect that is managed by Cisco Intersight. * `IMC` - A standalone Cisco UCS rack server (Deprecated). * `IMCM4` - A standalone Cisco UCS C-Series or S-Series M4 server. * `IMCM5` - A standalone Cisco UCS C-Series or S-Series M5 server. * `IMCRack` - A standalone Cisco UCS C-Series or S-Series M6 or newer server. * `UCSIOM` - A Cisco UCS Blade Chassis I/O Module (IOM). * `HX` - A Cisco HyperFlex (HX) cluster. * `UCSD` - A Cisco UCS Director (UCSD) instance. * `IntersightAppliance` - A Cisco Intersight Connected Virtual Appliance instance. * `IntersightAssist` - A Cisco Intersight Assist instance. * `PureStorageFlashArray` - A Pure Storage FlashArray that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer and storage management features are supported on this device. * `NexusDevice` - A Cisco Nexus Network Switch that is managed using Cisco Intersight Assist. * `ACISwitch` - A Cisco Nexus Network Switch with the embedded Device Connector and is a part of the Cisco ACI fabric. * `NexusSwitch` - A standalone Cisco Nexus Network Switch with the embedded Device Connector. * `MDSSwitch` - A Cisco MDS Switch that is managed using the embedded Device Connector. * `MDSDevice` - A Cisco MDS Switch that is managed using Cisco Intersight Assist. * `UCSC890` - A standalone Cisco UCS C890 server managed using Cisco Intersight Assist. * `RedfishServer` - A generic target type for servers that support Redfish APIs and is managed using Cisco Intersight Assist. Support is limited to HPE and Dell Servers. * `NetAppOntap` - A Netapp ONTAP Storage system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `NetAppActiveIqUnifiedManager` - A NetApp Active IQ Unified Manager (AIQUM) that is managed using Cisco Intersight Assist. * `EmcScaleIo` - An EMC ScaleIO Software Defined Storage system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `EmcVmax` - An EMC VMAX 2 or 3 series enterprise storage array that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `EmcVplex` - An EMC VPLEX virtual storage system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `EmcXtremIo` - An EMC XtremIO SSD storage system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `VmwareVcenter` - A VMware vCenter instance that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer and Virtualization features are supported on this hypervisor. * `MicrosoftHyperV` - A Microsoft Hyper-V host that is managed using Cisco Intersight Assist. Optionally, other hosts in the cluster can be discovered through this host. Cisco Intersight Workload Optimizer features are supported on this hypervisor. * `AppDynamics` - An AppDynamics controller running in a SaaS or on-prem datacenter. On-prem AppDynamics instance is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this controller. * `Dynatrace` - A Dynatrace Server instance running in a SaaS or on-prem datacenter. On-prem Dynatrace instance is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this server. * `NewRelic` - A NewRelic user account. The NewRelic instance monitors the application infrastructure. Cisco Intersight Workload Optimizer features are supported on this server. * `ServiceNow` - A cloud-based workflow automation platform that enables enterprise organizations to improve operational efficiencies by streamlining and automating routine work tasks. * `CloudFoundry` - An open source cloud platform on which developers can build, deploy, run and scale applications. * `MicrosoftAzureApplicationInsights` - A feature of Azure Monitor, is an extensible Application Performance Management service for developers and DevOps professionals to monitor their live applications. * `OpenStack` - An OpenStack target manages Virtual Machines, Physical Machines, Datacenters and Virtual Datacenters using different OpenStack services as administrative endpoints. * `MicrosoftSqlServer` - A Microsoft SQL database server that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this database. * `MySqlServer` - A MySQL database server that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this database. * `OracleDatabaseServer` - An Oracle database server that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this database. * `IBMWebSphereApplicationServer` - An IBM WebSphere Application server that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this application server. * `OracleWebLogicServer` - Oracle WebLogic Server is a unified and extensible platform for developing, deploying and running enterprise applications, such as Java, for on-premises and in the cloud. WebLogic Server offers a robust, mature, and scalable implementation of Java Enterprise Edition (EE) and Jakarta EE. * `ApacheTomcatServer` - An Apache Tomcat server that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this server. * `JavaVirtualMachine` - A JVM Application with JMX configured that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this application. * `RedHatJBossApplicationServer` - JBoss Application Server is an open-source, cross-platform Java application server developed by JBoss, a division of Red Hat Inc. It is an open-source implementation of Java 2 Enterprise Edition (J2EE) that is used for implementing Java applications and other Web-based applications and software. * `Kubernetes` - A Kubernetes cluster that runs containerized applications, with Kubernetes Collector installed. Cisco Intersight Workload Optimizer features are supported on Kubernetes cluster. * `AmazonWebService` - An Amazon Web Service cloud account. Cisco Intersight Workload Optimizer and Virtualization features are supported on this cloud. * `AmazonWebServiceBilling` - An Amazon Web Service cloud billing account used to retrieve billing information stored in S3 bucket. Cisco Intersight Workload Optimizer features are supported on this cloud. * `GoogleCloudPlatform` - A Google Cloud Platform service account with access to one or more projects. Cisco Intersight Workload Optimizer features are supported on this cloud. * `GoogleCloudPlatformBilling` - A Google Cloud Platform service account used to retrieve billing information from BigQuery. Cisco Intersight Workload Optimizer features are supported on this cloud. * `MicrosoftAzureServicePrincipal` - A Microsoft Azure Service Principal account with access to Azure subscriptions. Cisco Intersight Workload Optimizer features are supported on this cloud. * `MicrosoftAzureEnterpriseAgreement` - A Microsoft Azure Enterprise Agreement enrolment used to retrieve pricing and billing information. Cisco Intersight Workload Optimizer features are supported on this cloud. * `MicrosoftAzureBilling` - A Microsoft Azure Service Principal account with access to billing information. Cisco Intersight Workload Optimizer features are supported on this cloud. * `DellCompellent` - A Dell EMC SC Series (Compellent) storage system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `HPE3Par` - A HPE 3PAR StoreServ system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `RedHatEnterpriseVirtualization` - A Red Hat Enterprise Virtualization Hypervisor system that manages Virtual Machines. * `NutanixAcropolis` - A Nutanix Acropolis cluster that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this cluster. * `HPEOneView` - A HPE OneView system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this system. * `ServiceEngine` - Cisco Application Services Engine. Cisco Application Services Engine is a platform to deploy and manage applications. * `HitachiVirtualStoragePlatform` - A Hitachi Virtual Storage Platform (Hitachi VSP) that is managed using Cisco Intersight Assist. * `GenericTarget` - A generic third-party target supported only in Partner Integration Appliance. This target type is used for development purposes and will not be supported in production environment. * `IMCBlade` - A Cisco UCS blade server managed by Cisco Intersight. * `TerraformCloud` - A Terraform Cloud Business Tier account. * `TerraformAgent` - A Terraform Cloud Agent that will be deployed on Cisco Intersight Assist. The agent can be used to plan and apply Terraform runs from a Terraform Cloud workspace. * `CustomTarget` - CustomTarget is deprecated. Use HTTPEndpoint type to claim HTTP endpoints. * `AnsibleEndpoint` - An external endpoint that is added as a target which can be accessed through Ansible in Intersight Cloud Orchestrator automation workflows. * `HTTPEndpoint` - An HTTP endpoint that can be accessed in Intersight Orchestrator workflows directly or using Cisco Intersight Assist. Authentication Schemes supported are Basic and Bearer Token. * `SSHEndpoint` - An SSH endpoint that can be accessed in Intersight Orchestrator workflows using Cisco Intersight Assist. * `CiscoCatalyst` - A Cisco Catalyst networking switch device. * `PowerShellEndpoint` - A Windows operating system server on which PowerShell scripts can be executed using Cisco Intersight Assist. * `CiscoDNAC` - A Cisco Digital Network Architecture (DNA) Center appliance. * `CiscoFMC` - A Cisco Secure Firewall Management Center. * `ViptelaCloud` - A Cisco Viptela SD-WAN Cloud. * `MerakiCloud` - A Cisco Meraki Organization. * `CiscoISE` - A Cisco Identity Services Engine (ISE) target. PlatformType *string `json:"PlatformType,omitempty"` @@ -434,7 +434,7 @@ func (o *WorkflowErrorResponseHandler) UnmarshalJSON(data []byte) (err error) { // A detailed description about the error response handler. Description *string `json:"Description,omitempty"` // Name for the error response handler. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` Parameters []ContentParameter `json:"Parameters,omitempty"` // The platform type for which the error response handler is defined. * `` - An unrecognized platform type. * `APIC` - A Cisco Application Policy Infrastructure Controller (APIC) cluster. * `CAPIC` - A Cisco Cloud Application Policy Infrastructure Controller (Cloud APIC) instance. * `DCNM` - A Cisco Data Center Network Manager (DCNM) instance. * `UCSFI` - A Cisco UCS Fabric Interconnect that is managed by Cisco UCS Manager (UCSM). * `UCSFIISM` - A Cisco UCS Fabric Interconnect that is managed by Cisco Intersight. * `IMC` - A standalone Cisco UCS rack server (Deprecated). * `IMCM4` - A standalone Cisco UCS C-Series or S-Series M4 server. * `IMCM5` - A standalone Cisco UCS C-Series or S-Series M5 server. * `IMCRack` - A standalone Cisco UCS C-Series or S-Series M6 or newer server. * `UCSIOM` - A Cisco UCS Blade Chassis I/O Module (IOM). * `HX` - A Cisco HyperFlex (HX) cluster. * `UCSD` - A Cisco UCS Director (UCSD) instance. * `IntersightAppliance` - A Cisco Intersight Connected Virtual Appliance instance. * `IntersightAssist` - A Cisco Intersight Assist instance. * `PureStorageFlashArray` - A Pure Storage FlashArray that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer and storage management features are supported on this device. * `NexusDevice` - A Cisco Nexus Network Switch that is managed using Cisco Intersight Assist. * `ACISwitch` - A Cisco Nexus Network Switch with the embedded Device Connector and is a part of the Cisco ACI fabric. * `NexusSwitch` - A standalone Cisco Nexus Network Switch with the embedded Device Connector. * `MDSSwitch` - A Cisco MDS Switch that is managed using the embedded Device Connector. * `MDSDevice` - A Cisco MDS Switch that is managed using Cisco Intersight Assist. * `UCSC890` - A standalone Cisco UCS C890 server managed using Cisco Intersight Assist. * `RedfishServer` - A generic target type for servers that support Redfish APIs and is managed using Cisco Intersight Assist. Support is limited to HPE and Dell Servers. * `NetAppOntap` - A Netapp ONTAP Storage system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `NetAppActiveIqUnifiedManager` - A NetApp Active IQ Unified Manager (AIQUM) that is managed using Cisco Intersight Assist. * `EmcScaleIo` - An EMC ScaleIO Software Defined Storage system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `EmcVmax` - An EMC VMAX 2 or 3 series enterprise storage array that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `EmcVplex` - An EMC VPLEX virtual storage system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `EmcXtremIo` - An EMC XtremIO SSD storage system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `VmwareVcenter` - A VMware vCenter instance that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer and Virtualization features are supported on this hypervisor. * `MicrosoftHyperV` - A Microsoft Hyper-V host that is managed using Cisco Intersight Assist. Optionally, other hosts in the cluster can be discovered through this host. Cisco Intersight Workload Optimizer features are supported on this hypervisor. * `AppDynamics` - An AppDynamics controller running in a SaaS or on-prem datacenter. On-prem AppDynamics instance is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this controller. * `Dynatrace` - A Dynatrace Server instance running in a SaaS or on-prem datacenter. On-prem Dynatrace instance is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this server. * `NewRelic` - A NewRelic user account. The NewRelic instance monitors the application infrastructure. Cisco Intersight Workload Optimizer features are supported on this server. * `ServiceNow` - A cloud-based workflow automation platform that enables enterprise organizations to improve operational efficiencies by streamlining and automating routine work tasks. * `CloudFoundry` - An open source cloud platform on which developers can build, deploy, run and scale applications. * `MicrosoftAzureApplicationInsights` - A feature of Azure Monitor, is an extensible Application Performance Management service for developers and DevOps professionals to monitor their live applications. * `OpenStack` - An OpenStack target manages Virtual Machines, Physical Machines, Datacenters and Virtual Datacenters using different OpenStack services as administrative endpoints. * `MicrosoftSqlServer` - A Microsoft SQL database server that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this database. * `MySqlServer` - A MySQL database server that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this database. * `OracleDatabaseServer` - An Oracle database server that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this database. * `IBMWebSphereApplicationServer` - An IBM WebSphere Application server that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this application server. * `OracleWebLogicServer` - Oracle WebLogic Server is a unified and extensible platform for developing, deploying and running enterprise applications, such as Java, for on-premises and in the cloud. WebLogic Server offers a robust, mature, and scalable implementation of Java Enterprise Edition (EE) and Jakarta EE. * `ApacheTomcatServer` - An Apache Tomcat server that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this server. * `JavaVirtualMachine` - A JVM Application with JMX configured that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this application. * `RedHatJBossApplicationServer` - JBoss Application Server is an open-source, cross-platform Java application server developed by JBoss, a division of Red Hat Inc. It is an open-source implementation of Java 2 Enterprise Edition (J2EE) that is used for implementing Java applications and other Web-based applications and software. * `Kubernetes` - A Kubernetes cluster that runs containerized applications, with Kubernetes Collector installed. Cisco Intersight Workload Optimizer features are supported on Kubernetes cluster. * `AmazonWebService` - An Amazon Web Service cloud account. Cisco Intersight Workload Optimizer and Virtualization features are supported on this cloud. * `AmazonWebServiceBilling` - An Amazon Web Service cloud billing account used to retrieve billing information stored in S3 bucket. Cisco Intersight Workload Optimizer features are supported on this cloud. * `GoogleCloudPlatform` - A Google Cloud Platform service account with access to one or more projects. Cisco Intersight Workload Optimizer features are supported on this cloud. * `GoogleCloudPlatformBilling` - A Google Cloud Platform service account used to retrieve billing information from BigQuery. Cisco Intersight Workload Optimizer features are supported on this cloud. * `MicrosoftAzureServicePrincipal` - A Microsoft Azure Service Principal account with access to Azure subscriptions. Cisco Intersight Workload Optimizer features are supported on this cloud. * `MicrosoftAzureEnterpriseAgreement` - A Microsoft Azure Enterprise Agreement enrolment used to retrieve pricing and billing information. Cisco Intersight Workload Optimizer features are supported on this cloud. * `MicrosoftAzureBilling` - A Microsoft Azure Service Principal account with access to billing information. Cisco Intersight Workload Optimizer features are supported on this cloud. * `DellCompellent` - A Dell EMC SC Series (Compellent) storage system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `HPE3Par` - A HPE 3PAR StoreServ system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this device. * `RedHatEnterpriseVirtualization` - A Red Hat Enterprise Virtualization Hypervisor system that manages Virtual Machines. * `NutanixAcropolis` - A Nutanix Acropolis cluster that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this cluster. * `HPEOneView` - A HPE OneView system that is managed using Cisco Intersight Assist. Cisco Intersight Workload Optimizer features are supported on this system. * `ServiceEngine` - Cisco Application Services Engine. Cisco Application Services Engine is a platform to deploy and manage applications. * `HitachiVirtualStoragePlatform` - A Hitachi Virtual Storage Platform (Hitachi VSP) that is managed using Cisco Intersight Assist. * `GenericTarget` - A generic third-party target supported only in Partner Integration Appliance. This target type is used for development purposes and will not be supported in production environment. * `IMCBlade` - A Cisco UCS blade server managed by Cisco Intersight. * `TerraformCloud` - A Terraform Cloud Business Tier account. * `TerraformAgent` - A Terraform Cloud Agent that will be deployed on Cisco Intersight Assist. The agent can be used to plan and apply Terraform runs from a Terraform Cloud workspace. * `CustomTarget` - CustomTarget is deprecated. Use HTTPEndpoint type to claim HTTP endpoints. * `AnsibleEndpoint` - An external endpoint that is added as a target which can be accessed through Ansible in Intersight Cloud Orchestrator automation workflows. * `HTTPEndpoint` - An HTTP endpoint that can be accessed in Intersight Orchestrator workflows directly or using Cisco Intersight Assist. Authentication Schemes supported are Basic and Bearer Token. * `SSHEndpoint` - An SSH endpoint that can be accessed in Intersight Orchestrator workflows using Cisco Intersight Assist. * `CiscoCatalyst` - A Cisco Catalyst networking switch device. * `PowerShellEndpoint` - A Windows operating system server on which PowerShell scripts can be executed using Cisco Intersight Assist. * `CiscoDNAC` - A Cisco Digital Network Architecture (DNA) Center appliance. * `CiscoFMC` - A Cisco Secure Firewall Management Center. * `ViptelaCloud` - A Cisco Viptela SD-WAN Cloud. * `MerakiCloud` - A Cisco Meraki Organization. * `CiscoISE` - A Cisco Identity Services Engine (ISE) target. PlatformType *string `json:"PlatformType,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_error_response_handler_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_error_response_handler_list.go index 73d29e7e6e..77aee80b78 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_error_response_handler_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_error_response_handler_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_error_response_handler_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_error_response_handler_relationship.go index 432d5d68ca..8769e7fdc7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_error_response_handler_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_error_response_handler_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_error_response_handler_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_error_response_handler_response.go index 55b07e5e84..b1de3a1462 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_error_response_handler_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_error_response_handler_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_expect_prompt.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_expect_prompt.go index 0fda75c2c4..767d312cac 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_expect_prompt.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_expect_prompt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_failure_end_task.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_failure_end_task.go index b6683278cd..4f7f85762a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_failure_end_task.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_failure_end_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_file_download_op.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_file_download_op.go index 0bf8ceb613..78cd36fab6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_file_download_op.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_file_download_op.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_file_operations.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_file_operations.go index e6e24539c0..cadac16430 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_file_operations.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_file_operations.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_file_template_op.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_file_template_op.go index a361e0a3be..cde439810e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_file_template_op.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_file_template_op.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_file_transfer.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_file_transfer.go index 6a49368597..76b7df0f46 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_file_transfer.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_file_transfer.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_fork_task.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_fork_task.go index c32cbf4c6b..bd0df8278b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_fork_task.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_fork_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_initiator_context.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_initiator_context.go index 2c889b4c73..7e6e8505f1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_initiator_context.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_initiator_context.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_internal_properties.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_internal_properties.go index e0ee52049a..915d707904 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_internal_properties.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_internal_properties.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_join_task.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_join_task.go index 9917456ed3..f9e1615ae0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_join_task.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_join_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_loop_task.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_loop_task.go index 8f4ad16995..195b0aa590 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_loop_task.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_loop_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_message.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_message.go index e94a7dd286..93ed515e2d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_message.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_message.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_inventory_data_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_inventory_data_type.go index b7779ce462..05912efe5e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_inventory_data_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_inventory_data_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_inventory_property.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_inventory_property.go index 7f4c7554dd..395a7b68df 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_inventory_property.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_inventory_property.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_reference_array_item.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_reference_array_item.go index 7145e30cbf..b307c7624a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_reference_array_item.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_reference_array_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_reference_auto_array_item.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_reference_auto_array_item.go index 3b5c81dd34..b1d33a746d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_reference_auto_array_item.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_reference_auto_array_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_reference_auto_data_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_reference_auto_data_type.go index a1ae525b4a..5e4a85fe81 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_reference_auto_data_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_reference_auto_data_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_reference_auto_property.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_reference_auto_property.go index ed5948f078..6249b9d5b4 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_reference_auto_property.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_reference_auto_property.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_reference_data_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_reference_data_type.go index f83556454c..428382d9dd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_reference_data_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_reference_data_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_reference_property.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_reference_property.go index 59caf633bd..0240fe475b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_reference_property.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_mo_reference_property.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,7 +30,7 @@ type WorkflowMoReferenceProperty struct { ObjectType string `json:"ObjectType"` DisplayAttributes []string `json:"DisplayAttributes,omitempty"` // Field to hold an Intersight API along with an optional filter to narrow down the search options. - Selector *string `json:"Selector,omitempty"` + Selector *string `json:"Selector,omitempty" validate:"regexp=^$|\\/api\\/v1\\/.*"` SelectorProperty NullableWorkflowSelectorProperty `json:"SelectorProperty,omitempty"` // A property from the Intersight object, value of which can be used as value for referenced input definition. ValueAttribute *string `json:"ValueAttribute,omitempty"` @@ -355,7 +355,7 @@ func (o *WorkflowMoReferenceProperty) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` DisplayAttributes []string `json:"DisplayAttributes,omitempty"` // Field to hold an Intersight API along with an optional filter to narrow down the search options. - Selector *string `json:"Selector,omitempty"` + Selector *string `json:"Selector,omitempty" validate:"regexp=^$|\\/api\\/v1\\/.*"` SelectorProperty NullableWorkflowSelectorProperty `json:"SelectorProperty,omitempty"` // A property from the Intersight object, value of which can be used as value for referenced input definition. ValueAttribute *string `json:"ValueAttribute,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_operation_type_decommission.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_operation_type_decommission.go index d590efeb44..6b7345c340 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_operation_type_decommission.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_operation_type_decommission.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_operation_type_deployment.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_operation_type_deployment.go index cbbc48c550..1c3d0b7d35 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_operation_type_deployment.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_operation_type_deployment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_operation_type_post_deployment.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_operation_type_post_deployment.go index 13621bc543..f6d8f31ec9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_operation_type_post_deployment.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_operation_type_post_deployment.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_parameter_set.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_parameter_set.go index d05fdd6194..92e79ead49 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_parameter_set.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_parameter_set.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -34,7 +34,7 @@ type WorkflowParameterSet struct { ControlParameter *string `json:"ControlParameter,omitempty"` EnableParameters []string `json:"EnableParameters,omitempty"` // Name for the parameter set. Limited to 64 alphanumeric characters (upper and lower case), and special characters '-' and '_'. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_-]{1,64}$"` // The controlling parameter will be evaluated against this 'value'. Value *string `json:"Value,omitempty"` AdditionalProperties map[string]interface{} @@ -390,7 +390,7 @@ func (o *WorkflowParameterSet) UnmarshalJSON(data []byte) (err error) { ControlParameter *string `json:"ControlParameter,omitempty"` EnableParameters []string `json:"EnableParameters,omitempty"` // Name for the parameter set. Limited to 64 alphanumeric characters (upper and lower case), and special characters '-' and '_'. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_-]{1,64}$"` // The controlling parameter will be evaluated against this 'value'. Value *string `json:"Value,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_power_shell_api.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_power_shell_api.go index 0a1285f087..9a7acb548b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_power_shell_api.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_power_shell_api.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_power_shell_batch_api_executor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_power_shell_batch_api_executor.go index bf6c3fae13..c12de58a93 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_power_shell_batch_api_executor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_power_shell_batch_api_executor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_power_shell_batch_api_executor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_power_shell_batch_api_executor_list.go index c2f820e95b..a7503bf922 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_power_shell_batch_api_executor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_power_shell_batch_api_executor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_power_shell_batch_api_executor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_power_shell_batch_api_executor_response.go index 6c97ef3416..8185ad3b6b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_power_shell_batch_api_executor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_power_shell_batch_api_executor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_primitive_array_item.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_primitive_array_item.go index 0a3d895b7b..5d13e7f78d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_primitive_array_item.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_primitive_array_item.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_primitive_data_property.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_primitive_data_property.go index a4f5dc7359..2a8d50ab9e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_primitive_data_property.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_primitive_data_property.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_primitive_data_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_primitive_data_type.go index 11e96de31c..6499010700 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_primitive_data_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_primitive_data_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_properties.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_properties.go index 413e146548..d17b457094 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_properties.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_properties.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_resource_inline_selector.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_resource_inline_selector.go index 6f11b6ba0c..82722410ba 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_resource_inline_selector.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_resource_inline_selector.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type WorkflowResourceInlineSelector struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The odata based filter URL to select the resources. - Selector *string `json:"Selector,omitempty"` + Selector *string `json:"Selector,omitempty" validate:"regexp=^$|\\/api\\/v1\\/.*"` AdditionalProperties map[string]interface{} } @@ -233,7 +233,7 @@ func (o *WorkflowResourceInlineSelector) UnmarshalJSON(data []byte) (err error) // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. ObjectType string `json:"ObjectType"` // The odata based filter URL to select the resources. - Selector *string `json:"Selector,omitempty"` + Selector *string `json:"Selector,omitempty" validate:"regexp=^$|\\/api\\/v1\\/.*"` } varWorkflowResourceInlineSelectorWithoutEmbeddedStruct := WorkflowResourceInlineSelectorWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_resource_selector_criteria.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_resource_selector_criteria.go index 8ec3d83612..abaad36825 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_resource_selector_criteria.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_resource_selector_criteria.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_result_handler.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_result_handler.go index a2886c14ad..fa16a5c2dc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_result_handler.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_result_handler.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_rollback_task.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_rollback_task.go index 5aea4a0555..c97e5dad31 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_rollback_task.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_rollback_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_rollback_workflow.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_rollback_workflow.go index c512022adf..7391d562bc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_rollback_workflow.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_rollback_workflow.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_rollback_workflow_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_rollback_workflow_list.go index bcc4b9a6bb..ccf2c59285 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_rollback_workflow_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_rollback_workflow_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_rollback_workflow_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_rollback_workflow_response.go index beb4eb2592..8c0016264c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_rollback_workflow_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_rollback_workflow_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_rollback_workflow_task.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_rollback_workflow_task.go index 2e049c5043..87358ccb23 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_rollback_workflow_task.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_rollback_workflow_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_selector_property.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_selector_property.go index 696442c980..eb47080808 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_selector_property.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_selector_property.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_sequence_params.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_sequence_params.go index 09ffd1d854..5e92dec2f8 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_sequence_params.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_sequence_params.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_serial_loop_task.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_serial_loop_task.go index e991c52dea..2634ae57fe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_serial_loop_task.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_serial_loop_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_definition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_definition.go index de2fef656c..8544bf0db1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_definition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -39,9 +39,9 @@ type WorkflowServiceItemActionDefinition struct { Description *string `json:"Description,omitempty"` InputDefinition []WorkflowBaseDataType `json:"InputDefinition,omitempty"` // A user friendly short name to identify the action. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ) or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` // The name for this action definition. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:) or an underscore (_). Name of the action must be unique within a service item definition. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // Value in seconds to specify the periodicity of the workflows. A zero value indicate the workflow will not execute periodically. A non-zero value indicate, the workflow will be executed periodically with this periodicity. Periodicity *int64 `json:"Periodicity,omitempty"` PostCoreWorkflows []WorkflowServiceItemActionWorkflowDefinition `json:"PostCoreWorkflows,omitempty"` @@ -996,9 +996,9 @@ func (o *WorkflowServiceItemActionDefinition) UnmarshalJSON(data []byte) (err er Description *string `json:"Description,omitempty"` InputDefinition []WorkflowBaseDataType `json:"InputDefinition,omitempty"` // A user friendly short name to identify the action. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ) or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` // The name for this action definition. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:) or an underscore (_). Name of the action must be unique within a service item definition. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // Value in seconds to specify the periodicity of the workflows. A zero value indicate the workflow will not execute periodically. A non-zero value indicate, the workflow will be executed periodically with this periodicity. Periodicity *int64 `json:"Periodicity,omitempty"` PostCoreWorkflows []WorkflowServiceItemActionWorkflowDefinition `json:"PostCoreWorkflows,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_definition_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_definition_list.go index 6bd0a7ba2a..12dfad975d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_definition_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_definition_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_definition_relationship.go index 0d9a133f70..4d5603b550 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_definition_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_definition_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_definition_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_definition_response.go index 0d8aab3979..4ad38ff534 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_definition_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_instance.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_instance.go index 1f41e0731a..c3ea15d832 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_instance.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_instance.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_instance_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_instance_list.go index 3d6e8b96e5..cd031bb254 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_instance_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_instance_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_instance_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_instance_relationship.go index 6c9fa1b1f0..7d6b8c4927 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_instance_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_instance_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_instance_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_instance_response.go index 035dbdf9c3..4de47e6649 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_instance_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_instance_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_properties.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_properties.go index 83b101d6ed..3cfee7d449 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_properties.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_properties.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_workflow_definition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_workflow_definition.go index 02fd377f70..3c7e0c1e19 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_workflow_definition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_action_workflow_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -37,7 +37,7 @@ type WorkflowServiceItemActionWorkflowDefinition struct { // A user defined label identifier of the workflow used for UI display. Label *string `json:"Label,omitempty"` // The name of the workflow, this name must be unique across all the workflow definition used within the action definitions. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_:-]{1,64}$"` // The workflow definition version to use as subworkflow. When no version is specified then the default version of the workflow at the time of creating or updating this workflow is used. Version *int64 `json:"Version,omitempty"` WorkflowDefinition *MoMoRef `json:"WorkflowDefinition,omitempty"` @@ -500,7 +500,7 @@ func (o *WorkflowServiceItemActionWorkflowDefinition) UnmarshalJSON(data []byte) // A user defined label identifier of the workflow used for UI display. Label *string `json:"Label,omitempty"` // The name of the workflow, this name must be unique across all the workflow definition used within the action definitions. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_:-]{1,64}$"` // The workflow definition version to use as subworkflow. When no version is specified then the default version of the workflow at the time of creating or updating this workflow is used. Version *int64 `json:"Version,omitempty"` WorkflowDefinition *MoMoRef `json:"WorkflowDefinition,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_attribute.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_attribute.go index 7a3ebf6edd..d008d2e7bd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_attribute.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_attribute.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_attribute_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_attribute_list.go index a52e26478d..7bbb74b01f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_attribute_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_attribute_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_attribute_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_attribute_response.go index c13f309a53..5504352c70 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_attribute_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_attribute_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_definition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_definition.go index f044701b32..aabc83bc4b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_definition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -40,13 +40,13 @@ type WorkflowServiceItemDefinition struct { // The description for this service item which provides information on what are the pre-requisites to deploy the service item and what features are supported on the service item. Description *string `json:"Description,omitempty"` // A user friendly short name to identify the service item. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ) or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` // License entitlement required to run this service item. * `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. * `IKS-Advantage` - IKS-Advantage as a License type. * `INC-Premier-1GFixed` - Premier 1G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-10GFixed` - Premier 10G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-100GFixed` - Premier 100G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-Mod4Slot` - Premier Modular 4 slot license tier for Intersight Nexus Cloud. * `INC-Premier-Mod8Slot` - Premier Modular 8 slot license tier for Intersight Nexus Cloud. * `INC-Premier-D2OpsFixed` - Premier D2Ops fixed license tier for Intersight Nexus Cloud. * `INC-Premier-D2OpsMod` - Premier D2Ops modular license tier for Intersight Nexus Cloud. * `INC-Premier-CentralizedMod8Slot` - Premier modular license tier of switch type CentralizedMod8Slot for Intersight Nexus Cloud. * `INC-Premier-DistributedMod8Slot` - Premier modular license tier of switch type DistributedMod8Slot for Intersight Nexus Cloud. * `IntersightTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode Intersight tiers. * `IWOTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode IKS tiers. * `IKSTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode IWO tiers. * `INCTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode Nexus tiers. LicenseEntitlement *string `json:"LicenseEntitlement,omitempty"` // The user identifier who last updated the service item definition. ModUser *string `json:"ModUser,omitempty"` // The name for this service item definition. You can have multiple versions of the service item with the same name. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // The publish status of service item (Draft, Published, Archived). * `Draft` - The enum specifies the option as Draft which means the meta definition is being designed and tested. * `Published` - The enum specifies the option as Published which means the meta definition is ready for consumption. * `Archived` - The enum specifies the option as Archived which means the meta definition is archived and can no longer be consumed. PublishStatus *string `json:"PublishStatus,omitempty"` // State of service item considering the state of underlying service item actions definitions. * `Okay` - Deployment and other post-deployment actions are in valid state. * `Critical` - Deployment action is not in valid state. * `Warning` - Deployment action is in valid state, and one or more post-deployment actions are not in valid state. @@ -918,13 +918,13 @@ func (o *WorkflowServiceItemDefinition) UnmarshalJSON(data []byte) (err error) { // The description for this service item which provides information on what are the pre-requisites to deploy the service item and what features are supported on the service item. Description *string `json:"Description,omitempty"` // A user friendly short name to identify the service item. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ) or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` // License entitlement required to run this service item. * `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. * `IKS-Advantage` - IKS-Advantage as a License type. * `INC-Premier-1GFixed` - Premier 1G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-10GFixed` - Premier 10G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-100GFixed` - Premier 100G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-Mod4Slot` - Premier Modular 4 slot license tier for Intersight Nexus Cloud. * `INC-Premier-Mod8Slot` - Premier Modular 8 slot license tier for Intersight Nexus Cloud. * `INC-Premier-D2OpsFixed` - Premier D2Ops fixed license tier for Intersight Nexus Cloud. * `INC-Premier-D2OpsMod` - Premier D2Ops modular license tier for Intersight Nexus Cloud. * `INC-Premier-CentralizedMod8Slot` - Premier modular license tier of switch type CentralizedMod8Slot for Intersight Nexus Cloud. * `INC-Premier-DistributedMod8Slot` - Premier modular license tier of switch type DistributedMod8Slot for Intersight Nexus Cloud. * `IntersightTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode Intersight tiers. * `IWOTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode IKS tiers. * `IKSTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode IWO tiers. * `INCTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode Nexus tiers. LicenseEntitlement *string `json:"LicenseEntitlement,omitempty"` // The user identifier who last updated the service item definition. ModUser *string `json:"ModUser,omitempty"` // The name for this service item definition. You can have multiple versions of the service item with the same name. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_.:-]{1,64}$"` // The publish status of service item (Draft, Published, Archived). * `Draft` - The enum specifies the option as Draft which means the meta definition is being designed and tested. * `Published` - The enum specifies the option as Published which means the meta definition is ready for consumption. * `Archived` - The enum specifies the option as Archived which means the meta definition is archived and can no longer be consumed. PublishStatus *string `json:"PublishStatus,omitempty"` // State of service item considering the state of underlying service item actions definitions. * `Okay` - Deployment and other post-deployment actions are in valid state. * `Critical` - Deployment action is not in valid state. * `Warning` - Deployment action is in valid state, and one or more post-deployment actions are not in valid state. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_definition_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_definition_list.go index 1b226a6cab..0b83020ad6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_definition_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_definition_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_definition_relationship.go index dacf003801..320eeba888 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_definition_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_definition_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_definition_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_definition_response.go index 4077b728ce..2ef34bdf04 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_definition_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_definition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_definition.go index b3335b31bd..14ded580c0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_definition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_definition_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_definition_list.go index 2b05a6bf2d..c4970075e5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_definition_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_definition_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_definition_relationship.go index 4406cd7692..63ef465d07 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_definition_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_definition_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_definition_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_definition_response.go index afa2c61688..256fc9ebf5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_definition_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_execution.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_execution.go index f0857d96fb..55ac6fc6a6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_execution.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_execution.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_execution_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_execution_list.go index b5cd774b92..e20b72fce9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_execution_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_execution_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_execution_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_execution_response.go index 3fa868c8ed..6015412c3f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_execution_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_health_check_execution_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_input_definition_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_input_definition_type.go index 4ee20ebcca..bf958e8380 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_input_definition_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_input_definition_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_instance.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_instance.go index 65d69caf71..8686c42796 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_instance.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_instance.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,11 +31,11 @@ type WorkflowServiceItemInstance struct { // The description for this service item instance. Description *string `json:"Description,omitempty"` // A user friendly short name to identify the resource. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ) or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` // Last status of the service item instance which will be reverted when an ongoing service item action instance is aborted. * `NotCreated` - The service item is not yet created and it is in a draft mode. A service item instance can be deleted in this state. * `InProgress` - An action is in progress and until that action has reached a final state, another action cannot be started. * `Failed` - The last action on the service item instance failed and corrective measures need to be taken to bring the service item instance back to valid state. * `Okay` - The last action on the service item instance completed and the service item instance is in Okay state. * `Decommissioned` - The service item is decommissioned and can be safely deleted. A service item instance in any other state after it has been created cannot be deleted until it has been decommissioned. LastStatus *string `json:"LastStatus,omitempty"` // A name of the service item instance. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` // Lifecycle state of service item instance. * `Creating` - The service item is not yet created and creation action is in progress. * `Created` - The service item is created. * `Decommissioning` - The service item is not yet decommissioned and decommission action is in progress. * `Decommissioned` - The service item is decommisioned. * `Deleting` - The service item is not yet deleted and deletion action is in progress. * `Deleted` - The service item is deleted. * `Failed` - The service item action is failed to perform the operation. ResourcelifecycleStatus *string `json:"ResourcelifecycleStatus,omitempty"` // Status of the service item instance which controls the actions that can be performed on this instance. * `NotCreated` - The service item is not yet created and it is in a draft mode. A service item instance can be deleted in this state. * `InProgress` - An action is in progress and until that action has reached a final state, another action cannot be started. * `Failed` - The last action on the service item instance failed and corrective measures need to be taken to bring the service item instance back to valid state. * `Okay` - The last action on the service item instance completed and the service item instance is in Okay state. * `Decommissioned` - The service item is decommissioned and can be safely deleted. A service item instance in any other state after it has been created cannot be deleted until it has been decommissioned. @@ -730,11 +730,11 @@ func (o *WorkflowServiceItemInstance) UnmarshalJSON(data []byte) (err error) { // The description for this service item instance. Description *string `json:"Description,omitempty"` // A user friendly short name to identify the resource. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ) or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^$|^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` // Last status of the service item instance which will be reverted when an ongoing service item action instance is aborted. * `NotCreated` - The service item is not yet created and it is in a draft mode. A service item instance can be deleted in this state. * `InProgress` - An action is in progress and until that action has reached a final state, another action cannot be started. * `Failed` - The last action on the service item instance failed and corrective measures need to be taken to bring the service item instance back to valid state. * `Okay` - The last action on the service item instance completed and the service item instance is in Okay state. * `Decommissioned` - The service item is decommissioned and can be safely deleted. A service item instance in any other state after it has been created cannot be deleted until it has been decommissioned. LastStatus *string `json:"LastStatus,omitempty"` // A name of the service item instance. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` // Lifecycle state of service item instance. * `Creating` - The service item is not yet created and creation action is in progress. * `Created` - The service item is created. * `Decommissioning` - The service item is not yet decommissioned and decommission action is in progress. * `Decommissioned` - The service item is decommisioned. * `Deleting` - The service item is not yet deleted and deletion action is in progress. * `Deleted` - The service item is deleted. * `Failed` - The service item action is failed to perform the operation. ResourcelifecycleStatus *string `json:"ResourcelifecycleStatus,omitempty"` // Status of the service item instance which controls the actions that can be performed on this instance. * `NotCreated` - The service item is not yet created and it is in a draft mode. A service item instance can be deleted in this state. * `InProgress` - An action is in progress and until that action has reached a final state, another action cannot be started. * `Failed` - The last action on the service item instance failed and corrective measures need to be taken to bring the service item instance back to valid state. * `Okay` - The last action on the service item instance completed and the service item instance is in Okay state. * `Decommissioned` - The service item is decommissioned and can be safely deleted. A service item instance in any other state after it has been created cannot be deleted until it has been decommissioned. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_instance_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_instance_list.go index cfba133be1..e3465d05ab 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_instance_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_instance_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_instance_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_instance_relationship.go index e1d75d0004..af45119fd2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_instance_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_instance_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_instance_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_instance_response.go index 03c149f29a..5cd337844f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_instance_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_instance_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_output.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_output.go index 844a4a3a62..5684555f96 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_output.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_output.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_output_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_output_list.go index e41cd1636e..9884367a48 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_output_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_output_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_output_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_output_response.go index 36262aa2f9..16baf22f2e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_output_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_output_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_type.go index 901c9ce520..99334f87fe 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_service_item_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,7 +31,7 @@ type WorkflowServiceItemType struct { // The description of this service item. Description *string `json:"Description,omitempty"` // The name of the service item as defined by the user. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` ServiceItemDefinition *MoMoRef `json:"ServiceItemDefinition,omitempty"` ServiceItemInputDefinition []WorkflowServiceItemInputDefinitionType `json:"ServiceItemInputDefinition,omitempty"` AdditionalProperties map[string]interface{} @@ -345,7 +345,7 @@ func (o *WorkflowServiceItemType) UnmarshalJSON(data []byte) (err error) { // The description of this service item. Description *string `json:"Description,omitempty"` // The name of the service item as defined by the user. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+[\\\\sa-zA-Z0-9_.:-]{1,92}$"` ServiceItemDefinition *MoMoRef `json:"ServiceItemDefinition,omitempty"` ServiceItemInputDefinition []WorkflowServiceItemInputDefinitionType `json:"ServiceItemInputDefinition,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ssh_batch_executor.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ssh_batch_executor.go index 9b029b4706..6701a1ca39 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ssh_batch_executor.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ssh_batch_executor.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ssh_batch_executor_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ssh_batch_executor_list.go index 326c4c5f04..9448193a76 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ssh_batch_executor_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ssh_batch_executor_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ssh_batch_executor_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ssh_batch_executor_response.go index 8877a477a0..8819c7740b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ssh_batch_executor_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ssh_batch_executor_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ssh_cmd.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ssh_cmd.go index eff4317982..1df4738f0f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ssh_cmd.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ssh_cmd.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ssh_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ssh_config.go index 5ccbfb95b1..0b2890dde6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ssh_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ssh_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ssh_session.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ssh_session.go index dfab3d17d9..100f6a502f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ssh_session.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ssh_session.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_start_task.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_start_task.go index 340086cccd..ee49a7ea0c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_start_task.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_start_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_sub_workflow_task.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_sub_workflow_task.go index 5ac7d21239..906f4c92c1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_sub_workflow_task.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_sub_workflow_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_success_end_task.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_success_end_task.go index f78666d69b..79b2707f6b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_success_end_task.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_success_end_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_target_context.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_target_context.go index 7fae97c869..256781d2b0 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_target_context.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_target_context.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_target_data_type.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_target_data_type.go index c8410b1c10..563ce113c5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_target_data_type.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_target_data_type.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_target_property.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_target_property.go index dbf168a1f4..eb41197c7b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_target_property.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_target_property.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -32,8 +32,9 @@ type WorkflowTargetProperty struct { ConnectorAttribute *string `json:"ConnectorAttribute,omitempty"` ConstraintAttributes []string `json:"ConstraintAttributes,omitempty"` DisplayAttributes []string `json:"DisplayAttributes,omitempty"` + PlatformType []string `json:"PlatformType,omitempty"` // Field to hold an Intersight API along with an optional filter to narrow down the search options for target device. - Selector *string `json:"Selector,omitempty"` + Selector *string `json:"Selector,omitempty" validate:"regexp=^$|\\/api\\/v1\\/.*"` SelectorProperty NullableWorkflowSelectorProperty `json:"SelectorProperty,omitempty"` SupportedObjects []string `json:"SupportedObjects,omitempty"` AdditionalProperties map[string]interface{} @@ -220,6 +221,39 @@ func (o *WorkflowTargetProperty) SetDisplayAttributes(v []string) { o.DisplayAttributes = v } +// GetPlatformType returns the PlatformType field value if set, zero value otherwise (both if not set or set to explicit null). +func (o *WorkflowTargetProperty) GetPlatformType() []string { + if o == nil { + var ret []string + return ret + } + return o.PlatformType +} + +// GetPlatformTypeOk returns a tuple with the PlatformType field value if set, nil otherwise +// and a boolean to check if the value has been set. +// NOTE: If the value is an explicit nil, `nil, true` will be returned +func (o *WorkflowTargetProperty) GetPlatformTypeOk() ([]string, bool) { + if o == nil || IsNil(o.PlatformType) { + return nil, false + } + return o.PlatformType, true +} + +// HasPlatformType returns a boolean if a field has been set. +func (o *WorkflowTargetProperty) HasPlatformType() bool { + if o != nil && !IsNil(o.PlatformType) { + return true + } + + return false +} + +// SetPlatformType gets a reference to the given []string and assigns it to the PlatformType field. +func (o *WorkflowTargetProperty) SetPlatformType(v []string) { + o.PlatformType = v +} + // GetSelector returns the Selector field value if set, zero value otherwise. func (o *WorkflowTargetProperty) GetSelector() string { if o == nil || IsNil(o.Selector) { @@ -363,6 +397,9 @@ func (o WorkflowTargetProperty) ToMap() (map[string]interface{}, error) { if o.DisplayAttributes != nil { toSerialize["DisplayAttributes"] = o.DisplayAttributes } + if o.PlatformType != nil { + toSerialize["PlatformType"] = o.PlatformType + } if !IsNil(o.Selector) { toSerialize["Selector"] = o.Selector } @@ -431,8 +468,9 @@ func (o *WorkflowTargetProperty) UnmarshalJSON(data []byte) (err error) { ConnectorAttribute *string `json:"ConnectorAttribute,omitempty"` ConstraintAttributes []string `json:"ConstraintAttributes,omitempty"` DisplayAttributes []string `json:"DisplayAttributes,omitempty"` + PlatformType []string `json:"PlatformType,omitempty"` // Field to hold an Intersight API along with an optional filter to narrow down the search options for target device. - Selector *string `json:"Selector,omitempty"` + Selector *string `json:"Selector,omitempty" validate:"regexp=^$|\\/api\\/v1\\/.*"` SelectorProperty NullableWorkflowSelectorProperty `json:"SelectorProperty,omitempty"` SupportedObjects []string `json:"SupportedObjects,omitempty"` } @@ -447,6 +485,7 @@ func (o *WorkflowTargetProperty) UnmarshalJSON(data []byte) (err error) { varWorkflowTargetProperty.ConnectorAttribute = varWorkflowTargetPropertyWithoutEmbeddedStruct.ConnectorAttribute varWorkflowTargetProperty.ConstraintAttributes = varWorkflowTargetPropertyWithoutEmbeddedStruct.ConstraintAttributes varWorkflowTargetProperty.DisplayAttributes = varWorkflowTargetPropertyWithoutEmbeddedStruct.DisplayAttributes + varWorkflowTargetProperty.PlatformType = varWorkflowTargetPropertyWithoutEmbeddedStruct.PlatformType varWorkflowTargetProperty.Selector = varWorkflowTargetPropertyWithoutEmbeddedStruct.Selector varWorkflowTargetProperty.SelectorProperty = varWorkflowTargetPropertyWithoutEmbeddedStruct.SelectorProperty varWorkflowTargetProperty.SupportedObjects = varWorkflowTargetPropertyWithoutEmbeddedStruct.SupportedObjects @@ -472,6 +511,7 @@ func (o *WorkflowTargetProperty) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "ConnectorAttribute") delete(additionalProperties, "ConstraintAttributes") delete(additionalProperties, "DisplayAttributes") + delete(additionalProperties, "PlatformType") delete(additionalProperties, "Selector") delete(additionalProperties, "SelectorProperty") delete(additionalProperties, "SupportedObjects") diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_constraints.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_constraints.go index 9307d1050a..9645055ac9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_constraints.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_constraints.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_debug_log.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_debug_log.go index 2a91093667..e8203cca38 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_debug_log.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_debug_log.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_debug_log_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_debug_log_list.go index 91c90a6b4d..88e656457b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_debug_log_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_debug_log_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_debug_log_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_debug_log_response.go index 12d69d8af0..7dc6bd542a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_debug_log_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_debug_log_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_definition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_definition.go index 15ae27b457..39ee834a48 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_definition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -34,11 +34,11 @@ type WorkflowTaskDefinition struct { Description *string `json:"Description,omitempty"` InternalProperties NullableWorkflowInternalProperties `json:"InternalProperties,omitempty"` // 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. - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_'.\\/:-]{0,91}$"` // 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. * `IKS-Advantage` - IKS-Advantage as a License type. * `INC-Premier-1GFixed` - Premier 1G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-10GFixed` - Premier 10G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-100GFixed` - Premier 100G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-Mod4Slot` - Premier Modular 4 slot license tier for Intersight Nexus Cloud. * `INC-Premier-Mod8Slot` - Premier Modular 8 slot license tier for Intersight Nexus Cloud. * `INC-Premier-D2OpsFixed` - Premier D2Ops fixed license tier for Intersight Nexus Cloud. * `INC-Premier-D2OpsMod` - Premier D2Ops modular license tier for Intersight Nexus Cloud. * `INC-Premier-CentralizedMod8Slot` - Premier modular license tier of switch type CentralizedMod8Slot for Intersight Nexus Cloud. * `INC-Premier-DistributedMod8Slot` - Premier modular license tier of switch type DistributedMod8Slot for Intersight Nexus Cloud. * `IntersightTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode Intersight tiers. * `IWOTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode IKS tiers. * `IKSTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode IWO tiers. * `INCTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode Nexus tiers. LicenseEntitlement *string `json:"LicenseEntitlement,omitempty"` // 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. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[a-zA-Z0-9_.:-]{0,63}$"` Properties NullableWorkflowProperties `json:"Properties,omitempty"` RollbackTasks []WorkflowRollbackTask `json:"RollbackTasks,omitempty"` // 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. @@ -821,11 +821,11 @@ func (o *WorkflowTaskDefinition) UnmarshalJSON(data []byte) (err error) { Description *string `json:"Description,omitempty"` InternalProperties NullableWorkflowInternalProperties `json:"InternalProperties,omitempty"` // 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. - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_'.\\/:-]{0,91}$"` // 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. * `IKS-Advantage` - IKS-Advantage as a License type. * `INC-Premier-1GFixed` - Premier 1G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-10GFixed` - Premier 10G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-100GFixed` - Premier 100G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-Mod4Slot` - Premier Modular 4 slot license tier for Intersight Nexus Cloud. * `INC-Premier-Mod8Slot` - Premier Modular 8 slot license tier for Intersight Nexus Cloud. * `INC-Premier-D2OpsFixed` - Premier D2Ops fixed license tier for Intersight Nexus Cloud. * `INC-Premier-D2OpsMod` - Premier D2Ops modular license tier for Intersight Nexus Cloud. * `INC-Premier-CentralizedMod8Slot` - Premier modular license tier of switch type CentralizedMod8Slot for Intersight Nexus Cloud. * `INC-Premier-DistributedMod8Slot` - Premier modular license tier of switch type DistributedMod8Slot for Intersight Nexus Cloud. * `IntersightTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode Intersight tiers. * `IWOTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode IKS tiers. * `IKSTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode IWO tiers. * `INCTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode Nexus tiers. LicenseEntitlement *string `json:"LicenseEntitlement,omitempty"` // 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. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[a-zA-Z0-9_.:-]{0,63}$"` Properties NullableWorkflowProperties `json:"Properties,omitempty"` RollbackTasks []WorkflowRollbackTask `json:"RollbackTasks,omitempty"` // 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. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_definition_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_definition_list.go index 449be69e4f..2cc0e10064 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_definition_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_definition_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_definition_relationship.go index d18e179275..7f24fb9e72 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_definition_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_definition_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_definition_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_definition_response.go index f1dad8ebe4..6343608976 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_definition_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_info.go index 29c0551975..29dcbadb8b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_info_list.go index 6c783de654..08016ab933 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_info_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_info_relationship.go index 9b307f8953..17f7300899 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_info_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_info_response.go index fc7fb30968..9f53fa32c7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_info_update.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_info_update.go index 0ad465381b..cf68c78ae5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_info_update.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_info_update.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_loop_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_loop_info.go index 451ddd9647..5dfca47e53 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_loop_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_loop_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_metadata.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_metadata.go index 2943d4d6b3..14cd8105ef 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_metadata.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_metadata.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,9 +31,9 @@ type WorkflowTaskMetadata struct { // The task metadata description to describe what this task will do when executed. Description *string `json:"Description,omitempty"` // A user friendly short name to identify the task metadata. - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_'.:-]{0,92}$"` // The name of the task metadata. 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. 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. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[a-zA-Z0-9_.:-]{0,63}$"` // An array of relationships to iamRole resources. AssociatedRoles []IamRoleRelationship `json:"AssociatedRoles,omitempty"` Catalog NullableWorkflowCatalogRelationship `json:"Catalog,omitempty"` @@ -394,9 +394,9 @@ func (o *WorkflowTaskMetadata) UnmarshalJSON(data []byte) (err error) { // The task metadata description to describe what this task will do when executed. Description *string `json:"Description,omitempty"` // A user friendly short name to identify the task metadata. - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_'.:-]{0,92}$"` // The name of the task metadata. 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. 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. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[a-zA-Z0-9_.:-]{0,63}$"` // An array of relationships to iamRole resources. AssociatedRoles []IamRoleRelationship `json:"AssociatedRoles,omitempty"` Catalog NullableWorkflowCatalogRelationship `json:"Catalog,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_metadata_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_metadata_list.go index 7720aa0879..5969030968 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_metadata_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_metadata_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_metadata_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_metadata_relationship.go index 805ace77f7..e76cd7465e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_metadata_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_metadata_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_metadata_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_metadata_response.go index bdc8ae9472..8da9a025ce 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_metadata_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_metadata_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_retry_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_retry_info.go index 08ec590923..0d595d7ea2 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_retry_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_task_retry_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_template_evaluation.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_template_evaluation.go index 452dc7032b..2efd463906 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_template_evaluation.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_template_evaluation.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_template_function_meta.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_template_function_meta.go index 6a67a146bf..2241316af3 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_template_function_meta.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_template_function_meta.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_template_function_meta_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_template_function_meta_list.go index fdf3469c52..2908e0d022 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_template_function_meta_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_template_function_meta_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_template_function_meta_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_template_function_meta_response.go index a7eaa00e08..31087d247a 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_template_function_meta_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_template_function_meta_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_template_parser.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_template_parser.go index ab2775e46f..3d492b4e38 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_template_parser.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_template_parser.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ui_display_metadata.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ui_display_metadata.go index 21734a6c8d..e8a25fcde6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ui_display_metadata.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ui_display_metadata.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ui_display_metadata_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ui_display_metadata_list.go index ccd7e2fc0f..a572a4406c 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ui_display_metadata_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ui_display_metadata_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ui_display_metadata_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ui_display_metadata_response.go index 0ce8e184ff..75b6f95b67 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ui_display_metadata_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ui_display_metadata_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ui_form_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ui_form_config.go index d1c3e96fdd..b9b9086c04 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ui_form_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ui_form_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ui_input_filter.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ui_input_filter.go index 0223de0655..c2fe6c4e84 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ui_input_filter.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ui_input_filter.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -30,7 +30,7 @@ type WorkflowUiInputFilter struct { ObjectType string `json:"ObjectType"` Filters []string `json:"Filters,omitempty"` // Name for the input definition to which this filter applies. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_). The first and last character in name must be an alphanumeric character. When defining the cascade filter for a sub property, use a period (.) to separate each section of the name like \"StorageConfig.Volume\" where 'StorageConfig' is an input name and 'Volume' is a sub property defined through custom data type definition. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+([a-zA-Z0-9-_.]*[a-zA-Z0-9])*$"` // Help message shown to the user about which prior input needs to be selected to enable the input mapped to this filter. UserHelpMessage *string `json:"UserHelpMessage,omitempty"` AdditionalProperties map[string]interface{} @@ -308,7 +308,7 @@ func (o *WorkflowUiInputFilter) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` Filters []string `json:"Filters,omitempty"` // Name for the input definition to which this filter applies. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_). The first and last character in name must be an alphanumeric character. When defining the cascade filter for a sub property, use a period (.) to separate each section of the name like \"StorageConfig.Volume\" where 'StorageConfig' is an input name and 'Volume' is a sub property defined through custom data type definition. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]+([a-zA-Z0-9-_.]*[a-zA-Z0-9])*$"` // Help message shown to the user about which prior input needs to be selected to enable the input mapped to this filter. UserHelpMessage *string `json:"UserHelpMessage,omitempty"` } diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ui_view_config.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ui_view_config.go index 09e051cea6..693291d942 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ui_view_config.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_ui_view_config.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_validation_error.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_validation_error.go index a8c1a39a37..6b68b9390e 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_validation_error.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_validation_error.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_validation_information.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_validation_information.go index 09e4b87706..30407e723f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_validation_information.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_validation_information.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_wait_task.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_wait_task.go index 67a04c8fcb..7cf6257d01 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_wait_task.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_wait_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_wait_task_prompt.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_wait_task_prompt.go index 1b6f4401b7..d1be2daf5d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_wait_task_prompt.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_wait_task_prompt.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_web_api.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_web_api.go index 307653b983..05f6a4d109 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_web_api.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_web_api.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_worker_task.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_worker_task.go index 59fb06c31c..d805d88233 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_worker_task.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_worker_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_ctx.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_ctx.go index 07c0ad2688..bbcb6d3950 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_ctx.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_ctx.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_definition.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_definition.go index 13968a9326..8a390302f7 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_definition.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_definition.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -37,7 +37,7 @@ type WorkflowWorkflowDefinition struct { InputDefinition []WorkflowBaseDataType `json:"InputDefinition,omitempty"` InputParameterSet []WorkflowParameterSet `json:"InputParameterSet,omitempty"` // A user friendly short name to identify the workflow. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), forward slash (/), or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_.\\/:-]{0,91}$"` // License entitlement required to run this workflow. It is calculated based on the highest license requirement of all its tasks. * `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. * `IKS-Advantage` - IKS-Advantage as a License type. * `INC-Premier-1GFixed` - Premier 1G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-10GFixed` - Premier 10G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-100GFixed` - Premier 100G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-Mod4Slot` - Premier Modular 4 slot license tier for Intersight Nexus Cloud. * `INC-Premier-Mod8Slot` - Premier Modular 8 slot license tier for Intersight Nexus Cloud. * `INC-Premier-D2OpsFixed` - Premier D2Ops fixed license tier for Intersight Nexus Cloud. * `INC-Premier-D2OpsMod` - Premier D2Ops modular license tier for Intersight Nexus Cloud. * `INC-Premier-CentralizedMod8Slot` - Premier modular license tier of switch type CentralizedMod8Slot for Intersight Nexus Cloud. * `INC-Premier-DistributedMod8Slot` - Premier modular license tier of switch type DistributedMod8Slot for Intersight Nexus Cloud. * `IntersightTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode Intersight tiers. * `IWOTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode IKS tiers. * `IKSTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode IWO tiers. * `INCTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode Nexus tiers. LicenseEntitlement *string `json:"LicenseEntitlement,omitempty"` // The maximum number of tasks that can be executed on this workflow. @@ -47,7 +47,7 @@ type WorkflowWorkflowDefinition struct { // The user identifier who last updated the workflow definition. ModUser *string `json:"ModUser,omitempty"` // The name for this workflow. You can have multiple versions of the workflow with the same name. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[a-zA-Z0-9_.-]{0,63}$"` OutputDefinition []WorkflowBaseDataType `json:"OutputDefinition,omitempty"` // The output mappings for the workflow. The schema for outputs of a workflow is defined using OutputDefinition. The outputs for workflows that we want to export out at the end of the workflow can be mapped from task outputs, workflow inputs, or workflow variables. Any task output, workflow input, or workflow variable can be mapped to a workflow output as long as the types are compatible. The format to specify the mapping is '${ 'workflow | '. 'output |input | variable'.[.]}'. First, either the keyword 'workflow' or the name of the task in the workflow must be given. If a task name is used, then it must be followed by the keyword 'output', if the keyword workflow was used, then it must be followed by the keyword 'input' or 'variable'. Following this '' must be the name of either input, output, or variable that must be mapped as workflow output. The last part of the mapping can be an optional to extract specific fields on the data. OutputParameters interface{} `json:"OutputParameters,omitempty"` @@ -1111,7 +1111,7 @@ func (o *WorkflowWorkflowDefinition) UnmarshalJSON(data []byte) (err error) { InputDefinition []WorkflowBaseDataType `json:"InputDefinition,omitempty"` InputParameterSet []WorkflowParameterSet `json:"InputParameterSet,omitempty"` // A user friendly short name to identify the workflow. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), forward slash (/), or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_.\\/:-]{0,91}$"` // License entitlement required to run this workflow. It is calculated based on the highest license requirement of all its tasks. * `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. * `IKS-Advantage` - IKS-Advantage as a License type. * `INC-Premier-1GFixed` - Premier 1G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-10GFixed` - Premier 10G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-100GFixed` - Premier 100G Fixed license tier for Intersight Nexus Cloud. * `INC-Premier-Mod4Slot` - Premier Modular 4 slot license tier for Intersight Nexus Cloud. * `INC-Premier-Mod8Slot` - Premier Modular 8 slot license tier for Intersight Nexus Cloud. * `INC-Premier-D2OpsFixed` - Premier D2Ops fixed license tier for Intersight Nexus Cloud. * `INC-Premier-D2OpsMod` - Premier D2Ops modular license tier for Intersight Nexus Cloud. * `INC-Premier-CentralizedMod8Slot` - Premier modular license tier of switch type CentralizedMod8Slot for Intersight Nexus Cloud. * `INC-Premier-DistributedMod8Slot` - Premier modular license tier of switch type DistributedMod8Slot for Intersight Nexus Cloud. * `IntersightTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode Intersight tiers. * `IWOTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode IKS tiers. * `IKSTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode IWO tiers. * `INCTrial` - Virtual dummy license type to indicate trial. Used for UI display of trial mode Nexus tiers. LicenseEntitlement *string `json:"LicenseEntitlement,omitempty"` // The maximum number of tasks that can be executed on this workflow. @@ -1121,7 +1121,7 @@ func (o *WorkflowWorkflowDefinition) UnmarshalJSON(data []byte) (err error) { // The user identifier who last updated the workflow definition. ModUser *string `json:"ModUser,omitempty"` // The name for this workflow. You can have multiple versions of the workflow with the same name. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[a-zA-Z0-9_.-]{0,63}$"` OutputDefinition []WorkflowBaseDataType `json:"OutputDefinition,omitempty"` // The output mappings for the workflow. The schema for outputs of a workflow is defined using OutputDefinition. The outputs for workflows that we want to export out at the end of the workflow can be mapped from task outputs, workflow inputs, or workflow variables. Any task output, workflow input, or workflow variable can be mapped to a workflow output as long as the types are compatible. The format to specify the mapping is '${ 'workflow | '. 'output |input | variable'.[.]}'. First, either the keyword 'workflow' or the name of the task in the workflow must be given. If a task name is used, then it must be followed by the keyword 'output', if the keyword workflow was used, then it must be followed by the keyword 'input' or 'variable'. Following this '' must be the name of either input, output, or variable that must be mapped as workflow output. The last part of the mapping can be an optional to extract specific fields on the data. OutputParameters interface{} `json:"OutputParameters,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_definition_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_definition_list.go index 0cb8c68e56..64ad6ea49b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_definition_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_definition_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_definition_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_definition_relationship.go index d7a63efb61..9d6b5dcc6d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_definition_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_definition_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_definition_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_definition_response.go index 92aad81a4d..7d09279f69 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_definition_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_definition_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_engine_properties.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_engine_properties.go index e0982ca41e..f1af3e60a9 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_engine_properties.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_engine_properties.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_info.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_info.go index c20624b922..7b001cfa0b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_info.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_info.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -49,7 +49,7 @@ type WorkflowWorkflowInfo struct { LastAction *string `json:"LastAction,omitempty"` Message []WorkflowMessage `json:"Message,omitempty"` // A name of the workflow execution instance. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[^:]{1,92}$"` // All the generated outputs for the workflow. The schema for the outputs are defined in the OutputDefinition section of the WorkflowDefinition. The OutputDefinition will provide a list of output fields that could be generated after workflow execution is completed and the associated datatype of the outputs. For more information please refer to OutputDefinition property in WorkflowDefinition resource. The output for the workflow is generated as a collection of key-value pairs, where key is the name of the output and value is any valid JSON data which conforms to the datatype of output as specified in the OutputDefinition. During workflow definition design, if a workflow is included as a sub-workflow inside a parent workflow then the outputs generated by the sub-workflow can be used in the workflow design. For example, if workflow was included into parent workflow as 'SubWorkflowSample1', then that output can be referred as 'SubWorkflowSample1.output.'. In the output is referred directly in a mapping it will be in the format '${SubWorkflowSample1.output.}' or inside a template mapping will be in the format '{{SubWorkflowSample1.output.}}'. Output interface{} `json:"Output,omitempty"` // Denotes the reason workflow is in paused status. * `None` - Pause reason is none, which indicates there is no reason for the pause state. * `TaskWithWarning` - Pause reason indicates the workflow is in this state due to a task that has a status as completed with warnings. * `SystemMaintenance` - Pause reason indicates the workflow is in this state based on actions of system admin for maintenance. @@ -1658,7 +1658,7 @@ func (o *WorkflowWorkflowInfo) UnmarshalJSON(data []byte) (err error) { LastAction *string `json:"LastAction,omitempty"` Message []WorkflowMessage `json:"Message,omitempty"` // A name of the workflow execution instance. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[^:]{1,92}$"` // All the generated outputs for the workflow. The schema for the outputs are defined in the OutputDefinition section of the WorkflowDefinition. The OutputDefinition will provide a list of output fields that could be generated after workflow execution is completed and the associated datatype of the outputs. For more information please refer to OutputDefinition property in WorkflowDefinition resource. The output for the workflow is generated as a collection of key-value pairs, where key is the name of the output and value is any valid JSON data which conforms to the datatype of output as specified in the OutputDefinition. During workflow definition design, if a workflow is included as a sub-workflow inside a parent workflow then the outputs generated by the sub-workflow can be used in the workflow design. For example, if workflow was included into parent workflow as 'SubWorkflowSample1', then that output can be referred as 'SubWorkflowSample1.output.'. In the output is referred directly in a mapping it will be in the format '${SubWorkflowSample1.output.}' or inside a template mapping will be in the format '{{SubWorkflowSample1.output.}}'. Output interface{} `json:"Output,omitempty"` // Denotes the reason workflow is in paused status. * `None` - Pause reason is none, which indicates there is no reason for the pause state. * `TaskWithWarning` - Pause reason indicates the workflow is in this state due to a task that has a status as completed with warnings. * `SystemMaintenance` - Pause reason indicates the workflow is in this state based on actions of system admin for maintenance. diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_info_auto_restart_properties.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_info_auto_restart_properties.go index ec97c40a51..d396e80bfc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_info_auto_restart_properties.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_info_auto_restart_properties.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_info_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_info_list.go index ef30a8aaf4..cb3eacc6fc 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_info_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_info_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_info_properties.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_info_properties.go index 71ddb817c6..29e51ee961 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_info_properties.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_info_properties.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_info_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_info_relationship.go index bb799b015b..f064f272c5 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_info_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_info_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_info_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_info_response.go index 4b099ae6bd..fea514fd94 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_info_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_info_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_metadata.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_metadata.go index 842835a02a..6b90bd528d 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_metadata.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_metadata.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -31,9 +31,9 @@ type WorkflowWorkflowMetadata struct { // The description for this workflow. Description *string `json:"Description,omitempty"` // A user friendly short name to identify the workflow metadata. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ) or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_.:-]{0,91}$"` // The name for this workflow metadata. You can have multiple versions of the workflow with the same name. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[a-zA-Z0-9_.-]{0,63}$"` // An array of relationships to iamRole resources. AssociatedRoles []IamRoleRelationship `json:"AssociatedRoles,omitempty"` Catalog NullableWorkflowCatalogRelationship `json:"Catalog,omitempty"` @@ -394,9 +394,9 @@ func (o *WorkflowWorkflowMetadata) UnmarshalJSON(data []byte) (err error) { // The description for this workflow. Description *string `json:"Description,omitempty"` // A user friendly short name to identify the workflow metadata. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ) or an underscore (_). - Label *string `json:"Label,omitempty"` + Label *string `json:"Label,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_.:-]{0,91}$"` // The name for this workflow metadata. You can have multiple versions of the workflow with the same name. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[a-zA-Z0-9_.-]{0,63}$"` // An array of relationships to iamRole resources. AssociatedRoles []IamRoleRelationship `json:"AssociatedRoles,omitempty"` Catalog NullableWorkflowCatalogRelationship `json:"Catalog,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_metadata_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_metadata_list.go index 2b4ec2a198..a08f286bac 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_metadata_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_metadata_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_metadata_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_metadata_relationship.go index 776e880268..5699a18dbb 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_metadata_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_metadata_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_metadata_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_metadata_response.go index a2b3f2d436..8798e9bdc1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_metadata_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_metadata_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_properties.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_properties.go index 4c598ec883..30619849dd 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_properties.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_properties.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_task.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_task.go index 35857431dc..31d077e5be 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_task.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_workflow_task.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -33,7 +33,7 @@ type WorkflowWorkflowTask struct { // A user defined label identifier of the workflow task used for UI display. Label *string `json:"Label,omitempty"` // The name of the task within the workflow and it must be unique among all WorkflowTasks within a workflow definition. This name serves as the internal unique identifier for the task and is used to pick input and output parameters to feed into other tasks. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_:-]{1,64}$"` AdditionalProperties map[string]interface{} } @@ -288,7 +288,7 @@ func (o *WorkflowWorkflowTask) UnmarshalJSON(data []byte) (err error) { // A user defined label identifier of the workflow task used for UI display. Label *string `json:"Label,omitempty"` // The name of the task within the workflow and it must be unique among all WorkflowTasks within a workflow definition. This name serves as the internal unique identifier for the task and is used to pick input and output parameters to feed into other tasks. - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9_:-]{1,64}$"` } varWorkflowWorkflowTaskWithoutEmbeddedStruct := WorkflowWorkflowTaskWithoutEmbeddedStruct{} diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_xml_api.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_xml_api.go index 8e009d797f..0c23b21dba 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_xml_api.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workflow_xml_api.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workspace_folder.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workspace_folder.go index f179297327..db5b0c229f 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workspace_folder.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workspace_folder.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -35,7 +35,7 @@ type WorkspaceFolder struct { // The UserID or email who last modified this folder. ModUser *string `json:"ModUser,omitempty"` // The name for this folder. You can have multiple versions of the folder with the same name. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_.\\/:-]{0,91}$"` // An array of relationships to moBaseMo resources. Assets []MoBaseMoRelationship `json:"Assets,omitempty"` Catalog NullableWorkflowCatalogRelationship `json:"Catalog,omitempty"` @@ -524,7 +524,7 @@ func (o *WorkspaceFolder) UnmarshalJSON(data []byte) (err error) { // The UserID or email who last modified this folder. ModUser *string `json:"ModUser,omitempty"` // The name for this folder. You can have multiple versions of the folder with the same name. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.) or an underscore (_). - Name *string `json:"Name,omitempty"` + Name *string `json:"Name,omitempty" validate:"regexp=^[a-zA-Z0-9]{1}[\\\\sa-zA-Z0-9_.\\/:-]{0,91}$"` // An array of relationships to moBaseMo resources. Assets []MoBaseMoRelationship `json:"Assets,omitempty"` Catalog NullableWorkflowCatalogRelationship `json:"Catalog,omitempty"` diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workspace_folder_list.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workspace_folder_list.go index 7a8bd9641a..094962da0b 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workspace_folder_list.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workspace_folder_list.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workspace_folder_relationship.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workspace_folder_relationship.go index c6598c121f..18e0f58d51 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workspace_folder_relationship.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workspace_folder_relationship.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workspace_folder_response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workspace_folder_response.go index 95e9cd2da0..270242e0b1 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workspace_folder_response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_workspace_folder_response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_x509_certificate.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_x509_certificate.go index ffeeb71b16..1171e078cf 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_x509_certificate.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_x509_certificate.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/response.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/response.go index c35a710942..d97aaef7af 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/response.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/response.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/signing.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/signing.go index 42024e542d..1f10fcfc46 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/signing.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/signing.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/utils.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/utils.go index 5aa8f9f2a1..76610094a6 100644 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/utils.go +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/utils.go @@ -3,7 +3,7 @@ Cisco Intersight Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. -API version: 1.0.11-17956 +API version: 1.0.11-18012 Contact: intersight@cisco.com */ @@ -12,7 +12,9 @@ Contact: intersight@cisco.com package intersight import ( + "bytes" "encoding/json" + "fmt" "reflect" "time" ) @@ -346,3 +348,15 @@ func IsNil(i interface{}) bool { type MappedNullable interface { ToMap() (map[string]interface{}, error) } + +// A wrapper for strict JSON decoding +func newStrictDecoder(data []byte) *json.Decoder { + dec := json.NewDecoder(bytes.NewBuffer(data)) + dec.DisallowUnknownFields() + return dec +} + +// Prevent trying to import "fmt" +func reportError(format string, a ...interface{}) error { + return fmt.Errorf(format, a...) +} diff --git a/website/docs/d/network_element_summary.html.markdown b/website/docs/d/network_element_summary.html.markdown index 9a3df2465a..71d8287fce 100644 --- a/website/docs/d/network_element_summary.html.markdown +++ b/website/docs/d/network_element_summary.html.markdown @@ -82,6 +82,7 @@ The following arguments can be used to get data of already created objects in In * `system_up_time`:(string) System up time of the switch. * `thermal`:(string) The Thermal status of the fabric interconnect.* `unknown` - The default state of the sensor (in case no data is received).* `ok` - State of the sensor indicating the sensor's temperature range is okay.* `upper-non-recoverable` - State of the sensor indicating that the temperature is extremely high above normal range.* `upper-critical` - State of the sensor indicating that the temperature is above normal range.* `upper-non-critical` - State of the sensor indicating that the temperature is a little above the normal range.* `lower-non-critical` - State of the sensor indicating that the temperature is a little below the normal range.* `lower-critical` - State of the sensor indicating that the temperature is below normal range.* `lower-non-recoverable` - State of the sensor indicating that the temperature is extremely below normal range. * `total_memory`:(int) Total available memory on this switch platform. +* `user_label`:(string) The user defined label assigned to the server. * `vendor`:(string) This field identifies the vendor of the given component. * `nr_version`:(string) Firmware version of the switch. diff --git a/website/docs/r/workflow_custom_data_type_definition.html.markdown b/website/docs/r/workflow_custom_data_type_definition.html.markdown index ce752bff5b..0eef155124 100644 --- a/website/docs/r/workflow_custom_data_type_definition.html.markdown +++ b/website/docs/r/workflow_custom_data_type_definition.html.markdown @@ -218,9 +218,9 @@ This complex property has following sub-properties: This complex property has following sub-properties: + `enum_list`:(Array) This complex property has following sub-properties: - + `label`:(string) 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 have an alphanumeric character. + + `label`:(string) 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 (/), round parenthesis ( () ), or an underscore (_) and must have an alphanumeric character. + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. - + `value`:(string) 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 (_). + + `value`:(string) 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 ( ), round parenthesis ( () ), forward slash (/), or an underscore (_). + `max`:(float) Allowed maximum value of the parameter if parameter is integer/float or maximum length of the parameter if the parameter is string. When max and min are set to 0, then the limits are not checked. If parameter is integer/float, then maximum number supported is 1.797693134862315708145274237317043567981e+308 or (2**1023 * (2**53 - 1) / 2**52). When a number bigger than this is given as Maximum value, the constraints will not be enforced. + `min`:(float) Allowed minimum value of the parameter if parameter is integer/float or minimum length of the parameter if the parameter is string. When max and min are set to 0, then the limits are not checked. If parameter is integer/float, then minimum number supported is 4.940656458412465441765687928682213723651e-324 or (1 / 2 ** (1023 - 1 + 52)). When a number smaller than this is given as minimum value, the constraints will not be enforced. + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. @@ -260,6 +260,8 @@ This complex property has following sub-properties: + `display_attributes`: (Array of schema.TypeString) - + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. + + `platform_type`: + (Array of schema.TypeString) - + `selector`:(string) Field to hold an Intersight API along with an optional filter to narrow down the search options for target device. + `selector_property`:(HashMap) - Selector properties to define HTTP method and 'body' in case of upsert operation. This complex property has following sub-properties: diff --git a/website/docs/r/workflow_service_item_action_definition.html.markdown b/website/docs/r/workflow_service_item_action_definition.html.markdown index 2a1e94d515..486899eb87 100644 --- a/website/docs/r/workflow_service_item_action_definition.html.markdown +++ b/website/docs/r/workflow_service_item_action_definition.html.markdown @@ -276,9 +276,9 @@ This complex property has following sub-properties: This complex property has following sub-properties: + `enum_list`:(Array) This complex property has following sub-properties: - + `label`:(string) 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 have an alphanumeric character. + + `label`:(string) 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 (/), round parenthesis ( () ), or an underscore (_) and must have an alphanumeric character. + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. - + `value`:(string) 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 (_). + + `value`:(string) 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 ( ), round parenthesis ( () ), forward slash (/), or an underscore (_). + `max`:(float) Allowed maximum value of the parameter if parameter is integer/float or maximum length of the parameter if the parameter is string. When max and min are set to 0, then the limits are not checked. If parameter is integer/float, then maximum number supported is 1.797693134862315708145274237317043567981e+308 or (2**1023 * (2**53 - 1) / 2**52). When a number bigger than this is given as Maximum value, the constraints will not be enforced. + `min`:(float) Allowed minimum value of the parameter if parameter is integer/float or minimum length of the parameter if the parameter is string. When max and min are set to 0, then the limits are not checked. If parameter is integer/float, then minimum number supported is 4.940656458412465441765687928682213723651e-324 or (1 / 2 ** (1023 - 1 + 52)). When a number smaller than this is given as minimum value, the constraints will not be enforced. + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. @@ -318,6 +318,8 @@ This complex property has following sub-properties: + `display_attributes`: (Array of schema.TypeString) - + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. + + `platform_type`: + (Array of schema.TypeString) - + `selector`:(string) Field to hold an Intersight API along with an optional filter to narrow down the search options for target device. + `selector_property`:(HashMap) - Selector properties to define HTTP method and 'body' in case of upsert operation. This complex property has following sub-properties: diff --git a/website/docs/r/workflow_service_item_definition.html.markdown b/website/docs/r/workflow_service_item_definition.html.markdown index 3e7b0fe827..642b80a2ea 100644 --- a/website/docs/r/workflow_service_item_definition.html.markdown +++ b/website/docs/r/workflow_service_item_definition.html.markdown @@ -195,9 +195,9 @@ This complex property has following sub-properties: This complex property has following sub-properties: + `enum_list`:(Array) This complex property has following sub-properties: - + `label`:(string) 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 have an alphanumeric character. + + `label`:(string) 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 (/), round parenthesis ( () ), or an underscore (_) and must have an alphanumeric character. + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. - + `value`:(string) 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 (_). + + `value`:(string) 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 ( ), round parenthesis ( () ), forward slash (/), or an underscore (_). + `max`:(float) Allowed maximum value of the parameter if parameter is integer/float or maximum length of the parameter if the parameter is string. When max and min are set to 0, then the limits are not checked. If parameter is integer/float, then maximum number supported is 1.797693134862315708145274237317043567981e+308 or (2**1023 * (2**53 - 1) / 2**52). When a number bigger than this is given as Maximum value, the constraints will not be enforced. + `min`:(float) Allowed minimum value of the parameter if parameter is integer/float or minimum length of the parameter if the parameter is string. When max and min are set to 0, then the limits are not checked. If parameter is integer/float, then minimum number supported is 4.940656458412465441765687928682213723651e-324 or (1 / 2 ** (1023 - 1 + 52)). When a number smaller than this is given as minimum value, the constraints will not be enforced. + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. @@ -237,6 +237,8 @@ This complex property has following sub-properties: + `display_attributes`: (Array of schema.TypeString) - + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. + + `platform_type`: + (Array of schema.TypeString) - + `selector`:(string) Field to hold an Intersight API along with an optional filter to narrow down the search options for target device. + `selector_property`:(HashMap) - Selector properties to define HTTP method and 'body' in case of upsert operation. This complex property has following sub-properties: diff --git a/website/docs/r/workflow_template_evaluation.html.markdown b/website/docs/r/workflow_template_evaluation.html.markdown index 274fc12d1c..501ca4991f 100644 --- a/website/docs/r/workflow_template_evaluation.html.markdown +++ b/website/docs/r/workflow_template_evaluation.html.markdown @@ -169,9 +169,9 @@ This complex property has following sub-properties: This complex property has following sub-properties: + `enum_list`:(Array) This complex property has following sub-properties: - + `label`:(string) 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 have an alphanumeric character. + + `label`:(string) 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 (/), round parenthesis ( () ), or an underscore (_) and must have an alphanumeric character. + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. - + `value`:(string) 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 (_). + + `value`:(string) 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 ( ), round parenthesis ( () ), forward slash (/), or an underscore (_). + `max`:(float) Allowed maximum value of the parameter if parameter is integer/float or maximum length of the parameter if the parameter is string. When max and min are set to 0, then the limits are not checked. If parameter is integer/float, then maximum number supported is 1.797693134862315708145274237317043567981e+308 or (2**1023 * (2**53 - 1) / 2**52). When a number bigger than this is given as Maximum value, the constraints will not be enforced. + `min`:(float) Allowed minimum value of the parameter if parameter is integer/float or minimum length of the parameter if the parameter is string. When max and min are set to 0, then the limits are not checked. If parameter is integer/float, then minimum number supported is 4.940656458412465441765687928682213723651e-324 or (1 / 2 ** (1023 - 1 + 52)). When a number smaller than this is given as minimum value, the constraints will not be enforced. + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. @@ -211,6 +211,8 @@ This complex property has following sub-properties: + `display_attributes`: (Array of schema.TypeString) - + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. + + `platform_type`: + (Array of schema.TypeString) - + `selector`:(string) Field to hold an Intersight API along with an optional filter to narrow down the search options for target device. + `selector_property`:(HashMap) - Selector properties to define HTTP method and 'body' in case of upsert operation. This complex property has following sub-properties: diff --git a/website/docs/r/workflow_template_parser.html.markdown b/website/docs/r/workflow_template_parser.html.markdown index 3db43b4434..f46250a341 100644 --- a/website/docs/r/workflow_template_parser.html.markdown +++ b/website/docs/r/workflow_template_parser.html.markdown @@ -57,9 +57,9 @@ This complex property has following sub-properties: This complex property has following sub-properties: + `enum_list`:(Array) This complex property has following sub-properties: - + `label`:(string) 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 have an alphanumeric character. + + `label`:(string) 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 (/), round parenthesis ( () ), or an underscore (_) and must have an alphanumeric character. + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. - + `value`:(string) 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 (_). + + `value`:(string) 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 ( ), round parenthesis ( () ), forward slash (/), or an underscore (_). + `max`:(float) Allowed maximum value of the parameter if parameter is integer/float or maximum length of the parameter if the parameter is string. When max and min are set to 0, then the limits are not checked. If parameter is integer/float, then maximum number supported is 1.797693134862315708145274237317043567981e+308 or (2**1023 * (2**53 - 1) / 2**52). When a number bigger than this is given as Maximum value, the constraints will not be enforced. + `min`:(float) Allowed minimum value of the parameter if parameter is integer/float or minimum length of the parameter if the parameter is string. When max and min are set to 0, then the limits are not checked. If parameter is integer/float, then minimum number supported is 4.940656458412465441765687928682213723651e-324 or (1 / 2 ** (1023 - 1 + 52)). When a number smaller than this is given as minimum value, the constraints will not be enforced. + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. diff --git a/website/docs/r/workflow_workflow_definition.html.markdown b/website/docs/r/workflow_workflow_definition.html.markdown index fec8aba03e..a54ae07ffd 100644 --- a/website/docs/r/workflow_workflow_definition.html.markdown +++ b/website/docs/r/workflow_workflow_definition.html.markdown @@ -359,9 +359,9 @@ This complex property has following sub-properties: This complex property has following sub-properties: + `enum_list`:(Array) This complex property has following sub-properties: - + `label`:(string) 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 have an alphanumeric character. + + `label`:(string) 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 (/), round parenthesis ( () ), or an underscore (_) and must have an alphanumeric character. + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. - + `value`:(string) 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 (_). + + `value`:(string) 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 ( ), round parenthesis ( () ), forward slash (/), or an underscore (_). + `max`:(float) Allowed maximum value of the parameter if parameter is integer/float or maximum length of the parameter if the parameter is string. When max and min are set to 0, then the limits are not checked. If parameter is integer/float, then maximum number supported is 1.797693134862315708145274237317043567981e+308 or (2**1023 * (2**53 - 1) / 2**52). When a number bigger than this is given as Maximum value, the constraints will not be enforced. + `min`:(float) Allowed minimum value of the parameter if parameter is integer/float or minimum length of the parameter if the parameter is string. When max and min are set to 0, then the limits are not checked. If parameter is integer/float, then minimum number supported is 4.940656458412465441765687928682213723651e-324 or (1 / 2 ** (1023 - 1 + 52)). When a number smaller than this is given as minimum value, the constraints will not be enforced. + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. @@ -401,6 +401,8 @@ This complex property has following sub-properties: + `display_attributes`: (Array of schema.TypeString) - + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. + + `platform_type`: + (Array of schema.TypeString) - + `selector`:(string) Field to hold an Intersight API along with an optional filter to narrow down the search options for target device. + `selector_property`:(HashMap) - Selector properties to define HTTP method and 'body' in case of upsert operation. This complex property has following sub-properties: @@ -479,9 +481,9 @@ This complex property has following sub-properties: This complex property has following sub-properties: + `enum_list`:(Array) This complex property has following sub-properties: - + `label`:(string) 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 have an alphanumeric character. + + `label`:(string) 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 (/), round parenthesis ( () ), or an underscore (_) and must have an alphanumeric character. + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. - + `value`:(string) 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 (_). + + `value`:(string) 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 ( ), round parenthesis ( () ), forward slash (/), or an underscore (_). + `max`:(float) Allowed maximum value of the parameter if parameter is integer/float or maximum length of the parameter if the parameter is string. When max and min are set to 0, then the limits are not checked. If parameter is integer/float, then maximum number supported is 1.797693134862315708145274237317043567981e+308 or (2**1023 * (2**53 - 1) / 2**52). When a number bigger than this is given as Maximum value, the constraints will not be enforced. + `min`:(float) Allowed minimum value of the parameter if parameter is integer/float or minimum length of the parameter if the parameter is string. When max and min are set to 0, then the limits are not checked. If parameter is integer/float, then minimum number supported is 4.940656458412465441765687928682213723651e-324 or (1 / 2 ** (1023 - 1 + 52)). When a number smaller than this is given as minimum value, the constraints will not be enforced. + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. @@ -521,6 +523,8 @@ This complex property has following sub-properties: + `display_attributes`: (Array of schema.TypeString) - + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. + + `platform_type`: + (Array of schema.TypeString) - + `selector`:(string) Field to hold an Intersight API along with an optional filter to narrow down the search options for target device. + `selector_property`:(HashMap) - Selector properties to define HTTP method and 'body' in case of upsert operation. This complex property has following sub-properties: @@ -599,9 +603,9 @@ This complex property has following sub-properties: This complex property has following sub-properties: + `enum_list`:(Array) This complex property has following sub-properties: - + `label`:(string) 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 have an alphanumeric character. + + `label`:(string) 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 (/), round parenthesis ( () ), or an underscore (_) and must have an alphanumeric character. + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. - + `value`:(string) 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 (_). + + `value`:(string) 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 ( ), round parenthesis ( () ), forward slash (/), or an underscore (_). + `max`:(float) Allowed maximum value of the parameter if parameter is integer/float or maximum length of the parameter if the parameter is string. When max and min are set to 0, then the limits are not checked. If parameter is integer/float, then maximum number supported is 1.797693134862315708145274237317043567981e+308 or (2**1023 * (2**53 - 1) / 2**52). When a number bigger than this is given as Maximum value, the constraints will not be enforced. + `min`:(float) Allowed minimum value of the parameter if parameter is integer/float or minimum length of the parameter if the parameter is string. When max and min are set to 0, then the limits are not checked. If parameter is integer/float, then minimum number supported is 4.940656458412465441765687928682213723651e-324 or (1 / 2 ** (1023 - 1 + 52)). When a number smaller than this is given as minimum value, the constraints will not be enforced. + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. @@ -641,6 +645,8 @@ This complex property has following sub-properties: + `display_attributes`: (Array of schema.TypeString) - + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. + + `platform_type`: + (Array of schema.TypeString) - + `selector`:(string) Field to hold an Intersight API along with an optional filter to narrow down the search options for target device. + `selector_property`:(HashMap) - Selector properties to define HTTP method and 'body' in case of upsert operation. This complex property has following sub-properties: